Module org.apache.santuario.xmlsec
Enum KeyAgreementParameters.ActorType
java.lang.Object
java.lang.Enum<KeyAgreementParameters.ActorType>
org.apache.xml.security.encryption.params.KeyAgreementParameters.ActorType
- All Implemented Interfaces:
Serializable,Comparable<KeyAgreementParameters.ActorType>
- Enclosing class:
KeyAgreementParameters
This enum defines the actor type of the KeyAgreement algorithm. The actor type defines which public and which
private key is expected to be present for the KeyAgreement algorithm to define derived key.
- ORIGINATOR: The key agreement is used by originator of the message. Therefore, the originator private key and the recipient public key are expected to be present.
- RECIPIENT: The key agreement is used by recipient of the message. Therefore, the recipient private key and the originator public key are expected to be present.
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static KeyAgreementParameters.ActorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ORIGINATOR
-
RECIPIENT
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-