Uses of Interface
org.objectweb.jorm.naming.api.PBinder

Packages that use PBinder
org.objectweb.jorm.api   
org.objectweb.jorm.facility.naming.basidir   
org.objectweb.jorm.facility.naming.longid   
org.objectweb.jorm.facility.naming.olongid   
org.objectweb.jorm.facility.naming.polymorphid   
org.objectweb.jorm.facility.naming.rdbsequence   
org.objectweb.jorm.genclass.lib   
org.objectweb.jorm.lib   
org.objectweb.jorm.naming.api   
org.objectweb.jorm.naming.lib   
 

Uses of PBinder in org.objectweb.jorm.api
 

Methods in org.objectweb.jorm.api that return PBinder
 PBinder PClassMapping.getPBinder()
          It yields the PBinder associated to this PClassMapping.
 

Methods in org.objectweb.jorm.api with parameters of type PBinder
 PName PSerializable.getPName(PBinder pnc)
           
 void PClassMapping.setPBinder(PBinder pb)
          It assigns the PBinder associated to this PClassMapping.
 

Uses of PBinder in org.objectweb.jorm.facility.naming.basidir
 

Classes in org.objectweb.jorm.facility.naming.basidir that implement PBinder
 class BasidBinder
           
 

Uses of PBinder in org.objectweb.jorm.facility.naming.longid
 

Methods in org.objectweb.jorm.facility.naming.longid that return PBinder
 PBinder LongIdManager.newGenClassPBinder()
          Allocates a new PBinder for gen class.
 PBinder LongIdManager.newClassPBinder(java.lang.String className, java.lang.Object conn)
          Allocates a new PBinder for a normal persistent class (not a generic class).
 

Uses of PBinder in org.objectweb.jorm.facility.naming.olongid
 

Methods in org.objectweb.jorm.facility.naming.olongid that return PBinder
 PBinder LongIdManager.newGenClassPBinder()
          Allocates a new PBinder for gen class.
 PBinder LongIdManager.newClassPBinder(java.lang.String className, java.lang.Object conn)
          Allocates a new PBinder for a normal persistent class (not a generic class).
 

Uses of PBinder in org.objectweb.jorm.facility.naming.polymorphid
 

Methods in org.objectweb.jorm.facility.naming.polymorphid that return PBinder
 PBinder PolymorphIdMgrImpl.getPBinder(java.lang.String cn)
          Retrieves a PBinder that manages polymorphic identifiers for the class with the given name.
 PBinder PolymorphIdMgrImpl.getPBinder(java.lang.String cn, java.lang.Object conn)
          Retrieves a PBinder that manages polymorphic identifiers for the class with the given name.
 PBinder PolymorphIdMgrImpl.getPBinder(long id)
          Retrieves a PBinder that manages polymorphic identifiers for the class with the given identifier.
 PBinder PolymorphIdMgrImpl.getPBinder(long id, java.lang.Object conn)
          Retrieves a PBinder that manages polymorphic identifiers for the class with the given identifier.
 PBinder PolymorphIdMgr.getPBinder(java.lang.String cn)
          Retrieves a PBinder that manages polymorphic identifiers for the class with the given name.
 PBinder PolymorphIdMgr.getPBinder(long id)
          Retrieves a PBinder that manages polymorphic identifiers for the class with the given name.
 PBinder PolymorphIdMgr.getPBinder(java.lang.String cn, java.lang.Object conn)
          Retrieves a PBinder that manages polymorphic identifiers for the class with the given name.
 

Uses of PBinder in org.objectweb.jorm.facility.naming.rdbsequence
 

Classes in org.objectweb.jorm.facility.naming.rdbsequence that implement PBinder
 class RdbSequenceBinder
          This binder is specific to the rdb mapper.
 

Uses of PBinder in org.objectweb.jorm.genclass.lib
 

Fields in org.objectweb.jorm.genclass.lib declared as PBinder
protected  PBinder GenClassMapping.binder
          The actual PBinder.
 

Methods in org.objectweb.jorm.genclass.lib that return PBinder
 PBinder GenClassMapping.getPBinder()
          It yields the PBinder associated to this PClassMapping.
 

Methods in org.objectweb.jorm.genclass.lib with parameters of type PBinder
 void GenClassMapping.setPBinder(PBinder pb)
          It assigns the PBinder associated to this PClassMapping.
 

Uses of PBinder in org.objectweb.jorm.lib
 

Methods in org.objectweb.jorm.lib with parameters of type PBinder
 PName PSerializableImpl.getPName(PBinder pnc)
           
 

Uses of PBinder in org.objectweb.jorm.naming.api
 

Methods in org.objectweb.jorm.naming.api that return PBinder
 PBinder PolymorphicPNamingContext.getDelegatedBinder()
          Get the delegated PBinder.
 PBinder KeyFilteredNamingContext.lookup(java.lang.Object key)
           
 

Methods in org.objectweb.jorm.naming.api with parameters of type PBinder
 void PolymorphicPNamingContext.setDelegatedBinder(PBinder delegatedBinder)
          Set the delegated PBinder.
 void KeyFilteredNamingContext.exportClass(PBinder binder, java.lang.Object key)
          Export a new persistent class into this PNamingContext
 

Uses of PBinder in org.objectweb.jorm.naming.lib
 

Classes in org.objectweb.jorm.naming.lib that implement PBinder
 class BasicPBinder
          It defines the a basic PBinder which able to be also a PNamingContext.
 class CompositePBinder
          This class helps the implementation of PBinder for composite name.
 

Fields in org.objectweb.jorm.naming.lib declared as PBinder
protected  PBinder AbstractInheritFilteredPNamingContext.binder
          The Binder associated to the current type.
 

Methods in org.objectweb.jorm.naming.lib that return PBinder
 PBinder BasicPolymorphicPNamingContext.getDelegatedBinder()
           
 PBinder AbstractInheritKeyFilteredPNamingContext.lookup(java.lang.Object key)
           
 PBinder AbstractInheritFilteredPNamingContext.getBinder()
           
 

Methods in org.objectweb.jorm.naming.lib with parameters of type PBinder
 void BasicPolymorphicPNamingContext.setDelegatedBinder(PBinder delegatedBinder)
           
 void AbstractInheritKeyFilteredPNamingContext.exportClass(PBinder binder, java.lang.Object key)
           
 void AbstractInheritFilteredPNamingContext.setBinder(PBinder binder)
           
 

Constructors in org.objectweb.jorm.naming.lib with parameters of type PBinder
BasicPolymorphicPNamingContext(PBinder delegatedBinder, PClassMapping pcm, CacheManager cache, PNameManager delegatedPNM)