propagate from branch 'i2p.i2p' (head 5d0ae36d90db71fcbaa3e7ffda7720ca2659e2ed)

to branch 'i2p.i2p.str4d.i2ptunnel' (head 790aee747df3e6eff3ef9742965a88fd3b03a75b)
This commit is contained in:
str4d
2012-01-21 05:33:03 +00:00
3 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package net.i2p.i2ptunnel.web;
/**
* A temporary data holder for the wizard pages
*
* Warning - This class is not part of the i2ptunnel API, and at some point
* it will be moved from the jar to the war.
* Usage by classes outside of i2ptunnel.war is deprecated.
*/
public class WizardBean extends IndexBean {
private boolean _isClient;
public WizardBean() { super(); }
/**
* Whether the tunnel being set up is a client tunnel or not.
*
*/
public void setIsClient(String isClient) {
_isClient = Boolean.valueOf(isClient);
}
public boolean getIsClient() {
return _isClient;
}
}