in modules/rampart-integration/src/main/java/org/apache/rampart/PWCallback.java [73:191]
public void handle(Callback[] callbacks)
throws IOException, UnsupportedCallbackException {
for (int i = 0; i < callbacks.length; i++) {
if (callbacks[i] instanceof WSPasswordCallback) {
WSPasswordCallback pc = (WSPasswordCallback) callbacks[i];
/*
* This usage type is used only in case we received a
* username token with a password of type PasswordText or
* an unknown password type.
*
* This case the WSPasswordCallback object contains the
* identifier (aka username), the password we received, and
* the password type string to identify the type.
*
* Here we perform only a very simple check.
*/
if (pc.getUsage() == WSPasswordCallback.UNKNOWN) {
if(pc.getIdentifier().equals("Ron") && pc.getPassword().equals("noR")) {
return;
}
if(pc.getIdentifier().equals("joe") && pc.getPassword().equals("eoj")) {
return;
}
if (pc.getPassword().equals("sirhC")) {
return;
}
if(pc.getIdentifier().equals("alice") && pc.getPassword().equals("password")) {
return;
}
throw new UnsupportedCallbackException(callbacks[i],
"check failed");
}
/*
* here call a function/method to lookup the password for
* the given identifier (e.g. a user name or keystore alias)
* e.g.: pc.setPassword(passStore.getPassword(pc.getIdentfifier))
* for Testing we supply a fixed name here.
*/
if (pc.getUsage() == WSPasswordCallback.SECRET_KEY) {
pc.setKey(key);
} else if(pc.getIdentifier().equals("alice")) {
pc.setPassword("password");
} else if(pc.getIdentifier().equals("bob")) {
pc.setPassword("password");
} else if(pc.getIdentifier().equals("Ron")) {
pc.setPassword("noR");
} else if(pc.getIdentifier().equals("joe")) {
pc.setPassword("eoj");
} else if(pc.getIdentifier().equals("ip")) {
pc.setPassword("password");
} else {
pc.setPassword("sirhC");
}
} else {
throw new UnsupportedCallbackException(callbacks[i],
"Unrecognized Callback");
}
}
}