本文整理匯總了Java中org.ofbiz.service.config.model.JmsService類的典型用法代碼示例。如果您正苦於以下問題:Java JmsService類的具體用法?Java JmsService怎麽用?Java JmsService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
JmsService類屬於org.ofbiz.service.config.model包,在下文中一共展示了JmsService類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: run
import org.ofbiz.service.config.model.JmsService; //導入依賴的package包/類
protected Map<String, Object> run(ModelService modelService, Map<String, Object> context) throws GenericServiceException {
JmsService serviceElement = getServiceElement(modelService);
List<Server> serverList = serviceElement.getServers();
Map<String, Object> result = new HashMap<String, Object>();
for (Server server: serverList) {
String serverType = server.getType();
if (serverType.equals("topic"))
result.putAll(runTopic(modelService, context, server));
else if (serverType.equals("queue"))
result.putAll(runQueue(modelService, context, server));
else
throw new GenericServiceException("Illegal server messaging type.");
}
return result;
}
示例2: run
import org.ofbiz.service.config.model.JmsService; //導入依賴的package包/類
protected Map<String, Object> run(ModelService modelService, Map<String, Object> context) throws GenericServiceException {
JmsService serviceElement = getServiceElement(modelService);
List<Server> serverList = serviceElement.getServers();
Map<String, Object> result = FastMap.newInstance();
for (Server server: serverList) {
String serverType = server.getType();
if (serverType.equals("topic"))
result.putAll(runTopic(modelService, context, server));
else if (serverType.equals("queue"))
result.putAll(runQueue(modelService, context, server));
else
throw new GenericServiceException("Illegal server messaging type.");
}
return result;
}
示例3: getServiceElement
import org.ofbiz.service.config.model.JmsService; //導入依賴的package包/類
protected JmsService getServiceElement(ModelService modelService) throws GenericServiceException {
String location = this.getLocation(modelService);
try {
return ServiceConfigUtil.getServiceEngine().getJmsServiceByName(location);
} catch (GenericConfigException e) {
throw new GenericServiceException(e);
}
}