Class GroupServiceImpl

    • Method Detail

      • find

        public GroupService.GroupFinder find​(Expansion... expansions)
        Description copied from interface: GroupService
        Create a GroupFinder for locating groups, the expansions will be applied to each group that matches the finder. No expansions are currently supported on groups. Groups will be retrieved by using the fetch methods on the returned GroupFinder.

        For example, to fetch a group called "developers"

             groupService.find()
             .withName("developers")
             .fetchOneOrNull();
             
         
        Specified by:
        find in interface GroupService
        Returns:
        a groupFinder for locating groups