Class SecretEncryptionConfiguration
- java.lang.Object
-
- io.micronaut.security.token.jwt.encryption.secret.SecretEncryptionConfiguration
-
@EachProperty("micronaut.security.token.jwt.encryptions.secret") public class SecretEncryptionConfiguration extends java.lang.ObjectEncapsulates Secret Encryption Configuration.- Since:
- 1.0
- Author:
- Sergio del Amo
-
-
Constructor Summary
Constructors Constructor Description SecretEncryptionConfiguration(java.lang.String name)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.nimbusds.jose.EncryptionMethodgetEncryptionMethod()com.nimbusds.jose.JWEAlgorithmgetJweAlgorithm()java.lang.StringgetName()java.lang.StringgetSecret()voidsetEncryptionMethod(com.nimbusds.jose.EncryptionMethod encryptionMethod)EncryptionMethod.voidsetJweAlgorithm(com.nimbusds.jose.JWEAlgorithm jweAlgorithm)JWEAlgorithm.voidsetSecret(java.lang.String secret)Secret used for encryption configuration.
-
-
-
Method Detail
-
getSecret
public java.lang.String getSecret()
- Returns:
- The secret being used in
SecretEncryption
-
getJweAlgorithm
public com.nimbusds.jose.JWEAlgorithm getJweAlgorithm()
- Returns:
- The JWE algorithm
-
setJweAlgorithm
public void setJweAlgorithm(com.nimbusds.jose.JWEAlgorithm jweAlgorithm)
JWEAlgorithm.- Parameters:
jweAlgorithm- JWT Algorithm
-
setEncryptionMethod
public void setEncryptionMethod(com.nimbusds.jose.EncryptionMethod encryptionMethod)
EncryptionMethod.- Parameters:
encryptionMethod- Encryption Method
-
getEncryptionMethod
public com.nimbusds.jose.EncryptionMethod getEncryptionMethod()
- Returns:
EncryptionMethod
-
setSecret
public void setSecret(java.lang.String secret)
Secret used for encryption configuration.- Parameters:
secret- Encryption secret.
-
getName
public java.lang.String getName()
- Returns:
- Bean qualifier name.
-
-