Uses of Enum Class
edu.internet2.middleware.grouper.group.TypeOfGroup
Package
Description
The I2MI Grouper project is an open source toolkit for managing groups.
This package contains classes which help query for Groups, Stems, etc
This package contains the data access object interfaces that a DB
layer would have to implement (generally revolving around queries to DB)
This package contains hib3 related data access object implementations
and mappings
-
Uses of TypeOfGroup in edu.internet2.middleware.grouper
Modifier and TypeMethodDescriptionGroup.getTypeOfGroup()
type of group, group or roleGroupSave.getTypeOfGroup()
Modifier and TypeMethodDescriptionGrouperSourceAdapter.typeOfGroups()
type of groups to search onModifier and TypeMethodDescriptionGroupFinder.addTypeOfGroup
(TypeOfGroup typeOfGroup) GroupSave.assignTypeOfGroup
(TypeOfGroup theTypeOfGroup) assign save modeStem.internal_addChildGroup
(String extn, String dExtn, String uuid, TypeOfGroup typeOfGroup) add child group with uuidStem.internal_addChildGroup
(String extn, String dExtn, String uuid, String description, Set<GroupType> types, Map<String, String> attributes, boolean addDefaultGroupPrivileges, TypeOfGroup typeOfGroup, boolean checkSecurity) void
Group.setTypeOfGroup
(TypeOfGroup typeOfGroup1) type of group, group or roleModifier and TypeMethodDescriptionGroupFinder.assignTypeOfGroups
(Set<TypeOfGroup> theTypeOfGroups) GroupFinder.findByApproximateDescriptionSecure
(String description, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupFinder.findByApproximateDisplayExtensionSecure
(String extension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupFinder.findByApproximateDisplayNameSecure
(String displayName, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupFinder.findByApproximateExtensionSecure
(String extension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupFinder.findByDescriptionSecure
(String description, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupFinder.findByDisplayExtensionSecure
(String displayExtension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupFinder.findByDisplayNameSecure
(String displayName, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupFinder.findByExtensionSecure
(String extension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) -
Uses of TypeOfGroup in edu.internet2.middleware.grouper.entity
-
Uses of TypeOfGroup in edu.internet2.middleware.grouper.filter
Modifier and TypeMethodDescriptionGroupNameFilter.getTypeOfGroups()
type of groupGroupsInStemFilter.getTypeOfGroups()
type of groupModifier and TypeMethodDescriptionvoid
GroupNameFilter.setTypeOfGroup
(Set<TypeOfGroup> typeOfGroups1) type of groupvoid
GroupsInStemFilter.setTypeOfGroup
(Set<TypeOfGroup> typeOfGroups1) type of groupModifierConstructorDescriptionGroupNameFilter
(String name, Stem ns, String theSortString, Boolean theAscending, Integer thePageNumber, Integer thePageSize, Set<TypeOfGroup> typeOfGroups1) QueryFilter
that returns groups matching the specified name.GroupNameFilter
(String name, Stem ns, String theSortString, Boolean theAscending, Integer thePageNumber, Integer thePageSize, Set<TypeOfGroup> typeOfGroups1, Boolean enabled1) QueryFilter
that returns groups matching the specified name.GroupsInStemFilter
(String theStemName, Stem.Scope theScope, boolean theFailOnStemNotFound, String theSortString, Boolean theAscending, Integer thePageNumber, Integer thePageSize, Set<TypeOfGroup> typeOfGroups1) QueryFilter
that returns stems matching the specified name value.GroupsInStemFilter
(String theStemName, Stem.Scope theScope, boolean theFailOnStemNotFound, String theSortString, Boolean theAscending, Integer thePageNumber, Integer thePageSize, Set<TypeOfGroup> typeOfGroups1, Boolean enabled1) QueryFilter
that returns stems matching the specified name value. -
Uses of TypeOfGroup in edu.internet2.middleware.grouper.group
Modifier and TypeFieldDescriptionstatic final Set<TypeOfGroup>
TypeOfGroup.ALL
set with group or rolestatic final Set<TypeOfGroup>
TypeOfGroup.ENTITY_SET
set with entitystatic final Set<TypeOfGroup>
TypeOfGroup.GROUP_OR_ROLE_SET
set with group or roleModifier and TypeMethodDescriptionstatic TypeOfGroup
Returns the enum constant of this class with the specified name.static TypeOfGroup
TypeOfGroup.valueOfIgnoreCase
(String string, boolean exceptionOnNull) do a case-insensitive matchingstatic TypeOfGroup[]
TypeOfGroup.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionstatic void
TypeOfGroup.appendHqlQuery
(String groupAlias, Set<TypeOfGroup> typeOfGroups, StringBuilder hql, HqlQuery hqlQuery) append the typeOfGroup part into an hql group query -
Uses of TypeOfGroup in edu.internet2.middleware.grouper.internal.dao
Modifier and TypeMethodDescriptionGroupDAO.getAllGroupsSplitScopeSecure
(String scope, GrouperSession grouperSession, Subject subject, Set<Privilege> privileges, QueryOptions queryOptions, TypeOfGroup typeOfGroup) get all groups secure, split the scope by whitespaceModifier and TypeMethodDescriptionGroupDAO.findAllByApproximateNameSecure
(String name, String scope, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findAllByApproximateNameSecure
(String name, String scope, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups, Boolean enabled) GroupDAO.findByApproximateDescriptionSecure
(String description, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByApproximateDisplayExtensionSecure
(String extension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByApproximateDisplayNameSecure
(String displayName, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByApproximateExtensionSecure
(String extension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByDescriptionSecure
(String description, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByDisplayExtensionSecure
(String displayExtension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByDisplayNameSecure
(String displayName, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByExtensionSecure
(String extension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByName
(String name, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByNameSecure
(String name, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByNameSecure
(String name, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups, Set<Privilege> inPrivSet) GroupDAO.findByNamesSecure
(Collection<String> names, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByUuid
(String uuid, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) GroupDAO.findByUuidSecure
(String uuid, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) find by uuid secureGroupDAO.findByUuidsSecure
(Collection<String> uuids, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) find by uuid secure -
Uses of TypeOfGroup in edu.internet2.middleware.grouper.internal.dao.hib3
Modifier and TypeMethodDescriptionHib3GroupDAO.getAllGroupsSplitScopeSecure
(String scope, GrouperSession grouperSession, Subject subject, Set<Privilege> privileges, QueryOptions queryOptions, TypeOfGroup typeOfGroup) Modifier and TypeMethodDescriptionHib3GroupDAO.findAllByApproximateNameSecure
(String name, String scope, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Implementation Notes.Hib3GroupDAO.findAllByApproximateNameSecure
(String name, String scope, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups, Boolean enabled) Implementation Notes.Hib3GroupDAO.findByApproximateDescriptionSecure
(String description, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByApproximateDisplayExtensionSecure
(String displayExtension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByApproximateDisplayNameSecure
(String displayName, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByApproximateExtensionSecure
(String extension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByDescriptionSecure
(String description, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByDisplayExtensionSecure
(String displayExtension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByDisplayNameSecure
(String displayName, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByExtensionSecure
(String extension, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByName
(String name, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByNameSecure
(String name, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByNameSecure
(String name, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups, Set<Privilege> inPrivSet) Hib3GroupDAO.findByNamesSecure
(Collection<String> names, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByUuid
(String uuid, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByUuidSecure
(String uuid, boolean exceptionIfNotFound, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups) Hib3GroupDAO.findByUuidsSecure
(Collection<String> uuids, QueryOptions queryOptions, Set<TypeOfGroup> typeOfGroups)