org.drools.userprofile.UserProfileRepository Maven / Gradle / Ivy
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