/** * Copyright (C) 2008-2010, Squale Project - http://www.squale.org * * This file is part of Squale. * * Squale 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 3 of the * License, or any later version. * * Squale 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 General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Squale. If not, see <http://www.gnu.org/licenses/>. */ package org.squale.jraf.spi.accessdelegate; import org.squale.jraf.commons.exception.JrafEnterpriseException; import org.squale.jraf.spi.provider.IProvider; /** * Interface obligatoire pour les classes applicationComponents. * @author Courtial */ public interface IApplicationComponent extends IProvider { /** * Retourne le nom de l'application component * @return String le nom du component. */ public String getApplicationComponent(); /** * Fixe le nom de l'application component * @param applicationComponent nom de l'application component */ public void setApplicationComponent(String applicationComponent); /** * Retourne le provider access delegate * @return provider access delegate */ public IAccessDelegateProvider getAccessDelegateProvider(); /** * Fixe le provider access delegate * @param adp access delegate provider */ public void setAccessDelegateProvider(IAccessDelegateProvider adp); /** * Appel d'un component sans param�tre. * @param componentname * @return * @throws JrafEnterpriseException */ Object execute(String componentname) throws JrafEnterpriseException; /** * Appel d'un component ayant une liste de parametre sous * la forme d'un tableau d'objet. * @param componentname * @param paramIn * @return * @throws JrafEnterpriseException */ Object execute(String componentname, Object[] paramIn) throws JrafEnterpriseException; }