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

org.drools.userprofile.UserProfileRepository Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.userprofile;

import java.util.List;

public interface UserProfileRepository {
	UserProfile getUserProfile(String userName);
	void setUserProfile(UserProfile info);
	
	List getUsers();
	String[] getUserIds();
	List getGroups();
	String[] getGroupIds();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy