Uses of Class
edu.uiuc.ncsa.security.core.cf.CFNode
-
Packages that use CFNode Package Description edu.uiuc.ncsa.security.core.cf -
-
Uses of CFNode in edu.uiuc.ncsa.security.core.cf
Methods in edu.uiuc.ncsa.security.core.cf that return CFNode Modifier and Type Method Description static CFNode
CFMultiConfigurations. getAllNodes(CFNode node, String name)
Use this to get all the named nodes off the list.static CFNode
CFMultiConfigurations. getChildren(CFNode node, String name)
The contract is that this will return all the named children nodes of the given node in order So if the argument is [node0,node1,...] Then result is all the children of node0, followed by all the children of node1,...CFNode
CFNode. getChildren(String name)
The contract is that this will return all the named children nodes of the given node in order So if the argument is [node0,node1,...] Then result is all the children of node0, followed by all the children of node1,...static CFNode
CFMultiConfigurations. getFirstNode(CFNode node, String name)
Return the first named child configuration node of the given node or null if there is no such named child.CFNode
CFNode. getFirstNode(String name)
Return the first named child configuration node of the given node or null if there is no such named child.CFNode
CFBundle. getNamedConfig(String nodeName)
Get the configuration with the given name.CFNode
CFMultiConfigurations. getNamedConfig(String cfgName)
This will return all theNode
s with the given name.CFNode
CFNode. getNodes(String name)
Use this to get all the named nodes off the list.Methods in edu.uiuc.ncsa.security.core.cf that return types with arguments of type CFNode Modifier and Type Method Description List<CFNode>
CFBundle. getAllNodes()
Get all of the nodes in the root with the tag name set inCFBundle.getTagName()
.List<CFNode>
CFBundle. getAllNodes(String tagName)
Get all the nodes in the root for the given tag name.Methods in edu.uiuc.ncsa.security.core.cf with parameters of type CFNode Modifier and Type Method Description static CFNode
CFMultiConfigurations. getAllNodes(CFNode node, String name)
Use this to get all the named nodes off the list.static String
CFMultiConfigurations. getAttributeInNode(CFNode node, String nodeName, String attributeName)
Looks for the given node and returns the first attribute.static CFNode
CFMultiConfigurations. getChildren(CFNode node, String name)
The contract is that this will return all the named children nodes of the given node in order So if the argument is [node0,node1,...] Then result is all the children of node0, followed by all the children of node1,...static String
CFMultiConfigurations. getFirstAttribute(CFNode node, String name)
Get the very first attribute with the given name found in the nodes.static boolean
CFMultiConfigurations. getFirstBooleanValue(CFNode node, String attrib)
Get the first attribute and return a boolean.static boolean
CFMultiConfigurations. getFirstBooleanValue(CFNode node, String attrib, boolean defaultValue)
Finds the first attribute with the given name and then converts to boolean.static long
CFMultiConfigurations. getFirstLongValue(CFNode node, String attrib)
static long
CFMultiConfigurations. getFirstLongValue(CFNode node, String attrib, long defaultValue)
static CFNode
CFMultiConfigurations. getFirstNode(CFNode node, String name)
Return the first named child configuration node of the given node or null if there is no such named child.static String
CFMultiConfigurations. getNodeContents(CFNode node, String name)
Convenience method for getting the value of a single node, i.e.static String
CFMultiConfigurations. getNodeContents(CFNode node, String name, String defaultValue)
Convenience method for getting the value of a single node, i.e.
-