[java-opensaml COMMIT] in /trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core: Request.java Status.java

noreply at shibboleth.net noreply at shibboleth.net
Sun Sep 25 14:50:43 EDT 2016


Author: tzeller
Date: Sun Sep 25 14:50:43 2016
New Revision: 4494

URL: http://svn.shibboleth.net/view/java-opensaml?rev=4494&view=rev
Log:
Checkstyle, fix Javadoc

Modified:
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Request.java
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Status.java

Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Request.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Request.java?rev=4494&r1=4493&r2=4494&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Request.java	(original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Request.java	Sun Sep 25 14:50:43 2016
@@ -45,28 +45,60 @@
     /* 
      * A bit odd this, it s a choice so only one of these will return any value
      */
-    
-    /** Get the request Query, SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery. */ 
+
+    /**
+     * Get the request Query, SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.
+     * 
+     * @return request Query, SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery
+     */
     public Query getQuery();
     
-    /** Get the request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery. */ 
+    /**
+     * Get the request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.
+     *
+     * @return request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery
+     */
     public SubjectQuery getSubjectQuery();
     
-    /** Get the query AuthenticationQuery. */ 
+    /**
+     * Get the request AuthenticationQuery.
+     * 
+     * @return request AuthenticationQuery
+     */ 
     public AuthenticationQuery getAuthenticationQuery();
     
-    /** Get the request AttributeQuery. */ 
+    /**
+     * Get the request AttributeQuery.
+     * 
+     * @return request AttributeQuery
+     */
     public AttributeQuery getAttributeQuery();
     
-    /** Get the request AuthorizationDecisionQuery. */ 
+    /**
+     * Get the request AuthorizationDecisionQuery.
+     * 
+     * @return request AuthorizationDecisionQuery
+     */ 
     public AuthorizationDecisionQuery getAuthorizationDecisionQuery();
     
-    /** Set the query (Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisioonQuery. */ 
+    /**
+     * Set the request query (Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisioonQuery).
+     * 
+     * @param query Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisioonQuery
+     */ 
     public void setQuery(Query query);
     
-    /** Get the list of AssertionIDReferences. */
+    /**
+     * Get the list of AssertionIDReferences.
+     * 
+     * @return list of AssertionIDReferences
+     */
     public List <AssertionIDReference> getAssertionIDReferences();
     
-    /** Get the list of artifacts. */
+    /**
+     * Get the list of artifacts.
+     * 
+     * @return list of artifacts
+     */
     public List <AssertionArtifact> getAssertionArtifacts();
 }

Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Status.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Status.java?rev=4494&r1=4493&r2=4494&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Status.java	(original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Status.java	Sun Sep 25 14:50:43 2016
@@ -41,22 +41,45 @@
     public static final QName TYPE_NAME =
             new QName(SAMLConstants.SAML10P_NS, TYPE_LOCAL_NAME, SAMLConstants.SAML1P_PREFIX);
 
-    /** Return the object representing the <code>StatusMessage</code> (element). */
+    /**
+     * Get the object representing the <code>StatusMessage</code> (element).
+     * 
+     * @return object representing the <code>StatusMessage</code> (element)
+     */
     public StatusMessage getStatusMessage();
 
-    /** Set the object representing the <code>StatusMessage</code> (element). */
+    /**
+     * Set the object representing the <code>StatusMessage</code> (element).
+     * 
+     * @param statusMessage object representing the <code>StatusMessage</code> (element)
+     */
     public void setStatusMessage(StatusMessage statusMessage);
 
-    /** Return the object representing the <code>StatusCode</code> (element). */
+    /**
+     * Get the object representing the <code>StatusCode</code> (element).
+     * 
+     * @return object representing the <code>StatusCode</code> (element)
+     */
     public StatusCode getStatusCode();
 
-    /** Set the object representing the <code>StatusCode</code> (element). */
+    /**

[... 24 lines stripped ...]


More information about the commits mailing list