Uses of Interface
org.objectweb.jac.aspects.persistence.Storage

Packages that use Storage
org.objectweb.jac.aspects.persistence   
 

Uses of Storage in org.objectweb.jac.aspects.persistence
 

Classes in org.objectweb.jac.aspects.persistence that implement Storage
 class FSStorage
          A FileSystem storage
 class PostgresStorage
          Implements the storage to store within a PostgreSQL database.
 class SQLStorage
          Implements the storage to store within an SQL compliant database system.
 

Fields in org.objectweb.jac.aspects.persistence declared as Storage
protected  Storage OID.storage
          The storage that defines the OID
 

Methods in org.objectweb.jac.aspects.persistence that return Storage
protected  Storage PersistenceAC.getStorage(String id)
          Gets the storage with a given id, or null.
protected  Storage[] PersistenceAC.getStorages()
           
 Storage PersistenceAC.getStorage(ClassItem cli)
          Returns the storage for a given class
 Storage PersistenceAC.getStorage(Object obj)
          Returns the storage for a given object
 Storage OID.getStorage()
           
 Storage AbstractPersistenceWrapper.getStorage(ClassItem cli)
          Returns the storage for a given class
 

Methods in org.objectweb.jac.aspects.persistence with parameters of type Storage
static String ValueConverter.objectToString(Storage currentStorage, Object obj)
          Returns a string representation of a value so that it can be stored.
static Object ValueConverter.stringToObject(Storage currentStorage, String str)
          Returns an object from a string, depending on the needed type.
 LongOID PersistenceAC.parseLongOID(String str, Storage defaultStorage)
          Converts a String into a LongOID.
 

Constructors in org.objectweb.jac.aspects.persistence with parameters of type Storage
StringOID(Storage storage, String oid)
           
OID(Storage storage)
           
LongOID(Storage storage, long oid)