[java-opensaml COMMIT] in /trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core: Action.java Advice.jav...
noreply at shibboleth.net
noreply at shibboleth.net
Sun Jun 29 09:59:38 EDT 2014
Author: rdw
Date: Sun Jun 29 09:59:38 2014
New Revision: 3942
URL: http://svn.shibboleth.net/view/java-opensaml?rev=3942&view=rev
Log:
Checkstyle
Modified:
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Action.java
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Advice.java
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Assertion.java
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Attribute.java
Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Action.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Action.java?rev=3942&r1=3941&r2=3942&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Action.java (original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Action.java Sun Jun 29 09:59:38 2014
@@ -18,6 +18,7 @@
/**
*
*/
+
package org.opensaml.saml.saml1.core;
import javax.xml.namespace.QName;
@@ -26,34 +27,40 @@
import org.opensaml.saml.common.xml.SAMLConstants;
/**
- * Interface describing how a SAML1.1 <code> Action </code> element behaves
+ * Interface describing how a SAML1.1 <code> Action </code> element behaves.
*/
public interface Action extends SAMLObject {
/** Default element name, no namespace. */
- public final static String DEFAULT_ELEMENT_LOCAL_NAME = "Action";
-
- /** Default element name */
- public final static 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 = "ActionType";
-
- /** QName of the XSI type */
- public final static QName TYPE_NAME = new QName(SAMLConstants.SAML1_NS, TYPE_LOCAL_NAME, SAMLConstants.SAML1_PREFIX);
+ public static final String DEFAULT_ELEMENT_LOCAL_NAME = "Action";
- /** Name for the Namespace attribute */
- public final static String NAMESPACEATTRIB_NAME = "Namespace";
-
- /** Return the value of Namespace */
+ /** 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 static final String TYPE_LOCAL_NAME = "ActionType";
+
+ /** QName of the XSI type. */
+ public static final QName TYPE_NAME =
+ new QName(SAMLConstants.SAML1_NS, TYPE_LOCAL_NAME, SAMLConstants.SAML1_PREFIX);
+
+ /** Name for the Namespace attribute. */
+ public static final String NAMESPACEATTRIB_NAME = "Namespace";
+
+ /** Return the value of Namespace.
+ * @return the namespace*/
public String getNamespace();
-
- /** Set the value of Namespace */
+
+ /** Set the value of Namespace.
+ * @param namespace what to set */
public void setNamespace(String namespace);
-
- /** Return the contents */
+
+ /** Return the contents.
+ * @return the action contents. */
public String getContents();
-
- /** Set the contents */
+
+ /** Set the contents.
+ * @param contents what to set. */
public void setContents(String contents);
}
Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Advice.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Advice.java?rev=3942&r1=3941&r2=3942&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Advice.java (original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml1/core/Advice.java Sun Jun 29 09:59:38 2014
@@ -31,16 +31,18 @@
public interface Advice extends SAMLObject, ElementExtensibleXMLObject {
/** Element name, no namespace. */
- public final static String DEFAULT_ELEMENT_LOCAL_NAME = "Advice";
-
- /** Default element name */
- public final static 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 = "AdviceType";
-
- /** QName of the XSI type */
- public final static QName TYPE_NAME = new QName(SAMLConstants.SAML1_NS, TYPE_LOCAL_NAME, SAMLConstants.SAML1_PREFIX);
+ public static final String DEFAULT_ELEMENT_LOCAL_NAME = "Advice";
+
+ /** 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 static final String TYPE_LOCAL_NAME = "AdviceType";
+
+ /** QName of the XSI type. */
+ public static final QName TYPE_NAME =
[... 188 lines stripped ...]
More information about the commits
mailing list