Class JWTTransferCartTokenDecoderProperties
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.environment.JWTTransferCartTokenDecoderProperties
-
@ConfigurationProperties(prefix="broadleaf.cartoperation.transfercart.decoder") @Validated public class JWTTransferCartTokenDecoderProperties extends Object
Properties used to support theJWTTransferCartTokenDecoder
in decoding transfer cart tokens from JWTs.- See Also:
JWTTransferCartTokenDecoder
-
-
Constructor Summary
Constructors Constructor Description JWTTransferCartTokenDecoderProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getEncodedPublicKey()
The encoded RSA public key string to be used to decode and verify transfer cart token JWTs.String
getIssuer()
The issuer for the JWT token.int
hashCode()
void
setEncodedPublicKey(String encodedPublicKey)
The encoded RSA public key string to be used to decode and verify transfer cart token JWTs.void
setIssuer(String issuer)
The issuer for the JWT token.String
toString()
-
-
-
Method Detail
-
getEncodedPublicKey
public String getEncodedPublicKey()
The encoded RSA public key string to be used to decode and verify transfer cart token JWTs.
-
getIssuer
public String getIssuer()
The issuer for the JWT token. This is used to validate the JWT was issued by the authority that is expected to issue it.
-
setEncodedPublicKey
public void setEncodedPublicKey(String encodedPublicKey)
The encoded RSA public key string to be used to decode and verify transfer cart token JWTs.
-
setIssuer
public void setIssuer(String issuer)
The issuer for the JWT token. This is used to validate the JWT was issued by the authority that is expected to issue it.
-
canEqual
protected boolean canEqual(Object other)
-
-