Added getters for the hidden variables needed by wizard.jsp

This commit is contained in:
str4d
2012-01-23 01:21:19 +00:00
parent 9a5430beeb
commit 745e2952ff

View File

@@ -21,4 +21,36 @@ public class WizardBean extends IndexBean {
public boolean getIsClient() {
return _isClient;
}
public String getName() {
return _name;
}
public String getDescription() {
return _description;
}
public String getProxyList() {
return _proxyList;
}
public String getTargetDestination() {
return _targetDestination;
}
public String getTargetHost() {
return _targetHost;
}
public String getTargetPort() {
return _targetPort;
}
public String getPort() {
return _port;
}
public String getReachableBy() {
return _reachableBy;
}
}