blob: 6cdc90f436a85fce711cd52e807916ada9bc4914 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
 *
* Contributors:
* IBM Corporation - Initial API and implementation
**********************************************************************/
package org.eclipse.wst.server.core;
import java.util.List;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.wst.server.core.model.*;
/**
* Class that decides whether to publish or delete a given
* resource on the remote system.
*
* <p>This interface is not intended to be implemented by clients.</p>
*/
public interface IPublishManager {
/**
* Returns the id of this default server.
*
* @return java.lang.String
*/
public String getId();
/**
* Returns a description of this publisher.
*
* @return java.lang.String
*/
public String getDescription();
/**
* Returns the name of this publisher.
*
* @return java.lang.String
*/
public String getName();
/**
* Sets the publish control, used to obtain information about
* the publishing.
*
* Sets the publish state, used to determine the timestamps
* of the last publishing action.
*
* Resolve which resources to publish or delete. To cancel publishing,
* just cancel the progress monitor and return.
*
* @param control org.eclipse.wst.server.model.IPublishControl[]
* @param module org.eclipse.wst.server.core.model.IModule[]
* @param monitor org.eclipse.core.runtime.IProgressMonitor
*/
public void resolve(IPublishControl[] control, IModule[] module, IProgressMonitor monitor);
/**
* Returns the list of remote resources to delete from the
* remote system.
*
* @param module org.eclipse.wst.server.core.model.IModule
* @return java.util.List
*/
public List getResourcesToDelete(IModule module);
/**
* Returns the list of resources to publish to the remote
* system.
*
* @param module org.eclipse.wst.server.core.model.IModule
* @return java.util.List
*/
public List getResourcesToPublish(IModule module);
/**
*
*/
public IPublishManagerDelegate getDelegate();
}