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:[EMAIL PROTECTED]">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 [EMAIL PROTECTED] DeploymentEvent} to dispatch.
*/
void dispatch( DeploymentEvent event );
/**
*
* <p>
* redeployChangedArtifacts
* </p>
* Fires all redeployment events registered to this DeploymentManager.
*
*/
void fireReDeploymentEvent();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]