[java-opensaml COMMIT] in /trunk/opensaml-saml-api/src/main/java/org/opensaml/saml: common/binding/SAMLBindingSupport...

noreply at shibboleth.net noreply at shibboleth.net
Fri Sep 2 20:15:05 EDT 2016


Author: scantor
Date: Fri Sep  2 20:15:05 2016
New Revision: 4480

URL: http://svn.shibboleth.net/view/java-opensaml?rev=4480&view=rev
Log:
Checkstyle.

Modified:
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/binding/SAMLBindingSupport.java
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthorizationDecisionStatement.java
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Conditions.java
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Subject.java
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/SubjectQuery.java

Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/binding/SAMLBindingSupport.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/binding/SAMLBindingSupport.java?rev=4480&r1=4479&r2=4480&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/binding/SAMLBindingSupport.java	(original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/binding/SAMLBindingSupport.java	Fri Sep  2 20:15:05 2016
@@ -34,7 +34,6 @@
 import org.opensaml.saml.common.messaging.context.SAMLEndpointContext;
 import org.opensaml.saml.common.messaging.context.SAMLPeerEntityContext;
 import org.opensaml.saml.saml2.metadata.Endpoint;
-import org.opensaml.saml.saml2.metadata.IndexedEndpoint;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -306,7 +305,7 @@
     
     /**
      * Convert a 2-byte artifact endpoint index byte[] as typically used by SAML 2 artifact types to an integer,
-     * appropriate for use with {@link IndexedEndpoint} impls.
+     * appropriate for use with {@link org.opensaml.saml.saml2.metadata.IndexedEndpoint} impls.
      * 
      * <p>
      * The max input value supported is 0x7FFF (32767), which is the largest possible unsigned 16 bit value.

Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthorizationDecisionStatement.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthorizationDecisionStatement.java?rev=4480&r1=4479&r2=4480&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthorizationDecisionStatement.java	(original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthorizationDecisionStatement.java	Fri Sep  2 20:15:05 2016
@@ -31,43 +31,74 @@
 public interface AuthorizationDecisionStatement extends SAMLObject, SubjectStatement {
 
     /** Element name, no namespace. */
-    public final static String DEFAULT_ELEMENT_LOCAL_NAME = "AuthorizationDecisionStatement";
+    public static final String DEFAULT_ELEMENT_LOCAL_NAME = "AuthorizationDecisionStatement";
     
-    /** Default element name */
-    public final static QName DEFAULT_ELEMENT_NAME = new QName(SAMLConstants.SAML1_NS, DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstants.SAML1_PREFIX);
+    /** Default element name. */
+    public static final QName DEFAULT_ELEMENT_NAME =
+            new QName(SAMLConstants.SAML1_NS, DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstants.SAML1_PREFIX);
     
-    /** Local name of the XSI type */
-    public final static String TYPE_LOCAL_NAME = "AuthorizationDecisionStatementType"; 
+    /** Local name of the XSI type. */
+    public static final String TYPE_LOCAL_NAME = "AuthorizationDecisionStatementType"; 
         
-    /** QName of the XSI type */
-    public final static QName TYPE_NAME = new QName(SAMLConstants.SAML1_NS, TYPE_LOCAL_NAME, SAMLConstants.SAML1_PREFIX);
+    /** QName of the XSI type. */
+    public static final QName TYPE_NAME =
+            new QName(SAMLConstants.SAML1_NS, TYPE_LOCAL_NAME, SAMLConstants.SAML1_PREFIX);
 
-    /** Name for Resource attribute */
-    public final static String RESOURCE_ATTRIB_NAME = "Resource";
+    /** Name for Resource attribute. */
+    public static final String RESOURCE_ATTRIB_NAME = "Resource";
     
-    /** Name for Decision attribute */
-    public final static String DECISION_ATTRIB_NAME = "Decision";
+    /** Name for Decision attribute. */
+    public static final String DECISION_ATTRIB_NAME = "Decision";
     
-    /** Return the contents of the Resource attribute */
+    /**
+     * Get the resource.
+     * 
+     * @return the resource
+     */
     public String getResource();
     
-    /** Set the contents of the Resource attribute */
+    /**
+     * Set the resource.
+     * 
+     * @param resource the resource
+     */
     public void setResource(String resource);
-    
-    /** Return the contents of the Decision attribute */
+
+    /**
+     * Get the decision.
+     * 
+     * @return the decision.
+     */
     public DecisionTypeEnumeration getDecision();
-    
-    /** Set the contents of the Decision attribute */
+
+    /**
+     * Set the decision.
+     * 
+     * @param decision the decision.

[... 182 lines stripped ...]


More information about the commits mailing list