net.contextfw.web.commons.cloud.internal.session.CloudSessionHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-commons Show documentation
Show all versions of web-commons Show documentation
Context Web Application Framework
The newest version!
package net.contextfw.web.commons.cloud.internal.session;
import net.contextfw.web.application.lifecycle.PageScoped;
@PageScoped
public class CloudSessionHolder {
private String handle;
private boolean isOpen = false;;
public String getHandle() {
return handle;
}
public void setHandle(String handle) {
this.handle = handle;
}
public boolean isOpen() {
return isOpen;
}
public void setOpen(boolean isOpen) {
this.isOpen = isOpen;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy