You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by we...@apache.org on 2004/07/02 16:35:18 UTC

cvs commit: jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/tools/pamanager/servletcontainer ApplicationServerManager.java

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
   */
  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
   */
  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: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org