You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/05/24 19:29:30 UTC

svn commit: r1127161 - in /cxf/branches/2.3.x-fixes: ./ rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java

Author: dkulp
Date: Tue May 24 17:29:29 2011
New Revision: 1127161

URL: http://svn.apache.org/viewvc?rev=1127161&view=rev
Log:
Merged revisions 1103679 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1103679 | coheigea | 2011-05-16 06:37:08 -0400 (Mon, 16 May 2011) | 1 line
  
  Deprecated a misspelled method name.
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.3.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java?rev=1127161&r1=1127160&r2=1127161&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java (original)
+++ cxf/branches/2.3.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/model/SignedEncryptedElements.java Tue May 24 17:29:29 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;