[java-openws COMMIT] in /branches/REL_1/src/test/java/org/opensaml/ws/security/provider: ClientCertAuthRuleTest.java ...
noreply at shibboleth.net
noreply at shibboleth.net
Sun Feb 26 12:25:16 GMT 2012
Author: lajoie
Date: Sun Feb 26 12:25:16 2012
New Revision: 428
URL: http://svn.shibboleth.net/view/java-openws?rev=428&view=rev
Log:
Fix some javadoc errors
Modified:
branches/REL_1/src/test/java/org/opensaml/ws/security/provider/ClientCertAuthRuleTest.java
branches/REL_1/src/test/java/org/opensaml/ws/security/provider/HTTPRuleTest.java
Modified: branches/REL_1/src/test/java/org/opensaml/ws/security/provider/ClientCertAuthRuleTest.java
URL: http://svn.shibboleth.net/view/java-openws/branches/REL_1/src/test/java/org/opensaml/ws/security/provider/ClientCertAuthRuleTest.java?rev=428&r1=427&r2=428&view=diff
==============================================================================
--- branches/REL_1/src/test/java/org/opensaml/ws/security/provider/ClientCertAuthRuleTest.java (original)
+++ branches/REL_1/src/test/java/org/opensaml/ws/security/provider/ClientCertAuthRuleTest.java Sun Feb 26 12:25:16 2012
@@ -252,7 +252,11 @@
messageContext.getInboundMessageTransport().isAuthenticated());
}
- /** {@inheritDoc} */
+ /**
+ * Builds a mock {@link HttpServletRequest}.
+ *
+ * @return the mock request
+ */
protected MockHttpServletRequest buildServletRequest() {
MockHttpServletRequest request = new MockHttpServletRequest();
return request;
Modified: branches/REL_1/src/test/java/org/opensaml/ws/security/provider/HTTPRuleTest.java
URL: http://svn.shibboleth.net/view/java-openws/branches/REL_1/src/test/java/org/opensaml/ws/security/provider/HTTPRuleTest.java?rev=428&r1=427&r2=428&view=diff
==============================================================================
--- branches/REL_1/src/test/java/org/opensaml/ws/security/provider/HTTPRuleTest.java (original)
+++ branches/REL_1/src/test/java/org/opensaml/ws/security/provider/HTTPRuleTest.java Sun Feb 26 12:25:16 2012
@@ -16,6 +16,8 @@
*/
package org.opensaml.ws.security.provider;
+
+import javax.servlet.http.HttpServletRequest;
import org.opensaml.ws.security.BaseSecurityPolicyRuleTestCase;
import org.opensaml.ws.transport.InTransport;
@@ -41,7 +43,11 @@
rule = new HTTPRule(contentType, method, requireSecured);
}
- /** {@inheritDoc} */
+ /**
+ * Builds a mock {@link HttpServletRequest}.
+ *
+ * @return the mock request
+ */
protected MockHttpServletRequest buildServletRequest() {
MockHttpServletRequest request = new MockHttpServletRequest();
request.setContentType(contentType);
More information about the commits
mailing list