org.frameworkset.web.token.AppValidateResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-ticket Show documentation
Show all versions of bboss-ticket Show documentation
support session share between application cluster nodes and cross domain application nodes.support good application session monitor and session data statitic module.demo site http://session.bbossgroups.com/
The newest version!
package org.frameworkset.web.token;
public class AppValidateResult {
private String error;
private boolean result;
private Application application;
public boolean getResult() {
return result;
}
public void setResult(boolean result) {
this.result = result;
}
public Application getApplication() {
return application;
}
public void setApplication(Application application) {
this.application = application;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy