forked from I2P_Developers/i2p.i2p
26 lines
685 B
Java
26 lines
685 B
Java
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 EditBean {
|
|
private boolean _isClient;
|
|
public WizardBean() { super(); }
|
|
|
|
/**
|
|
* Whether the tunnel being set up is a client tunnel or not.
|
|
* @since 0.8.13
|
|
*/
|
|
public void setIsClient(String isClient) {
|
|
_isClient = Boolean.valueOf(isClient);
|
|
}
|
|
/** @since 0.8.13 */
|
|
public boolean getIsClient() {
|
|
return _isClient;
|
|
}
|
|
}
|