Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
 BERSERK - a BusinEss Runtime and SEcurity Resources Kit
 Copyright (C) 2003 Goncalo Luiz

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

 To contact Goncalo Luiz use the following e-mail address (use an @ instead of the _):
 gedl_mega.ist.utl.pt*/

/*
 * @author Goncalo Luiz gedl [AT] rnl [DOT] ist [DOT] utl [DOT] pt
 *
 *
 * Created at 31/Out/2003 , 15:34:19
 *  
 */

package pt.utl.ist.berserk.logic.serviceManager;
import pt.utl.ist.berserk.logic.serviceManager.exceptions.ServiceManagerException;
/**
 * Defines the ServiceManager interface Created at 31/Out/2003 , 15:34:19
 *
 * @author Goncalo Luiz gedl [AT] rnl [DOT] ist [DOT] utl [DOT] pt
 *
 *
 *  
 */

public interface IServiceManager
{
    public abstract 5+0%2Fdocs%2Fapi+Object">Object execute(5+0%2Fdocs%2Fapi+Object">Object requester, 1.5.0/docs/api/java/lang/String.html">String serviceName, 5+0%2Fdocs%2Fapi+Object">Object argumentos[])
            throws ServiceManagerException, 1.5.0/docs/api/java/lang/Throwable.html">Throwable;
    public abstract 5+0%2Fdocs%2Fapi+Object">Object execute(5+0%2Fdocs%2Fapi+Object">Object requester, 1.5.0/docs/api/java/lang/String.html">String serviceName, 5+0%2Fdocs%2Fapi+Object">Object argumentos[], 1.5.0/docs/api/java/lang/String.html">String names[])
            throws ServiceManagerException, 1.5.0/docs/api/java/lang/Throwable.html">Throwable;
    public abstract 5+0%2Fdocs%2Fapi+Object">Object execute(5+0%2Fdocs%2Fapi+Object">Object requester, 1.5.0/docs/api/java/lang/String.html">String serviceName, 1.5.0/docs/api/java/lang/String.html">String methodName,
            5+0%2Fdocs%2Fapi+Object">Object argumentos[]) throws ServiceManagerException, 1.5.0/docs/api/java/lang/Throwable.html">Throwable;
    public abstract 5+0%2Fdocs%2Fapi+Object">Object execute(5+0%2Fdocs%2Fapi+Object">Object requester, 1.5.0/docs/api/java/lang/String.html">String serviceName, 1.5.0/docs/api/java/lang/String.html">String methodName,
            5+0%2Fdocs%2Fapi+Object">Object argumentos[], 1.5.0/docs/api/java/lang/String.html">String names[]) throws ServiceManagerException, 1.5.0/docs/api/java/lang/Throwable.html">Throwable;
}