Uses of Class
edu.uiuc.ncsa.security.core.state.SKey
-
Packages that use SKey Package Description edu.uiuc.ncsa.security.core.cf edu.uiuc.ncsa.security.core.configuration Sec-Lib's configuration package.edu.uiuc.ncsa.security.core.state -
-
Uses of SKey in edu.uiuc.ncsa.security.core.cf
Methods in edu.uiuc.ncsa.security.core.cf that return types with arguments of type SKey Modifier and Type Method Description protected EnvTable<? extends SKey,? extends EnvEntry>
CFLoader. processEnvDocument(InputStream inputStream)
Process a single env document from any source. -
Uses of SKey in edu.uiuc.ncsa.security.core.configuration
Classes in edu.uiuc.ncsa.security.core.configuration with type parameters of type SKey Modifier and Type Class Description class
EnvStack<T extends EnvTable<? extends SKey,? extends EnvEntry>>
class
EnvTable<K extends SKey,V extends EnvEntry>
Methods in edu.uiuc.ncsa.security.core.configuration that return SKey Modifier and Type Method Description SKey
EnvEntry. getKey()
Constructors in edu.uiuc.ncsa.security.core.configuration with parameters of type SKey Constructor Description EnvEntry(SKey key)
EnvEntry(SKey key, String value)
-
Uses of SKey in edu.uiuc.ncsa.security.core.state
Classes in edu.uiuc.ncsa.security.core.state with type parameters of type SKey Modifier and Type Class Description class
SStack<V extends STable<? extends SKey,? extends SThing>>
A stateful stack of things, such as functions.class
STable<K extends SKey,V extends SThing>
A symbol table.Methods in edu.uiuc.ncsa.security.core.state that return SKey Modifier and Type Method Description SKey
SThing. getKey()
Methods in edu.uiuc.ncsa.security.core.state that return types with arguments of type SKey Modifier and Type Method Description List<SKey>
SStack. allKeys()
Returns the a list of keys (including redundancies) for this stack.STable<? extends SKey,? extends SThing>
SStack. getLocal()
Get the local table for this stack.STable<? extends SKey,? extends SThing>
SStack. getRoot()
Since all new tables are added at 0, the initial one, called the root, is last.List<STable<? extends SKey,? extends SThing>>
SStack. getStack()
Set<SKey>
SStack. keySet()
Returns the unique set of keys over the tables.STable<SKey,SThing>
SStack. peek()
STable<SKey,SThing>
SStack. pop()
Remove the most local table.Methods in edu.uiuc.ncsa.security.core.state with parameters of type SKey Modifier and Type Method Description boolean
SStack. containsKey(SKey key)
boolean
SStack. containsKey(SKey key, int startTableIndex)
Check that a specific key is in a table starting at the index.SThing
SStack. get(SKey key)
Get the value from someplace in the stack.SThing
SStack. localGet(SKey key)
Only returns a non-null element if it is defined in the local (index 0) table.boolean
SStack. localHas(SKey xkey)
void
SStack. localRemove(SKey key)
Removes only the most local entry.SThing
SStack. nonlocalGet(SKey key)
searches for the entry every place except the most local state.SThing
SStack. put(SKey sKey, SThing xThing)
void
SStack. remove(SKey key)
Removes all references from all tables.Method parameters in edu.uiuc.ncsa.security.core.state with type arguments of type SKey Modifier and Type Method Description void
SStack. push(STable<? extends SKey,? extends SThing> sTable)
void
SStack. setStack(List<STable<? extends SKey,? extends SThing>> stack)
-