Package org.apache.ofbiz.minilang
Class SimpleServiceEngine
- java.lang.Object
-
- org.apache.ofbiz.service.engine.AbstractEngine
-
- org.apache.ofbiz.service.engine.GenericAsyncEngine
-
- org.apache.ofbiz.minilang.SimpleServiceEngine
-
- All Implemented Interfaces:
GenericEngine
public final class SimpleServiceEngine extends GenericAsyncEngine
Mini-language Service Engine.
-
-
Field Summary
-
Fields inherited from class org.apache.ofbiz.service.engine.GenericAsyncEngine
module
-
Fields inherited from class org.apache.ofbiz.service.engine.AbstractEngine
dispatcher, locationMap
-
Fields inherited from interface org.apache.ofbiz.service.engine.GenericEngine
ASYNC_MODE, SYNC_MODE
-
-
Constructor Summary
Constructors Constructor Description SimpleServiceEngine(ServiceDispatcher dispatcher)
Creates new Engine
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>
runSync(java.lang.String localName, ModelService modelService, java.util.Map<java.lang.String,java.lang.Object> context)
Run the service synchronously and return the resultvoid
runSyncIgnore(java.lang.String localName, ModelService modelService, java.util.Map<java.lang.String,java.lang.Object> context)
Run the service synchronously and IGNORE the result-
Methods inherited from class org.apache.ofbiz.service.engine.GenericAsyncEngine
allowCallbacks, runAsync, runAsync
-
Methods inherited from class org.apache.ofbiz.service.engine.AbstractEngine
createLocationMap, getLocation, sendCallbacks, sendCallbacks, sendCallbacks
-
-
-
-
Constructor Detail
-
SimpleServiceEngine
public SimpleServiceEngine(ServiceDispatcher dispatcher)
Creates new Engine
-
-
Method Detail
-
runSync
public java.util.Map<java.lang.String,java.lang.Object> runSync(java.lang.String localName, ModelService modelService, java.util.Map<java.lang.String,java.lang.Object> context) throws GenericServiceException
Run the service synchronously and return the result- Specified by:
runSync
in interfaceGenericEngine
- Specified by:
runSync
in classGenericAsyncEngine
- Parameters:
context
- Map of name, value pairs composing the contextlocalName
- Name of the LocalDispatcher.modelService
- Service model object.- Returns:
- Map of name, value pairs composing the result
- Throws:
GenericServiceException
- See Also:
GenericEngine.runSync(java.lang.String, org.apache.ofbiz.service.ModelService, java.util.Map)
-
runSyncIgnore
public void runSyncIgnore(java.lang.String localName, ModelService modelService, java.util.Map<java.lang.String,java.lang.Object> context) throws GenericServiceException
Run the service synchronously and IGNORE the result- Specified by:
runSyncIgnore
in interfaceGenericEngine
- Specified by:
runSyncIgnore
in classGenericAsyncEngine
- Parameters:
context
- Map of name, value pairs composing the contextlocalName
- Name of the LocalDispatcher.modelService
- Service model object.- Throws:
GenericServiceException
- See Also:
GenericEngine.runSyncIgnore(java.lang.String, org.apache.ofbiz.service.ModelService, java.util.Map)
-
-