KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > enterprise > deploy > spi > status > JBoss30ClientConfiguration


1 package org.jboss.enterprise.deploy.spi.status;
2
3 import java.io.Serializable JavaDoc;
4 import javax.enterprise.deploy.spi.exceptions.ClientExecuteException JavaDoc;
5 import javax.enterprise.deploy.spi.status.ClientConfiguration JavaDoc;
6
7 /**
8  * The ClientConfiguration object configures an Application Client for execution by a deployment tool. This class should resolve the settings for installing and
9  * running the application client.
10  *
11  * @author letiembl
12  * @created 15 avril 2002
13  */

14 /**
15  * The ClientConfiguration object installs, configures and executes an Application Client. This class resolves the settings for installing and running the
16  * application client.
17  *
18  * @author letiembl
19  * @created 15 avril 2002
20  */

21 public class JBoss30ClientConfiguration implements ClientConfiguration JavaDoc
22 {
23    /**
24     * This method performs an exec and starts the application client running in another process.
25     *
26     * @throws ClientExecuteException when the configuration is incomplete.
27     */

28    public void execute() throws ClientExecuteException JavaDoc { }
29 }
30
31
Popular Tags