Begin forwarded message:
From: [EMAIL PROTECTED]
Date: July 2, 2004 7:35:18 AM PDT
To: [EMAIL PROTECTED]
Subject: cvs commit: jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/tools/ pamanager/servletcontainer ApplicationServerManager.java
Reply-To: "Jetspeed Developers List" <[EMAIL PROTECTED]>
weaver 2004/07/02 07:35:18
Added: portal/src/java/org/apache/jetspeed/tools/pamanager/servletcontainer
ApplicationServerManager.java
Log:
Added interface that represents the management functions of an app server
Revision Changes Path
1.1 jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/tools/ pamanager/servletcontainer/ApplicationServerManager.java
Index: ApplicationServerManager.java =================================================================== /* * Created on Jun 30, 2004 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Generation - Code and Comments */
Please use the Apache license
package org.apache.jetspeed.tools.pamanager.servletcontainer;
import java.io.IOException; import java.io.InputStream;
import org.apache.commons.httpclient.HttpException;
/** * @author scott * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Generation - Code and Comments */
Please use the Apache license
public interface ApplicationServerManager { String start( String appPath ) throws HttpException, IOException;
String stop( String appPath ) throws HttpException, IOException;
String reload( String appPath ) throws HttpException, IOException;
String remove( String appPath ) throws HttpException, IOException;
String install( String warPath, String contexPath ) throws HttpException, IOException;
String deploy( String appPath, InputStream is, int size ) throws HttpException, IOException;
/** * @return */ int getHostPort();
/** * @return */ String getHostUrl();
boolean isConnected(); }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
