blob: c88e5a2a3be43141c34bd9b1b54004399a2785e6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.resource.management;
/**
* @author Roberto E. Escobar
*/
public interface IResourceManager {
public static final int OK = 1;
public static final int FAIL = 2;
public static final int RESOURCE_NOT_FOUND = 3;
/**
* Add listener to list
*
* @param listener
*/
public void addResourceListener(IResourceListener listener);
/**
* Remove listener from list
*
* @param listener
*/
public void removeResourceListener(IResourceListener listener);
/**
* Add a resource provider
*
* @param resourceProvider to add
*/
public void addResourceProvider(IResourceProvider resourceProvider);
/**
* Remove a resource provider
*
* @param resourceProvider to remove
*/
public void removeResourceProvider(IResourceProvider resourceProvider);
/**
* Acquire resource specified by resource locator
*
* @param locator location of the resource needed
* @param options operation options
* @return the resource
*/
public IResource acquire(IResourceLocator locator, Options options) throws Exception;
/**
* Determines if a resource exists for the given locator.
*
* @param locator location of the data to check
*/
public boolean exists(IResourceLocator locator) throws Exception;
/**
* Save input to location specified by resource locator
*
* @param locator location where to store the data
* @param resource to store
* @param options operation options
* @return status
*/
public IResourceLocator save(final IResourceLocator locatorHint, final IResource resource, final Options options) throws Exception;
/**
* Delete resource specified by resource locator
*
* @param locator location of the resource to delete
* @return status
*/
public int delete(IResourceLocator locator) throws Exception;
}