Add new type property to KeyStore properties. (#486)

This commit is contained in:
Ryan Baxter
2019-02-27 11:31:56 -05:00
committed by GitHub
parent f19f4be761
commit 5e29ff1a6f

View File

@@ -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;
}
}
}