org.drools.userprofile.DroolsTaskUserProfile Maven / Gradle / Ivy
package org.drools.userprofile;
import java.util.List;
public class DroolsTaskUserProfile extends UserProfile {
public String getDisplayName(OrganizationalEntity entity){
return null;
}
public List getMembersForGroup(Group group){
return null;
}
public boolean hasEmail(Group group) {
return false;
}
public String getEmailForEntity(OrganizationalEntity entity) {
return null;
}
public String getLanguageForEntity(OrganizationalEntity entity) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy