Package org.apache.ofbiz.entity
Class DelegatorFactoryImpl
- java.lang.Object
-
- org.apache.ofbiz.entity.DelegatorFactory
-
- org.apache.ofbiz.entity.DelegatorFactoryImpl
-
public class DelegatorFactoryImpl extends DelegatorFactory
ADelegatorFactory
implementation that returns an instance ofGenericDelegator
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.ofbiz.entity.DelegatorFactory
DelegatorFactory.DelegatorConfigurable
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
module
-
Constructor Summary
Constructors Constructor Description DelegatorFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Delegator
getInstance(java.lang.String delegatorName)
Returns an instance ofR
.-
Methods inherited from class org.apache.ofbiz.entity.DelegatorFactory
getDelegator, getDelegatorFuture
-
-
-
-
Method Detail
-
getInstance
public Delegator getInstance(java.lang.String delegatorName)
Description copied from interface:Factory
Returns an instance ofR
. This is a basic factory interface that is meant to be extended. Sub-interfaces declare types forA
(thegetInstance
argument), andR
(the type returned bygetInstance
).- Parameters:
delegatorName
- Optional object to be used inR
's construction, or to be used as a selector key- Returns:
- An instance of
R
-
-