package com.tandbergtv.workflow.auth;

import java.util.SortedSet;


/**
 * Returns a list of users that can be resources in the workflow system
 * @author xcargar
 */
public interface IUserProvider {
	/**
	 * Returns a list of users that can be resources in the workflow system
	 * 
	 * @return
	 */
	SortedSet<User> getUsersWithUserTaskPermissions();
}
