41 lines
727 B
Java
41 lines
727 B
Java
package javax.servlet.http;
|
|
|
|
import java.util.Enumeration;
|
|
import javax.servlet.ServletContext;
|
|
|
|
public interface HttpSession {
|
|
Object getAttribute(String str);
|
|
|
|
Enumeration getAttributeNames();
|
|
|
|
long getCreationTime();
|
|
|
|
String getId();
|
|
|
|
long getLastAccessedTime();
|
|
|
|
int getMaxInactiveInterval();
|
|
|
|
ServletContext getServletContext();
|
|
|
|
HttpSessionContext getSessionContext();
|
|
|
|
Object getValue(String str);
|
|
|
|
String[] getValueNames();
|
|
|
|
void invalidate();
|
|
|
|
boolean isNew();
|
|
|
|
void putValue(String str, Object obj);
|
|
|
|
void removeAttribute(String str);
|
|
|
|
void removeValue(String str);
|
|
|
|
void setAttribute(String str, Object obj);
|
|
|
|
void setMaxInactiveInterval(int i);
|
|
}
|