package eu.dnetlib.data.collective.manager.profile;

import eu.dnetlib.data.collective.manager.scheduling.profile.SchedulingConfiguration;



/**
 * @author jochen
 *
 */
public interface IInstance {

	/**
	 * get the scheduling configuration
	 * @return the scheduling configuration
	 */
	SchedulingConfiguration getScheduling();
	
	/**
	 * get the resource id of the instance
	 * @return the resource id
	 */
	String getResourceId();
}
