1 16 17 package org.apache.jetspeed.services.statemanager; 19 20 28 public interface SessionState 29 { 30 35 public Object getAttribute( String name ); 36 37 42 public void setAttribute( String name, Object value ); 43 44 48 public void removeAttribute( String name ); 49 50 53 public void clear(); 54 55 59 public String [] getAttributeNames(); 60 61 65 public String getKey(); 66 67 70 public void retire(); 71 72 } 74 79 80 | Popular Tags |