Author: fhanik Date: Tue Dec 12 18:34:30 2006 New Revision: 486463 URL: http://svn.apache.org/viewvc?view=rev&rev=486463 Log: Remove methods not needed by this interface. not used in any sub implementations
Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/Cluster.java Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/Cluster.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/Cluster.java?view=diff&rev=486463&r1=486462&r2=486463 ============================================================================== --- tomcat/tc6.0.x/trunk/java/org/apache/catalina/Cluster.java (original) +++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/Cluster.java Tue Dec 12 18:34:30 2006 @@ -125,69 +125,4 @@ * throwables will be caught and logged. */ public void backgroundProcess(); - - - /** - * Start an existing web application, attached to the specified context - * path in all the other nodes in the cluster. - * Only starts a web application if it is not running. - * - * @param contextPath The context path of the application to be started - * - * @exception IllegalArgumentException if the specified context path - * is malformed (it must be "" or start with a slash) - * @exception IllegalArgumentException if the specified context path does - * not identify a currently installed web application - * @exception IOException if an input/output error occurs during - * startup - * @deprecated - */ - public void startContext(String contextPath) throws IOException; - - - /** - * Install a new web application, whose web application archive is at the - * specified URL, into this container with the specified context path. - * A context path of "" (the empty string) should be used for the root - * application for this container. Otherwise, the context path must - * start with a slash. - * <p> - * If this application is successfully installed, a ContainerEvent of type - * <code>PRE_INSTALL_EVENT</code> will be sent to registered listeners - * before the associated Context is started, and a ContainerEvent of type - * <code>INSTALL_EVENT</code> will be sent to all registered listeners - * after the associated Context is started, with the newly created - * <code>Context</code> as an argument. - * - * @param contextPath The context path to which this application should - * be installed (must be unique) - * @param war A URL of type "jar:" that points to a WAR file, or type - * "file:" that points to an unpacked directory structure containing - * the web application to be installed - * - * @exception IllegalArgumentException if the specified context path - * is malformed (it must be "" or start with a slash) - * @exception IllegalStateException if the specified context path - * is already attached to an existing web application - * @deprecated - */ - public void installContext(String contextPath, URL war); - - /** - * Stop an existing web application, attached to the specified context - * path. Only stops a web application if it is running. - * - * @param contextPath The context path of the application to be stopped - * - * @exception IllegalArgumentException if the specified context path - * is malformed (it must be "" or start with a slash) - * @exception IllegalArgumentException if the specified context path does - * not identify a currently installed web application - * @exception IOException if an input/output error occurs while stopping - * the web application - * @deprecated - */ - public void stop(String contextPath) throws IOException; - - } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]