Module org.eclipse.persistence.sdo
Class AbstractHelperDelegator
- java.lang.Object
-
- org.eclipse.persistence.sdo.helper.delegates.AbstractHelperDelegator
-
- Direct Known Subclasses:
SDODataFactoryDelegator,SDOTypeHelperDelegator,SDOXMLHelperDelegator,SDOXSDHelperDelegator
public abstract class AbstractHelperDelegator extends Object
Abstract class for SDO helper delegators. Delegates will shared on an application basis. This class will return the key to be used to store/retrieve the delegates for a given application.
-
-
Field Summary
Fields Modifier and Type Field Description protected HelperContextaHelperContext
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractHelperDelegator()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HelperContextgetHelperContext()Return the helperContext that this instance is associated with.voidsetHelperContext(HelperContext helperContext)INTERNAL: Set the helperContext that this instance is associated with.
-
-
-
Field Detail
-
aHelperContext
protected HelperContext aHelperContext
-
-
Method Detail
-
getHelperContext
public HelperContext getHelperContext()
Return the helperContext that this instance is associated with. This context contains all helpers. If null, the default context is returned.- Returns:
- set helper context or, if null, the default context
- See Also:
HelperContext,HelperProvider
-
setHelperContext
public void setHelperContext(HelperContext helperContext)
INTERNAL: Set the helperContext that this instance is associated with. This context will contain all helpers, so inter-helper relationships are preserved.- Parameters:
helperContext-- See Also:
HelperContext
-
-