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:06:21 UTC

cvs commit: jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/deployment DeploymentManager.java

weaver      2004/07/02 07:06:21

  Added:       portal/src/java/org/apache/jetspeed/deployment
                        DeploymentManager.java
  Log:
  
  
  Revision  Changes    Path
  1.1                  jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/deployment/DeploymentManager.java
  
  Index: DeploymentManager.java
  ===================================================================
  /*
   * Copyright 2000-2001,2004 The Apache Software Foundation.
   * 
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   * 
   *      http://www.apache.org/licenses/LICENSE-2.0
   * 
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  package org.apache.jetspeed.deployment;
  
  
  /**
   * @author <a href="mailto:weaver@apache.org">Scott T. Weaver</a>
   * 
   * Interface that provides for firing and dispatching deployment realted events.
   *
   */
  public interface DeploymentManager
  {
      /**
       * 
       * <p>
       * fireDeploymentEvent
       * </p>
       * Fires all deployment events registered to this DeploymentManager.
       *
       */
      void fireDeploymentEvent();
      
      /**
       * 
       * <p>
       * fireUndeploymentEvent
       * </p>
       * Fires all undeployment events registered to this DeploymentManager.
       *
       */
      void fireUndeploymentEvent();
  
      /**
       * 
       * <p>
       * dispatch
       * </p>
       * 
       * dispatches the DeploymentEvent to all registered deployment event listeners.
       *
       * @param event {@link DeploymentEvent} to dispatch.
       */
      void dispatch( DeploymentEvent event );
  
      /**
       * 
       * <p>
       * redeployChangedArtifacts
       * </p>
       * Fires all redeployment events registered to this DeploymentManager.
       *
       */
      void fireReDeploymentEvent();
  }
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org