Author: dkulp
Date: Thu Dec 18 15:03:43 2008
New Revision: 727850

URL: http://svn.apache.org/viewvc?rev=727850&view=rev
Log:
Use non-deprecated, properly spell methods in new WSS4J

Modified:
    
cxf/sandbox/interopfest/wssec11/src/main/java/interop/server/KeystorePasswordCallback.java
    
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/KeystorePasswordCallback.java
    
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/UTPasswordCallback.java
    
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/server/KeystorePasswordCallback.java

Modified: 
cxf/sandbox/interopfest/wssec11/src/main/java/interop/server/KeystorePasswordCallback.java
URL: 
http://svn.apache.org/viewvc/cxf/sandbox/interopfest/wssec11/src/main/java/interop/server/KeystorePasswordCallback.java?rev=727850&r1=727849&r2=727850&view=diff
==============================================================================
--- 
cxf/sandbox/interopfest/wssec11/src/main/java/interop/server/KeystorePasswordCallback.java
 (original)
+++ 
cxf/sandbox/interopfest/wssec11/src/main/java/interop/server/KeystorePasswordCallback.java
 Thu Dec 18 15:03:43 2008
@@ -37,7 +37,7 @@
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pc = (WSPasswordCallback)callbacks[i];
 
-            String pass = passwords.get(pc.getIdentifer());
+            String pass = passwords.get(pc.getIdentifier());
             if (pass != null) {
                 pc.setPassword(pass);
                 return;

Modified: 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/KeystorePasswordCallback.java
URL: 
http://svn.apache.org/viewvc/cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/KeystorePasswordCallback.java?rev=727850&r1=727849&r2=727850&view=diff
==============================================================================
--- 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/KeystorePasswordCallback.java
 (original)
+++ 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/KeystorePasswordCallback.java
 Thu Dec 18 15:03:43 2008
@@ -37,7 +37,7 @@
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pc = (WSPasswordCallback)callbacks[i];
 
-            String pass = passwords.get(pc.getIdentifer());
+            String pass = passwords.get(pc.getIdentifier());
             if (pass != null) {
                 pc.setPassword(pass);
                 return;

Modified: 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/UTPasswordCallback.java
URL: 
http://svn.apache.org/viewvc/cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/UTPasswordCallback.java?rev=727850&r1=727849&r2=727850&view=diff
==============================================================================
--- 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/UTPasswordCallback.java
 (original)
+++ 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/client/UTPasswordCallback.java
 Thu Dec 18 15:03:43 2008
@@ -36,7 +36,7 @@
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pc = (WSPasswordCallback)callbacks[i];
 
-            String pass = passwords.get(pc.getIdentifer());
+            String pass = passwords.get(pc.getIdentifier());
             if (pass != null) {
                 pc.setPassword(pass);
                 return;

Modified: 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/server/KeystorePasswordCallback.java
URL: 
http://svn.apache.org/viewvc/cxf/sandbox/interopfest/wstrust13/src/main/java/interop/server/KeystorePasswordCallback.java?rev=727850&r1=727849&r2=727850&view=diff
==============================================================================
--- 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/server/KeystorePasswordCallback.java
 (original)
+++ 
cxf/sandbox/interopfest/wstrust13/src/main/java/interop/server/KeystorePasswordCallback.java
 Thu Dec 18 15:03:43 2008
@@ -37,7 +37,7 @@
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pc = (WSPasswordCallback)callbacks[i];
 
-            String pass = passwords.get(pc.getIdentifer());
+            String pass = passwords.get(pc.getIdentifier());
             if (pass != null) {
                 pc.setPassword(pass);
                 return;


Reply via email to