[java-xmltooling COMMIT] /branches/REL_1/src/main/java/org/opensaml/xml/signature/RetrievalMethod.java
noreply at shibboleth.net
noreply at shibboleth.net
Fri Jan 25 15:40:35 EST 2013
Author: scantor
Date: Fri Jan 25 15:40:35 2013
New Revision: 787
URL: http://svn.shibboleth.net/view/java-xmltooling?rev=787&view=rev
Log:
Fix a doc comment.
Modified:
branches/REL_1/src/main/java/org/opensaml/xml/signature/RetrievalMethod.java
Modified: branches/REL_1/src/main/java/org/opensaml/xml/signature/RetrievalMethod.java
URL: http://svn.shibboleth.net/view/java-xmltooling/branches/REL_1/src/main/java/org/opensaml/xml/signature/RetrievalMethod.java?rev=787&r1=786&r2=787&view=diff
==============================================================================
--- branches/REL_1/src/main/java/org/opensaml/xml/signature/RetrievalMethod.java (original)
+++ branches/REL_1/src/main/java/org/opensaml/xml/signature/RetrievalMethod.java Fri Jan 25 15:40:35 2013
@@ -27,64 +27,66 @@
*/
public interface RetrievalMethod extends ValidatingXMLObject {
- /** Element local name */
- public final static String DEFAULT_ELEMENT_LOCAL_NAME = "RetrievalMethod";
+ /** Element local name. */
+ public static final String DEFAULT_ELEMENT_LOCAL_NAME = "RetrievalMethod";
- /** Default element name */
- public final static QName DEFAULT_ELEMENT_NAME = new QName(XMLConstants.XMLSIG_NS, DEFAULT_ELEMENT_LOCAL_NAME, XMLConstants.XMLSIG_PREFIX);
+ /** Default element name. */
+ public static final QName DEFAULT_ELEMENT_NAME =
+ new QName(XMLConstants.XMLSIG_NS, DEFAULT_ELEMENT_LOCAL_NAME, XMLConstants.XMLSIG_PREFIX);
- /** Local name of the XSI type */
- public final static String TYPE_LOCAL_NAME = "RetrievalMethodType";
+ /** Local name of the XSI type. */
+ public static final String TYPE_LOCAL_NAME = "RetrievalMethodType";
- /** QName of the XSI type */
- public final static QName TYPE_NAME = new QName(XMLConstants.XMLSIG_NS, TYPE_LOCAL_NAME, XMLConstants.XMLSIG_PREFIX);
+ /** QName of the XSI type. */
+ public static final QName TYPE_NAME =
+ new QName(XMLConstants.XMLSIG_NS, TYPE_LOCAL_NAME, XMLConstants.XMLSIG_PREFIX);
- /** URI attribute name */
+ /** URI attribute name. */
public static final String URI_ATTRIB_NAME = "URI";
- /** Type attribute name */
+ /** Type attribute name. */
public static final String TYPE_ATTRIB_NAME = "Type";
/**
- * Get the URI attribute value
+ * Get the URI attribute value.
*
* @return the URI attribute value
*/
public String getURI();
/**
- * Set the URI attribute value
+ * Set the URI attribute value.
*
* @param newURI the new URI attribute value
*/
public void setURI(String newURI);
/**
- * Set the Type attribute value
+ * Get the Type attribute value.
*
* @return the Type attribute value
*/
public String getType();
/**
- * Set the Type attribute value
+ * Set the Type attribute value.
*
* @param newType the new Type attribute value
*/
public void setType(String newType);
/**
- * Get the Transforms child element
+ * Get the Transforms child element.
*
* @return the Transforms child element
*/
public Transforms getTransforms();
/**
- * Set the Transforms child element
+ * Set the Transforms child element.
*
* @param newTransforms the new Transforms child element
*/
public void setTransforms(Transforms newTransforms);
-}
+}
More information about the commits
mailing list