You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2011/05/16 12:37:09 UTC

svn commit: r1103679 - /cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java

Author: coheigea
Date: Mon May 16 10:37:08 2011
New Revision: 1103679

URL: http://svn.apache.org/viewvc?rev=1103679&view=rev
Log:
Deprecated a misspelled method name.

Modified:
    cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java

Modified: cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java?rev=1103679&r1=1103678&r2=1103679&view=diff
==============================================================================
--- cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java (original)
+++ cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java Mon May 16 10:37:08 2011
@@ -78,9 +78,17 @@ public class SignedEncryptedElements ext
     /**
      * @return Returns the signedElements.
      */
+    @Deprecated
     public boolean isSignedElemets() {
         return signedElements;
     }
+    
+    /**
+     * @return Returns the signedElements.
+     */
+    public boolean isSignedElements() {
+        return signedElements;
+    }
 
     public Map<String, String> getDeclaredNamespaces() {
         return declaredNamespaces;