ClientConfigurationImpl.java |
/** * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.deployment.spi.status; import javax.enterprise.deploy.spi.exceptions.ClientExecuteException; import javax.enterprise.deploy.spi.status.ClientConfiguration; // $Id: ClientConfigurationImpl.java,v 1.1.1.1 2004/07/10 13:25:46 tdiesler Exp $ /** * The ClientConfiguration object installs, configures and executes an Application Client. * This class resolves the settings for installing and running the application client. * * @author thomas.diesler@jboss.org * @version $Revision: 1.1.1.1 $ */ public class ClientConfigurationImpl implements ClientConfiguration { /** * Executes the client * * @throws javax.enterprise.deploy.spi.exceptions.ClientExecuteException * when the configuration is incomplete */ public void execute() throws ClientExecuteException { // [todo] implement method } }
ClientConfigurationImpl.java |