📄 remotedispatcherimpl.java
字号:
/*
* $Id: RemoteDispatcherImpl.java,v 1.4 2003/12/08 20:13:42 ajzeneski Exp $
*
* Copyright (c) 2003 The Open For Business Project - www.ofbiz.org
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
package org.ofbiz.service.rmi;
import org.ofbiz.service.*;
import org.ofbiz.base.util.Debug;
import java.rmi.server.UnicastRemoteObject;
import java.rmi.server.RMIClientSocketFactory;
import java.rmi.server.RMIServerSocketFactory;
import java.rmi.RemoteException;
import java.util.Map;
/**
* Generic Services Remote Dispatcher Implementation
*
* @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a>
* @version $Revision: 1.4 $
* @since 3.0
*/
public class RemoteDispatcherImpl extends UnicastRemoteObject implements RemoteDispatcher {
public static final String module = RemoteDispatcherImpl.class.getName();
private static final boolean exportAll = false;
protected LocalDispatcher dispatcher = null;
RemoteDispatcherImpl(LocalDispatcher dispatcher, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws RemoteException {
super(0, csf, ssf);
this.dispatcher = dispatcher;
}
// RemoteDispatcher methods
public Map runSync(String serviceName, Map context) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
return dispatcher.runSync(serviceName, context);
}
public Map runSync(String serviceName, Map context, int transactionTimeout, boolean requireNewTransaction) throws GenericServiceException {
this.checkExportFlag(serviceName);
return dispatcher.runSync(serviceName, context, transactionTimeout, requireNewTransaction);
}
public void runSyncIgnore(String serviceName, Map context) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.runSyncIgnore(serviceName, context);
}
public void runSyncIgnore(String serviceName, Map context, int transactionTimeout, boolean requireNewTransaction) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.runSyncIgnore(serviceName, context, transactionTimeout, requireNewTransaction);
}
public void runAsync(String serviceName, Map context, GenericRequester requester, boolean persist, int transactionTimeout, boolean requireNewTransaction) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.runAsync(serviceName, context, requester, persist, transactionTimeout, requireNewTransaction);
}
public void runAsync(String serviceName, Map context, GenericRequester requester, boolean persist) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.runAsync(serviceName, context, requester, persist);
}
public void runAsync(String serviceName, Map context, GenericRequester requester) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.runAsync(serviceName, context, requester);
}
public void runAsync(String serviceName, Map context, boolean persist) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.runAsync(serviceName, context, persist);
}
public void runAsync(String serviceName, Map context) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.runAsync(serviceName, context);
}
public GenericResultWaiter runAsyncWait(String serviceName, Map context, boolean persist) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
return dispatcher.runAsyncWait(serviceName, context, persist);
}
public GenericResultWaiter runAsyncWait(String serviceName, Map context) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
return dispatcher.runAsyncWait(serviceName, context);
}
public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, int count, long endTime) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.schedule(serviceName, context, startTime, frequency, interval, count, endTime);
}
public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, int count) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.schedule(serviceName, context, startTime, frequency, interval, count);
}
public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, long endTime) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.schedule(serviceName, context, startTime, frequency, interval, endTime);
}
public void schedule(String serviceName, Map context, long startTime) throws GenericServiceException, RemoteException {
this.checkExportFlag(serviceName);
dispatcher.schedule(serviceName, context, startTime);
}
public void deregister() {
dispatcher.deregister();
}
protected void checkExportFlag(String serviceName) throws GenericServiceException {
ModelService model = dispatcher.getDispatchContext().getModelService(serviceName);
if (!model.export && !exportAll) {
Debug.logWarning("Attempt to invoke a non-exported service: " + serviceName, module);
throw new GenericServiceException("Cannot find requested service");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -