Class JksProperties
- java.lang.Object
-
- com.bld.crypto.jks.config.properties.JksProperties
-
@Configuration @ConfigurationProperties(prefix="com.bld.crypto.jks") public class JksProperties extends Object
The Class JksProperties.
-
-
Constructor Summary
Constructors Constructor Description JksProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAlias()Gets the alias.org.springframework.core.io.ResourcegetFile()Gets the file.StringgetInstanceJks()Gets the instance jks.StringgetPassword()Gets the password.io.jsonwebtoken.SignatureAlgorithmgetSignatureAlgorithm()Gets the signature algorithm.voidsetAlias(String alias)Sets the alias.voidsetFile(org.springframework.core.io.Resource file)Sets the file.voidsetInstanceJks(String instanceJks)Sets the instance jks.voidsetPassword(String password)Sets the password.voidsetSignatureAlgorithm(io.jsonwebtoken.SignatureAlgorithm signatureAlgorithm)Sets the signature algorithm.
-
-
-
Method Detail
-
getFile
public org.springframework.core.io.Resource getFile()
Gets the file.- Returns:
- the file
-
setFile
public void setFile(org.springframework.core.io.Resource file)
Sets the file.- Parameters:
file- the new file
-
getPassword
public String getPassword()
Gets the password.- Returns:
- the password
-
setPassword
public void setPassword(String password)
Sets the password.- Parameters:
password- the new password
-
getAlias
public String getAlias()
Gets the alias.- Returns:
- the alias
-
setAlias
public void setAlias(String alias)
Sets the alias.- Parameters:
alias- the new alias
-
getInstanceJks
public String getInstanceJks()
Gets the instance jks.- Returns:
- the instance jks
-
setInstanceJks
public void setInstanceJks(String instanceJks)
Sets the instance jks.- Parameters:
instanceJks- the new instance jks
-
getSignatureAlgorithm
public io.jsonwebtoken.SignatureAlgorithm getSignatureAlgorithm()
Gets the signature algorithm.- Returns:
- the signature algorithm
-
setSignatureAlgorithm
public void setSignatureAlgorithm(io.jsonwebtoken.SignatureAlgorithm signatureAlgorithm)
Sets the signature algorithm.- Parameters:
signatureAlgorithm- the new signature algorithm
-
-