blob: cbac7f3fd31c85b43aedff309403021e140c0cb0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.server.core;
/**
* Listener interface for server changes.
*
* @since 1.0
*/
public interface IServerLifecycleListener {
/**
* A new server has been created.
*
* @param server org.eclipse.wst.server.core.IServer
*/
public void serverAdded(IServer server);
/**
* An existing server has been updated or modified.
*
* @param server org.eclipse.wst.server.core.IServer
*/
public void serverChanged(IServer server);
/**
* A existing server has been removed.
*
* @param server org.eclipse.wst.server.core.IServer
*/
public void serverRemoved(IServer server);
}