com.beasys.commerce.util
Interface PersistenceHelperPlugin


Deprecated

@Deprecated
public interface PersistenceHelperPlugin

Interface for Persistence Helper Plugin A specific driver must be written for each type of persistence cache. This is not a required optimization for CMP or BMP.


Method Summary
 void clearRelationalBinding(String attributeIdentifier, Collection collection, BelongingImpl belongingImpl)
          Deprecated  
 void clearRelationalBinding(String attributeIdentifier, Collection collection, EntityImpl entityImpl)
          Deprecated  
 void clearRelationalBinding(String attributeIdentifier, Collection collection, Object o, BelongingImpl belongingImpl)
          Deprecated  
 void clearRelationalBinding(String attributeIdentifier, Collection collection, Object o, EntityImpl entityImpl)
          Deprecated  
 void clearRelationalBinding(String attributeIdentifier, Map map, BelongingImpl belongingImpl)
          Deprecated  
 void clearRelationalBinding(String attributeIdentifier, Map map, EntityImpl entityImpl)
          Deprecated  
 void clearRelationalBinding(String attributeIdentifier, Map map, Object key, BelongingImpl belongingImpl)
          Deprecated  
 void clearRelationalBinding(String attributeIdentifier, Map map, Object key, EntityImpl entityImpl)
          Deprecated  
 SmartCollectionReference createSmartCollectionReference(String attributeIdentifier, SmartCollectionReference targetInstance, BelongingImpl belonging)
          Deprecated  
 SmartCollectionReference createSmartCollectionReference(String attributeIdentifier, SmartCollectionReference targetInstance, EntityImpl entityImpl)
          Deprecated  
 SmartCollectionReference createSmartCollectionReference(String attributeIdentifier, SmartCollectionReference targetInstance, SessionImpl sessionImpl)
          Deprecated  
 SmartEntityReference createSmartEntityReference(String attributeIdentifier, SmartEntityReference targetInstance, BelongingImpl belonging)
          Deprecated  
 SmartEntityReference createSmartEntityReference(String attributeIdentifier, SmartEntityReference targetInstance, EntityImpl entityImpl)
          Deprecated  
 SmartEntityReference createSmartEntityReference(String attributeIdentifier, SmartEntityReference targetInstance, SessionImpl sessionImpl)
          Deprecated  
 SmartMapReference createSmartMapReference(String attributeIdentifier, SmartMapReference targetInstance, BelongingImpl belonging)
          Deprecated  
 SmartMapReference createSmartMapReference(String attributeIdentifier, SmartMapReference targetInstance, EntityImpl entityImpl)
          Deprecated  
 SmartMapReference createSmartMapReference(String attributeIdentifier, SmartMapReference targetInstance, SessionImpl sessionImpl)
          Deprecated  
 Belonging doRelationalBinding(String attributeIdentifier, Belonging value, javax.ejb.EJBObject parent, BelongingImpl belongingImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 Belonging doRelationalBinding(String attributeIdentifier, Belonging value, EntityImpl entityImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 void doRelationalBinding(String attributeIdentifier, javax.ejb.EJBObject ejbObject, javax.ejb.EJBObject parent, BelongingImpl belongingImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 void doRelationalBinding(String attributeIdentifier, javax.ejb.EJBObject ejbObject, EntityImpl entityImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 Object doRelationalBinding(String attributeIdentifier, Object value, javax.ejb.EJBObject parent, BelongingImpl belongingImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 Object doRelationalBinding(String attributeIdentifier, Object value, EntityImpl entityImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 Belonging doRelationalBindingWithMapKey(String attributeIdentifier, Belonging value, Object mapKey, javax.ejb.EJBObject parent, BelongingImpl belongingImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 Belonging doRelationalBindingWithMapKey(String attributeIdentifier, Belonging value, Object mapKey, EntityImpl entityImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 void doRelationalBindingWithMapKey(String attributeIdentifier, javax.ejb.EJBObject ejbObject, Object mapKey, javax.ejb.EJBObject parent, BelongingImpl belongingImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 void doRelationalBindingWithMapKey(String attributeIdentifier, javax.ejb.EJBObject ejbObject, Object mapKey, EntityImpl entityImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 Object doRelationalBindingWithMapKey(String attributeIdentifier, Object value, Object mapKey, javax.ejb.EJBObject parent, BelongingImpl belongingImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 Object doRelationalBindingWithMapKey(String attributeIdentifier, Object value, Object mapKey, EntityImpl entityImpl)
          Deprecated The dependent object will have additional information for object-relational mapping
 Belonging synchronizeWithCache(Belonging value, EntityImpl entityImpl)
          Deprecated Optimize the dependent object in the persistence cache
 Object synchronizeWithCache(Object value, EntityImpl entityImpl)
          Deprecated Optimize the dependent object in the persistence cache
 Belonging synchronizeWithCache(String attributeIdentifier, Belonging value, EntityImpl entityImpl)
          Deprecated Optimize the dependent object in the persistence cache
 Collection synchronizeWithCache(String attributeIdentifier, Collection collection, EntityImpl entityImpl)
          Deprecated Optimize the dependent object in the persistence cache
 Map synchronizeWithCache(String attributeIdentifier, Map map, EntityImpl entityImpl)
          Deprecated Optimize the dependent object in the persistence cache
 Object synchronizeWithCache(String attributeIdentifier, Object value, EntityImpl entityImpl)
          Deprecated Optimize the dependent object in the persistence cache
 

Method Detail

synchronizeWithCache

Belonging synchronizeWithCache(String attributeIdentifier,
                               Belonging value,
                               EntityImpl entityImpl)
Deprecated 
Optimize the dependent object in the persistence cache

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

synchronizeWithCache

Object synchronizeWithCache(String attributeIdentifier,
                            Object value,
                            EntityImpl entityImpl)
Deprecated 
Optimize the dependent object in the persistence cache

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

synchronizeWithCache

Collection synchronizeWithCache(String attributeIdentifier,
                                Collection collection,
                                EntityImpl entityImpl)
Deprecated 
Optimize the dependent object in the persistence cache

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

synchronizeWithCache

Map synchronizeWithCache(String attributeIdentifier,
                         Map map,
                         EntityImpl entityImpl)
Deprecated 
Optimize the dependent object in the persistence cache

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

synchronizeWithCache

Belonging synchronizeWithCache(Belonging value,
                               EntityImpl entityImpl)
Deprecated 
Optimize the dependent object in the persistence cache

Parameters
value - instance of a belonging * @param entityImpl implementation of an entity bean

synchronizeWithCache

Object synchronizeWithCache(Object value,
                            EntityImpl entityImpl)
Deprecated 
Optimize the dependent object in the persistence cache

Parameters
value - instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBinding

Belonging doRelationalBinding(String attributeIdentifier,
                              Belonging value,
                              EntityImpl entityImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBinding

Object doRelationalBinding(String attributeIdentifier,
                           Object value,
                           EntityImpl entityImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBinding

void doRelationalBinding(String attributeIdentifier,
                         javax.ejb.EJBObject ejbObject,
                         EntityImpl entityImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param ejbObject instance of a remote interface * @param entityImpl implementation of an entity bean

doRelationalBindingWithMapKey

Belonging doRelationalBindingWithMapKey(String attributeIdentifier,
                                        Belonging value,
                                        Object mapKey,
                                        EntityImpl entityImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBindingWithMapKey

Object doRelationalBindingWithMapKey(String attributeIdentifier,
                                     Object value,
                                     Object mapKey,
                                     EntityImpl entityImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBindingWithMapKey

void doRelationalBindingWithMapKey(String attributeIdentifier,
                                   javax.ejb.EJBObject ejbObject,
                                   Object mapKey,
                                   EntityImpl entityImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param ejbObject instance of a remote interface * @param entityImpl implementation of an entity bean

doRelationalBinding

Belonging doRelationalBinding(String attributeIdentifier,
                              Belonging value,
                              javax.ejb.EJBObject parent,
                              BelongingImpl belongingImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBinding

Object doRelationalBinding(String attributeIdentifier,
                           Object value,
                           javax.ejb.EJBObject parent,
                           BelongingImpl belongingImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBinding

void doRelationalBinding(String attributeIdentifier,
                         javax.ejb.EJBObject ejbObject,
                         javax.ejb.EJBObject parent,
                         BelongingImpl belongingImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param ejbObject instance of a remote interface * @param entityImpl implementation of an entity bean

doRelationalBindingWithMapKey

Belonging doRelationalBindingWithMapKey(String attributeIdentifier,
                                        Belonging value,
                                        Object mapKey,
                                        javax.ejb.EJBObject parent,
                                        BelongingImpl belongingImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBindingWithMapKey

Object doRelationalBindingWithMapKey(String attributeIdentifier,
                                     Object value,
                                     Object mapKey,
                                     javax.ejb.EJBObject parent,
                                     BelongingImpl belongingImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param value instance of a belonging * @param entityImpl implementation of an entity bean

doRelationalBindingWithMapKey

void doRelationalBindingWithMapKey(String attributeIdentifier,
                                   javax.ejb.EJBObject ejbObject,
                                   Object mapKey,
                                   javax.ejb.EJBObject parent,
                                   BelongingImpl belongingImpl)
Deprecated 
The dependent object will have additional information for object-relational mapping

Parameters
attributeIdentifier - identifier for an attribute on a bean e.g. examples.buybeans.BeanieHat.numberOfPropellers * @param ejbObject instance of a remote interface * @param entityImpl implementation of an entity bean

createSmartEntityReference

SmartEntityReference createSmartEntityReference(String attributeIdentifier,
                                                SmartEntityReference targetInstance,
                                                EntityImpl entityImpl)
Deprecated 

createSmartMapReference

SmartMapReference createSmartMapReference(String attributeIdentifier,
                                          SmartMapReference targetInstance,
                                          EntityImpl entityImpl)
Deprecated 

createSmartCollectionReference

SmartCollectionReference createSmartCollectionReference(String attributeIdentifier,
                                                        SmartCollectionReference targetInstance,
                                                        EntityImpl entityImpl)
Deprecated 

createSmartEntityReference

SmartEntityReference createSmartEntityReference(String attributeIdentifier,
                                                SmartEntityReference targetInstance,
                                                SessionImpl sessionImpl)
Deprecated 

createSmartMapReference

SmartMapReference createSmartMapReference(String attributeIdentifier,
                                          SmartMapReference targetInstance,
                                          SessionImpl sessionImpl)
Deprecated 

createSmartCollectionReference

SmartCollectionReference createSmartCollectionReference(String attributeIdentifier,
                                                        SmartCollectionReference targetInstance,
                                                        SessionImpl sessionImpl)
Deprecated 

createSmartEntityReference

SmartEntityReference createSmartEntityReference(String attributeIdentifier,
                                                SmartEntityReference targetInstance,
                                                BelongingImpl belonging)
Deprecated 

createSmartMapReference

SmartMapReference createSmartMapReference(String attributeIdentifier,
                                          SmartMapReference targetInstance,
                                          BelongingImpl belonging)
Deprecated 

createSmartCollectionReference

SmartCollectionReference createSmartCollectionReference(String attributeIdentifier,
                                                        SmartCollectionReference targetInstance,
                                                        BelongingImpl belonging)
Deprecated 

clearRelationalBinding

void clearRelationalBinding(String attributeIdentifier,
                            Collection collection,
                            EntityImpl entityImpl)
Deprecated 

clearRelationalBinding

void clearRelationalBinding(String attributeIdentifier,
                            Map map,
                            EntityImpl entityImpl)
Deprecated 

clearRelationalBinding

void clearRelationalBinding(String attributeIdentifier,
                            Collection collection,
                            Object o,
                            EntityImpl entityImpl)
Deprecated 

clearRelationalBinding

void clearRelationalBinding(String attributeIdentifier,
                            Map map,
                            Object key,
                            EntityImpl entityImpl)
Deprecated 

clearRelationalBinding

void clearRelationalBinding(String attributeIdentifier,
                            Collection collection,
                            BelongingImpl belongingImpl)
Deprecated 

clearRelationalBinding

void clearRelationalBinding(String attributeIdentifier,
                            Map map,
                            BelongingImpl belongingImpl)
Deprecated 

clearRelationalBinding

void clearRelationalBinding(String attributeIdentifier,
                            Collection collection,
                            Object o,
                            BelongingImpl belongingImpl)
Deprecated 

clearRelationalBinding

void clearRelationalBinding(String attributeIdentifier,
                            Map map,
                            Object key,
                            BelongingImpl belongingImpl)
Deprecated 


Copyright © 2000, 2009, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
Other names may be trademarks of their respective owners.