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

com.descope.sdk.mgmt.GroupService Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy