1 24 package org.objectweb.jalisto.se.api.internal; 25 26 import org.objectweb.jalisto.se.api.MetaRepository; 27 28 public interface InternalMetaRepository extends MetaRepository { 29 30 void checkNoActive(String message); 31 32 void checkNoSessions(String message); 33 34 void closeAllSessions(); 35 36 void addSession(SessionInternal session); 37 38 void removeSession(SessionInternal session); 39 40 String getClassNameFromClid(Object clid); 41 42 Object getClidFromClassName(String fullClassName); 43 44 } 45 | Popular Tags |