blob: cb0070f639852abc91a81f3d59dfe78fc9a0898e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 University of Illinois 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:
* Albert L. Rossi - design and implementation
******************************************************************************/
package org.eclipse.ptp.rm.jaxb.core;
import org.eclipse.ptp.rm.jaxb.core.rm.JAXBResourceManagerControl;
import org.eclipse.ptp.rmsystem.IResourceManager;
/**
* JAXB specific resource manager.
*
* @author arossi
*
*/
public interface IJAXBResourceManager extends IResourceManager {
/**
* @return the control sub-manager.
*/
JAXBResourceManagerControl getControl();
/**
* @return the associated service provider (configuration)
*/
IJAXBResourceManagerConfiguration getJAXBConfiguration();
}