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:44:13 UTC

cvs commit: xml-security/src/org/apache/xml/security/signature ObjectContainer.java SignatureProperty.java Reference.java

raul        2005/04/02 10:44:13

  Modified:    src/org/apache/xml/security/signature ObjectContainer.java
                        SignatureProperty.java Reference.java
  Log:
  Fixed eclipse javadocs warning.
  
  Revision  Changes    Path
  1.14      +1 -1      xml-security/src/org/apache/xml/security/signature/ObjectContainer.java
  
  Index: ObjectContainer.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/signature/ObjectContainer.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- ObjectContainer.java	24 Sep 2004 20:54:27 -0000	1.13
  +++ ObjectContainer.java	2 Apr 2005 18:44:13 -0000	1.14
  @@ -134,7 +134,7 @@
       * Adds childe Node
       *
       * @param node childe Node
  -    * @return
  +    * @return the new node in the tree.
       */
      public Node appendChild(Node node) {
   
  
  
  
  1.13      +1 -1      xml-security/src/org/apache/xml/security/signature/SignatureProperty.java
  
  Index: SignatureProperty.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/signature/SignatureProperty.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- SignatureProperty.java	24 Sep 2004 20:54:27 -0000	1.12
  +++ SignatureProperty.java	2 Apr 2005 18:44:13 -0000	1.13
  @@ -121,7 +121,7 @@
       * Method appendChild
       *
       * @param node
  -    * @return
  +    * @return the node in this element.
       */
      public Node appendChild(Node node) {
         return this._constructionElement.appendChild(node);
  
  
  
  1.40      +3 -5      xml-security/src/org/apache/xml/security/signature/Reference.java
  
  Index: Reference.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/signature/Reference.java,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- Reference.java	7 Mar 2005 20:39:33 -0000	1.39
  +++ Reference.java	2 Apr 2005 18:44:13 -0000	1.40
  @@ -126,8 +126,7 @@
       * @param manifest
       * @param transforms {@link Transforms} applied to data
       * @param messageDigestAlgorithm {@link MessageDigestAlgorithm Digest algorithm} which is applied to the data
  -    * $todo$ should we throw XMLSignatureException if MessageDigestAlgoURI is wrong?
  -    * @param cx for speed-up the xpath selections.
  +    * TODO should we throw XMLSignatureException if MessageDigestAlgoURI is wrong?
       * @throws XMLSignatureException
       */
      protected Reference(Document doc, String BaseURI, String ReferenceURI, Manifest manifest, Transforms transforms, String messageDigestAlgorithm)
  @@ -176,7 +175,6 @@
       * @param element <code>Reference</code> element
       * @param BaseURI the URI of the resource where the XML instance was stored
       * @param manifest is the {@link Manifest} of {@link SignedInfo} in which the Reference occurs. We need this because the Manifest has the individual {@link ResourceResolver}s whcih have been set by the user
  -    * @param cx The CachedXPathAPIHolder to use in this reference.
       * @throws XMLSecurityException
       */
      protected Reference(Element element, String BaseURI, Manifest manifest)
  @@ -582,7 +580,7 @@
   
      /**
       * This method only works works after a call to verify.
  -    * @return 
  +    * @return the transformed output(i.e. what is going to be digested).
       */
      public XMLSignatureInput getTransformsOutput() {
         return this._transformsOutput;
  @@ -592,7 +590,7 @@
       * This method returns the {@link XMLSignatureInput} which is referenced by the
       * <CODE>URI</CODE> Attribute.
       * @param os where to write the transformation can be null.
  -    * @return
  +    * @return the element to digest
       *
       * @throws XMLSignatureException
       * @see Manifest#verifyReferences()