
org.frameworkset.security.session.SessionEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-security Show documentation
Show all versions of bboss-security 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/
package org.frameworkset.security.session;
import javax.servlet.http.HttpSession;
public interface SessionEvent {
public final int EventType_create = 0;
public final int EventType_destroy = 1;
public final int EventType_addAttibute = 2;
public final int EventType_removeAttibute = 3;
public HttpSession getSource();
public int getEventType();
public String getAttributeName();
public Object getAttributeValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy