blob: 8fc9f002486844c8c64039ce2b6d0ea31418b203 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 SAP AG
* 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:
* SAP AG - initial contribution
*******************************************************************************/
package org.eclipse.virgo.nano.deployer;
import java.io.File;
import java.net.URI;
import java.util.List;
import org.eclipse.virgo.nano.deployer.api.core.DeploymentIdentity;
import org.osgi.framework.Bundle;
public interface SimpleDeployer {
public final int HOT_DEPLOYED_ARTIFACTS_START_LEVEL = 5;
public boolean deploy(URI path);
public boolean install(URI path);
public boolean start(URI path);
public boolean update(URI path);
public boolean undeploy(Bundle bundle);
public boolean canServeFileType(String fileType);
public boolean isDeployed(URI path);
public boolean isOfflineUpdated(URI path);
public DeploymentIdentity getDeploymentIdentity(URI path);
public List<String> getAcceptedFileTypes();
public boolean isDeployFileValid(File file);
}