|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectedu.internet2.middleware.grouper.StemFinder
public class StemFinder
Find stems within the Groups Registry.
| Constructor Summary | |
|---|---|
StemFinder()
|
|
| Method Summary | |
|---|---|
static Stem |
findByAlternateName(GrouperSession s,
java.lang.String name,
boolean exceptionOnNotFound,
QueryOptions queryOptions)
Find stem by its alternate name. |
static Stem |
findByCurrentName(GrouperSession s,
java.lang.String name,
boolean exceptionOnNotFound,
QueryOptions queryOptions)
Find stem by its current name. |
static Stem |
findByName(GrouperSession s,
java.lang.String name)
Deprecated. see overload |
static Stem |
findByName(GrouperSession s,
java.lang.String name,
boolean exceptionOnNotFound)
Find stem by name. |
static Stem |
findByName(GrouperSession s,
java.lang.String name,
boolean exceptionOnNotFound,
QueryOptions queryOptions)
Find stem by name. |
static Stem |
findByUuid(GrouperSession s,
java.lang.String uuid)
Deprecated. see overload |
static Stem |
findByUuid(GrouperSession s,
java.lang.String uuid,
boolean exceptionIfNull)
Get stem by uuid. |
static Stem |
findByUuid(GrouperSession s,
java.lang.String uuid,
boolean exceptionIfNull,
QueryOptions queryOptions)
Get stem by uuid. |
static java.util.Set<Stem> |
findByUuids(GrouperSession s,
java.util.Collection<java.lang.String> uuids,
QueryOptions queryOptions)
Get stems by uuids. |
static Stem |
findRootStem(GrouperSession s)
Find root stem of the Groups Registry. |
static java.util.Set |
internal_findAllByApproximateDisplayExtension(GrouperSession s,
java.lang.String val)
|
static java.util.Set |
internal_findAllByApproximateDisplayName(GrouperSession s,
java.lang.String val)
|
static java.util.Set |
internal_findAllByApproximateExtension(GrouperSession s,
java.lang.String val)
|
static java.util.Set |
internal_findAllByApproximateName(GrouperSession s,
java.lang.String val)
|
static java.util.Set |
internal_findAllByApproximateNameAny(GrouperSession s,
java.lang.String val)
|
static java.util.Set |
internal_findAllByCreatedAfter(GrouperSession s,
java.util.Date d)
|
static java.util.Set |
internal_findAllByCreatedBefore(GrouperSession s,
java.util.Date d)
|
static Stem |
internal_findByName(java.lang.String name,
boolean exceptionIfNull)
|
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public StemFinder()
| Method Detail |
|---|
@Deprecated
public static Stem findByName(GrouperSession s,
java.lang.String name)
throws StemNotFoundException
try {
Stem stem = StemFinder.findByName(s, name);
}
catch (StemNotFoundException e) {
// Stem not found
}
s - Search within this GrouperSession contextname - Find stem with this name.
Stem object
StemNotFoundException
public static Stem findByName(GrouperSession s,
java.lang.String name,
boolean exceptionOnNotFound)
throws StemNotFoundException
Stem stem = StemFinder.findByName(s, name, false);
s - Search within this GrouperSession contextname - Find stem with this name.exceptionOnNotFound -
Stem object
StemNotFoundException
public static Stem findByName(GrouperSession s,
java.lang.String name,
boolean exceptionOnNotFound,
QueryOptions queryOptions)
throws StemNotFoundException
Stem stem = StemFinder.findByName(s, name, false);
s - Search within this GrouperSession contextname - Find stem with this name.exceptionOnNotFound - queryOptions -
Stem object
StemNotFoundException
public static Stem findByAlternateName(GrouperSession s,
java.lang.String name,
boolean exceptionOnNotFound,
QueryOptions queryOptions)
throws StemNotFoundException
Stem stem = StemFinder.findByAlternateName(s, name, false);
s - Search within this GrouperSession contextname - Find stem with this alternate name.exceptionOnNotFound - queryOptions -
Stem object
StemNotFoundException
public static Stem findByCurrentName(GrouperSession s,
java.lang.String name,
boolean exceptionOnNotFound,
QueryOptions queryOptions)
throws StemNotFoundException
Stem stem = StemFinder.findByCurrentName(s, name, false);
s - Search within this GrouperSession contextname - Find stem with this name.exceptionOnNotFound - queryOptions -
Stem object
StemNotFoundException
public static Stem findRootStem(GrouperSession s)
throws StemNotFoundException
// Find the root stem. Stem rootStem = StemFinder.findRootStem(s);
s - Search within this GrouperSession context
Stem object
GrouperException
StemNotFoundException
@Deprecated
public static Stem findByUuid(GrouperSession s,
java.lang.String uuid)
throws StemNotFoundException
// Get the specified stem by uuid.
try {
Stem stem = StemFinder.findByUuid(s, uuid);
}
catch (StemNotFoundException e) {
// Stem not found
}
s - Search within this GrouperSession contextuuid - Get stem with this UUID.
Stem object
StemNotFoundException
public static Stem findByUuid(GrouperSession s,
java.lang.String uuid,
boolean exceptionIfNull)
throws StemNotFoundException
// Get the specified stem by uuid.
try {
Stem stem = StemFinder.findByUuid(s, uuid);
}
catch (StemNotFoundException e) {
// Stem not found
}
s - Search within this GrouperSession contextuuid - Get stem with this UUID.exceptionIfNull -
Stem object
StemNotFoundException
public static Stem findByUuid(GrouperSession s,
java.lang.String uuid,
boolean exceptionIfNull,
QueryOptions queryOptions)
throws StemNotFoundException
// Get the specified stem by uuid.
try {
Stem stem = StemFinder.findByUuid(s, uuid);
}
catch (StemNotFoundException e) {
// Stem not found
}
s - Search within this GrouperSession contextuuid - Get stem with this UUID.exceptionIfNull - queryOptions -
Stem object
StemNotFoundException
public static java.util.Set<Stem> findByUuids(GrouperSession s,
java.util.Collection<java.lang.String> uuids,
QueryOptions queryOptions)
throws StemNotFoundException
// Get the specified stems by uuids.
try {
Set stems = StemFinder.findByUuids(s, uuids, null);
}
catch (StemNotFoundException e) {
// Stem not found
}
s - Search within this GrouperSession contextuuid - Get stem with this UUID.exceptionIfNull - queryOptions -
Stem object
StemNotFoundException
public static java.util.Set internal_findAllByApproximateDisplayExtension(GrouperSession s,
java.lang.String val)
throws QueryException
QueryException
public static java.util.Set internal_findAllByApproximateDisplayName(GrouperSession s,
java.lang.String val)
throws QueryException
QueryException
public static java.util.Set internal_findAllByApproximateExtension(GrouperSession s,
java.lang.String val)
throws QueryException
QueryException
public static java.util.Set internal_findAllByApproximateName(GrouperSession s,
java.lang.String val)
throws QueryException
QueryException
public static java.util.Set internal_findAllByApproximateNameAny(GrouperSession s,
java.lang.String val)
throws QueryException
QueryException
public static java.util.Set internal_findAllByCreatedAfter(GrouperSession s,
java.util.Date d)
throws QueryException
QueryException
public static java.util.Set internal_findAllByCreatedBefore(GrouperSession s,
java.util.Date d)
throws QueryException
QueryException
public static Stem internal_findByName(java.lang.String name,
boolean exceptionIfNull)
throws StemNotFoundException
name - exceptionIfNull -
StemNotFoundException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||