All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.security.session.SessionEvent Maven / Gradle / Ivy

Go to download

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/

There is a newer version: 6.2.8
Show newest version
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