Commit 7681d084 authored by Christian Dupuis's avatar Christian Dupuis

Add missing bean property getters

parent efe8494f
...@@ -223,11 +223,19 @@ public class ShellProperties { ...@@ -223,11 +223,19 @@ public class ShellProperties {
this.keyPath = keyPath; this.keyPath = keyPath;
} }
public String getKeyPath() {
return this.keyPath;
}
public void setPort(Integer port) { public void setPort(Integer port) {
Assert.notNull(port, "port must not be null"); Assert.notNull(port, "port must not be null");
this.port = port.toString(); this.port = port.toString();
} }
public String getPort() {
return this.port;
}
} }
/** /**
...@@ -260,6 +268,10 @@ public class ShellProperties { ...@@ -260,6 +268,10 @@ public class ShellProperties {
this.port = port.toString(); this.port = port.toString();
} }
public String getPort() {
return this.port;
}
} }
/** /**
...@@ -282,6 +294,10 @@ public class ShellProperties { ...@@ -282,6 +294,10 @@ public class ShellProperties {
this.domain = domain; this.domain = domain;
} }
public String getDomain() {
return this.domain;
}
} }
/** /**
...@@ -306,6 +322,10 @@ public class ShellProperties { ...@@ -306,6 +322,10 @@ public class ShellProperties {
this.path = path; this.path = path;
} }
public String getPath() {
return this.path;
}
} }
/** /**
...@@ -400,6 +420,10 @@ public class ShellProperties { ...@@ -400,6 +420,10 @@ public class ShellProperties {
this.roles = roles; this.roles = roles;
} }
public String[] getRoles() {
return this.roles;
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment