[java-opensaml COMMIT] in /trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core: Audience.java Authenti...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Feb 23 10:27:56 EST 2015
Author: scantor
Date: Mon Feb 23 10:27:56 2015
New Revision: 4233
URL: http://svn.shibboleth.net/view/java-opensaml?rev=4233&view=rev
Log:
Some javadoc fixes.
Modified:
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Audience.java
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationQuery.java
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationStatement.java
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthorityBinding.java
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Evidence.java
Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Audience.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Audience.java?rev=4233&r1=4232&r2=4233&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Audience.java (original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Audience.java Mon Feb 23 10:27:56 2015
@@ -38,9 +38,18 @@
public static final QName DEFAULT_ELEMENT_NAME =
new QName(SAMLConstants.SAML1_NS, DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstants.SAML1_PREFIX);
- /** Return the URI which makes up the Body. */
+ /**
+ * Return the audience URI.
+ *
+ * @return the audience URI
+ */
public String getUri();
- /** Set the Uri which makes up the body text. */
+ /**
+ * Set the audience URI.
+ *
+ * @param uri the audience URI
+ */
public void setUri(String uri);
+
}
Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationQuery.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationQuery.java?rev=4233&r1=4232&r2=4233&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationQuery.java (original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationQuery.java Mon Feb 23 10:27:56 2015
@@ -46,9 +46,18 @@
/** AuthenticationMethod attribute name. */
public static final String AUTHENTICATIONMETHOD_ATTRIB_NAME = "AuthenticationMethod";
- /** Get AuthenticationMethod attribute .*/
+ /**
+ * Get AuthenticationMethod attribute.
+ *
+ * @return the authentication method
+ */
public String getAuthenticationMethod();
- /** Set AuthenticationMethod attribute. */
+ /**
+ * Set AuthenticationMethod attribute.
+ *
+ * @param authenticationMethod the authentication method
+ */
public void setAuthenticationMethod(String authenticationMethod);
+
}
Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationStatement.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationStatement.java?rev=4233&r1=4232&r2=4233&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationStatement.java (original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/AuthenticationStatement.java Mon Feb 23 10:27:56 2015
@@ -83,25 +83,53 @@
/** URI for unspecified authentication method. */
public static final String UNSPECIFIED_AUTHN_METHOD = "urn:oasis:names:tc:SAML:1.0:am:unspecified";
- /** Return the contents of the AuthenticationMethod attribute. */
+ /**
+ * Return the contents of the AuthenticationMethod attribute.
+ *
+ * @return the authentication method
+ */
public String getAuthenticationMethod();
- /** Set the contents of the AuthenticationMethod attribute. */
+ /**
+ * Set the contents of the AuthenticationMethod attribute.
+ *
+ * @param authenticationMethod the authentication method
+ */
public void setAuthenticationMethod(String authenticationMethod);
- /** Return the contents of the AuthenticationInstant attribute. */
+ /**
+ * Return the contents of the AuthenticationInstant attribute.
+ *
+ * @return the authentication instant
+ */
public DateTime getAuthenticationInstant();
- /** Set the contents of the AuthenticationInstant attribute. */
+ /**
+ * Set the contents of the AuthenticationInstant attribute.
+ *
+ * @param authenticationInstant the authentication instant
+ */
public void setAuthenticationInstant(DateTime authenticationInstant);
- /** Set the (single) SubjectLocality child element. */
+ /**
+ * Get the {@link SubjectLocality}.
+ *
+ * @return the {@link SubjectLocality}
+ */
public SubjectLocality getSubjectLocality();
[... 116 lines stripped ...]
More information about the commits
mailing list