You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by ra...@apache.org on 2005/04/02 20:39:15 UTC

cvs commit: xml-security/src/org/apache/xml/security/keys/content RetrievalMethod.java MgmtData.java X509Data.java KeyName.java

raul        2005/04/02 10:39:15

  Modified:    src/org/apache/xml/security/exceptions
                        XMLSecurityException.java
               src/org/apache/xml/security/keys/content
                        RetrievalMethod.java MgmtData.java X509Data.java
                        KeyName.java
  Log:
  Fixed eclipse javadocs warning.
  
  Revision  Changes    Path
  1.14      +1 -1      xml-security/src/org/apache/xml/security/exceptions/XMLSecurityException.java
  
  Index: XMLSecurityException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/exceptions/XMLSecurityException.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- XMLSecurityException.java	6 Mar 2005 10:25:46 -0000	1.13
  +++ XMLSecurityException.java	2 Apr 2005 18:39:15 -0000	1.14
  @@ -237,7 +237,7 @@
      /**
       * Method getOriginalException
       *
  -    * @return
  +    * @return the original exception
       */
      public Exception getOriginalException() {
         return originalException;
  
  
  
  1.14      +5 -5      xml-security/src/org/apache/xml/security/keys/content/RetrievalMethod.java
  
  Index: RetrievalMethod.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/keys/content/RetrievalMethod.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- RetrievalMethod.java	24 Sep 2004 20:54:27 -0000	1.13
  +++ RetrievalMethod.java	2 Apr 2005 18:39:15 -0000	1.14
  @@ -97,7 +97,7 @@
      /**
       * Method getURIAttr
       *
  -    * @return
  +    * @return the URI attribute
       */
      public Attr getURIAttr() {
         return this._constructionElement.getAttributeNodeNS(null, Constants._ATT_URI);
  @@ -107,13 +107,13 @@
       * Method getURI
       *
       * 
  -    * @return
  +    * @return URI string
       */
      public String getURI() {
         return this.getURIAttr().getNodeValue();
      }
   
  -   /** @return */
  +   /** @return the type*/
      public String getType() {
         return this._constructionElement.getAttributeNS(null, Constants._ATT_TYPE);
      }
  @@ -123,7 +123,7 @@
       *
       *
       * @throws XMLSecurityException
  -    * @return
  +    * @return the transforamitons
       */
      public Transforms getTransforms() throws XMLSecurityException {
   
  
  
  
  1.10      +2 -2      xml-security/src/org/apache/xml/security/keys/content/MgmtData.java
  
  Index: MgmtData.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/keys/content/MgmtData.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- MgmtData.java	24 Sep 2004 20:54:27 -0000	1.9
  +++ MgmtData.java	2 Apr 2005 18:39:15 -0000	1.10
  @@ -63,7 +63,7 @@
      /**
       * Method getMgmtData
       *
  -    * @return
  +    * @return the managment data
       */
      public String getMgmtData() {
         return this.getTextFromTextChild();
  
  
  
  1.13      +3 -2      xml-security/src/org/apache/xml/security/keys/content/X509Data.java
  
  Index: X509Data.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/keys/content/X509Data.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- X509Data.java	24 Sep 2004 20:54:26 -0000	1.12
  +++ X509Data.java	2 Apr 2005 18:39:15 -0000	1.13
  @@ -472,9 +472,10 @@
       *
       * @param i
       * @return the Unknown Element at i
  -    * $todo$ implement
  +    * TODO implement
       **/
  -   public Element itemUnknownElement(int i) {      
  +   public Element itemUnknownElement(int i) {
  +	  log.debug("itemUnknownElement not implemented:"+i);
         return null;
      }
   
  
  
  
  1.10      +2 -2      xml-security/src/org/apache/xml/security/keys/content/KeyName.java
  
  Index: KeyName.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/keys/content/KeyName.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- KeyName.java	24 Sep 2004 20:54:26 -0000	1.9
  +++ KeyName.java	2 Apr 2005 18:39:15 -0000	1.10
  @@ -62,7 +62,7 @@
      /**
       * Method getKeyName
       *
  -    * @return
  +    * @return key name
       */
      public String getKeyName() {
         return this.getTextFromTextChild();