Author: coheigea
Date: Wed Jun 12 10:54:26 2013
New Revision: 1492141
URL: http://svn.apache.org/r1492141
Log:
Convert EncryptedKey Identifier
Modified:
webservices/wss4j/trunk/ws-security-stax/src/main/java/org/apache/wss4j/stax/ConfigurationConverter.java
Modified: webservices/wss4j/trunk/ws-security-stax/src/main/java/org/apache/wss4j/stax/ConfigurationConverter.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/ws-security-stax/src/main/java/org/apache/wss4j/stax/ConfigurationConverter.java?rev=1492141&r1=1492140&r2=1492141&view=diff
==============================================================================
--- webservices/wss4j/trunk/ws-security-stax/src/main/java/org/apache/wss4j/stax/ConfigurationConverter.java
(original)
+++ webservices/wss4j/trunk/ws-security-stax/src/main/java/org/apache/wss4j/stax/ConfigurationConverter.java
Wed Jun 12 10:54:26 2013
@@ -534,6 +534,8 @@ public final class ConfigurationConverte
return WSSecurityTokenConstants.KeyIdentifier_SkiKeyIdentifier;
} else if ("EncryptedKeySHA1".equals(keyIdentifier)) {
return WSSecurityTokenConstants.KeyIdentifier_EncryptedKeySha1Identifier;
+ } else if ("EncryptedKey".equals(keyIdentifier)) {
+ return WSSecurityTokenConstants.KeyIdentifier_EncryptedKey;
} else if ("KeyValue".equals(keyIdentifier)) {
return WSSecurityTokenConstants.KeyIdentifier_KeyValue;
}
|