clientProps.put(entry.getKey(), processFileURI(entry.getValue()));
}
}
if (null == securityArguments.getAlias()) {
clientProps.put(SecurityConstants.CALLBACK_HANDLER,
new WSPasswordCallbackHandler(
clientPropsDef.get(SecurityConstants.SIGNATURE_USERNAME),
clientPropsDef.get(CONSUMER_SIGNATURE_PASSWORD)));
} else {
clientProps.put(SecurityConstants.SIGNATURE_USERNAME, securityArguments.getAlias());
clientProps.put(SecurityConstants.CALLBACK_HANDLER,
new WSPasswordCallbackHandler(
securityArguments.getAlias(),
securityArguments.getPassword()));
}
if (null != securityArguments.getCryptoProvider()) {
clientProps.put(SecurityConstants.ENCRYPT_CRYPTO, securityArguments.getCryptoProvider());