Add missing bean property getters
This commit is contained in:
@@ -223,11 +223,19 @@ public class ShellProperties {
|
||||
this.keyPath = keyPath;
|
||||
}
|
||||
|
||||
public String getKeyPath() {
|
||||
return this.keyPath;
|
||||
}
|
||||
|
||||
public void setPort(Integer port) {
|
||||
Assert.notNull(port, "port must not be null");
|
||||
this.port = port.toString();
|
||||
}
|
||||
|
||||
public String getPort() {
|
||||
return this.port;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -260,6 +268,10 @@ public class ShellProperties {
|
||||
this.port = port.toString();
|
||||
}
|
||||
|
||||
public String getPort() {
|
||||
return this.port;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -282,6 +294,10 @@ public class ShellProperties {
|
||||
this.domain = domain;
|
||||
}
|
||||
|
||||
public String getDomain() {
|
||||
return this.domain;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -306,6 +322,10 @@ public class ShellProperties {
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return this.path;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -400,6 +420,10 @@ public class ShellProperties {
|
||||
this.roles = roles;
|
||||
}
|
||||
|
||||
public String[] getRoles() {
|
||||
return this.roles;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user