1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.web; 26 27 public interface SessionManager extends org.netbeans.modules.j2ee.sun.dd.api.CommonDDBean { 28 29 public static final String PERSISTENCETYPE = "PersistenceType"; public static final String MANAGER_PROPERTIES = "ManagerProperties"; public static final String STORE_PROPERTIES = "StoreProperties"; 33 34 37 public void setPersistenceType(java.lang.String value); 38 41 public java.lang.String getPersistenceType(); 42 45 public void setManagerProperties(ManagerProperties value); 46 49 public ManagerProperties getManagerProperties(); 50 51 public ManagerProperties newManagerProperties(); 52 55 public void setStoreProperties(StoreProperties value); 56 59 public StoreProperties getStoreProperties(); 60 61 public StoreProperties newStoreProperties(); 62 63 } 64 | Popular Tags |