Make getType() a public method so can be accessed from wizard.jsp

This commit is contained in:
str4d
2012-01-22 00:07:06 +00:00
parent 5d46e922ed
commit eda2ac510a

View File

@@ -604,7 +604,7 @@ public class IndexBean {
public void setType(String type) {
_type = (type != null ? type.trim() : null);
}
String getType() { return _type; }
public String getType() { return _type; }
/** Short name of the tunnel */
public void setName(String name) {