Add new type property to KeyStore properties. (#486)
This commit is contained in:
@@ -98,6 +98,11 @@ public class KeyProperties {
|
||||
*/
|
||||
private String secret;
|
||||
|
||||
/**
|
||||
* The KeyStore type. Defaults to jks.
|
||||
*/
|
||||
private String type = "jks";
|
||||
|
||||
public String getAlias() {
|
||||
return this.alias;
|
||||
}
|
||||
@@ -118,6 +123,10 @@ public class KeyProperties {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
@@ -130,5 +139,9 @@ public class KeyProperties {
|
||||
this.secret = secret;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user