Package org.apache.wss4j.common
Interface SecurityActionToken
-
- All Known Implementing Classes:
EncryptionActionToken,SignatureActionToken,SignatureEncryptionActionToken
public interface SecurityActionTokenThis interface encapsulates configuration for Actions. This allows a user to use specific keys for different actions, rather than to use the generic keys etc. configured on the request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description X509CertificategetCertificate()CryptogetCrypto()StringgetCryptoProperties()byte[]getKey()StringgetUser()
-
-
-
Method Detail
-
getUser
String getUser()
-
getKey
byte[] getKey()
-
getCertificate
X509Certificate getCertificate()
-
getCrypto
Crypto getCrypto() throws WSSecurityException
- Throws:
WSSecurityException
-
getCryptoProperties
String getCryptoProperties()
-
-