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

Packages that use PNameManager
org.objectweb.jorm.facility.naming.basidir   
org.objectweb.jorm.facility.naming.longid   
org.objectweb.jorm.facility.naming.polymorphid   
org.objectweb.jorm.facility.naming.rdbsequence   
org.objectweb.jorm.naming.api   
org.objectweb.jorm.naming.lib   
 

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

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

Constructors in org.objectweb.jorm.facility.naming.basidir with parameters of type PNameManager
BasidName(java.lang.Object o, PNameManager binder, int codingType)
           
 

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

Classes in org.objectweb.jorm.facility.naming.longid that implement PNameManager
 class LongIdPNC
          Is a PNamingContext managing the LongIdPName and LongIdBinder.
 

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

Classes in org.objectweb.jorm.facility.naming.polymorphid that implement PNameManager
 class PolymorphRefNC
           
 

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

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

Constructors in org.objectweb.jorm.facility.naming.rdbsequence with parameters of type PNameManager
RdbSequencePName(PNameManager pnm, long value)
           
RdbSequencePName(PNameManager pnm, java.lang.Long value)
           
RdbSequencePName(PNameManager pnm, java.lang.Object hints)
           
 

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

Subinterfaces of PNameManager in org.objectweb.jorm.naming.api
 interface FilteredPNamingContext
          Represents a PNamingContext able to say if a pname structure (pname getter, a long, ...) match a persistent object represented by this PNamingContext.
 interface KeyFilteredNamingContext
           
 interface PBinder
          This interface defines a binder as a particular PNameManager that manages the association of bindings with PName.
 interface PNamingContext
          The PNamingContext interface adds a means to retrieves the information item attached to a PName it manages.
 interface PolymorphicPNamingContext
           
 

Methods in org.objectweb.jorm.naming.api that return PNameManager
 PNameManager PName.getPNameManager()
          It retrieves the name manager associated to this PName.
 

Methods in org.objectweb.jorm.naming.api with parameters of type PNameManager
 void PolymorphicPName.setPNameManager(PNameManager pNameManager)
          Sets the pNameManager of the PName.
 

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

Classes in org.objectweb.jorm.naming.lib that implement PNameManager
 class AbstractInheritFilteredPNamingContext
          This class is abstract implementation of the FilteredPNamingContext interface.
 class AbstractInheritKeyFilteredPNamingContext
          This class is a PNamingContext for managing the inheritance.
 class BasicPBinder
          It defines the a basic PBinder which able to be also a PNamingContext.
 class BasicPNamingContext
          Default implementation for a PNamingContext with no coding support.
 class BasicPolymorphicPNamingContext
          This class is used to encode/decode asymetric PNames.
 class CompositePBinder
          This class helps the implementation of PBinder for composite name.
 

Fields in org.objectweb.jorm.naming.lib declared as PNameManager
protected  PNameManager BasicPName.pnc
          The PNamingContext that manages this PName
 

Methods in org.objectweb.jorm.naming.lib that return PNameManager
 PNameManager BasicPName.getPNameManager()
           
 

Methods in org.objectweb.jorm.naming.lib with parameters of type PNameManager
 void BasicPolymorphicPName.setPNameManager(PNameManager pNameManager)
           
 

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