com.descope.sdk.mgmt.GroupService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java library used to integrate with Descope.
The newest version!
package com.descope.sdk.mgmt;
import com.descope.exception.DescopeException;
import com.descope.model.group.Group;
import java.util.List;
public interface GroupService {
List loadAllGroups(String tenantID) throws DescopeException;
List loadAllGroupsForMembers(String tenantID, List userIDs, List loginIDs)
throws DescopeException;
List loadAllGroupMembers(String tenantID, String groupID) throws DescopeException;
}