All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.sekmi.li2b2.api.pm.ProjectManager Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
package de.sekmi.li2b2.api.pm;

import java.util.List;

/**
 * User authorisation and association of projects
 * 
 * @author R.W.Majeed
 *
 */
public interface ProjectManager {

	User getUserById(String userId);
	Project getProjectById(String projectId);
	User addUser(String userId);
	Project addProject(String id, String name);
	List getUsers();
	List getProjects();
	// TODO exceptions for failure or if user/project does not exist
	void deleteUser(String userId);
	void deleteProject(String projectId);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy