at.spardat.xma.baserpc.IRPCExecutorServer Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2003, 2007 s IT Solutions AT Spardat GmbH .
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* s IT Solutions AT Spardat GmbH - initial API and implementation
*******************************************************************************/
//@(#) $Id: IRPCExecutorServer.java 2089 2007-11-28 13:56:13Z s3460 $
package at.spardat.xma.baserpc;
import javax.servlet.http.HttpServletRequest;
/**
* Responsible for executing base rpcs at the server side.
*
* @author YSD, 29.09.2004
*/
public interface IRPCExecutorServer {
/**
* Executes a base rpc at the server side.
*
* @param name the name of the RPC as provided in the constructor of BaseRPCClient.
* @param input the object used to call getParameter() on to grab the parameters sent from client.
* @param output the object used to set output parameters via setParameter().
* @param request the original http servlet request.
*/
void execute (String name, ClientToServerData input, ServerToClientData output, HttpServletRequest request);
}