
javax.enterprise.deploy.spi.status.ClientConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-jad-api_1.2_spec Show documentation
Show all versions of jboss-jad-api_1.2_spec Show documentation
The JavaEE Application Deployment 1.2 API classes
package javax.enterprise.deploy.spi.status;
import javax.enterprise.deploy.spi.exceptions.ClientExecuteException;
import java.io.Serializable;
/**
* Installs configures and runs an application client.
*
* @author Adrian Brock
* @version $Revision$
*/
public interface ClientConfiguration extends Serializable
{
// Constants -----------------------------------------------------
// Public --------------------------------------------------------
/**
* Executes the client
*
* @throws ClientExecuteException when the configuration is incomplete
*/
void execute() throws ClientExecuteException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy