forked from I2P_Developers/i2p.i2p
Removed WizardBean - it does nothing extra over EditBean
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user