Uses of Class
edu.uiuc.ncsa.security.core.cf.CFNode
- 
Packages that use CFNode Package Description edu.uiuc.ncsa.sas.loader edu.uiuc.ncsa.sas.storage edu.uiuc.ncsa.security.core.cf edu.uiuc.ncsa.security.core.configuration.provider Machinery for getting a configuration.edu.uiuc.ncsa.security.core.util edu.uiuc.ncsa.security.servlet edu.uiuc.ncsa.security.servlet.mail This package is used for adding email notification support to Tomcat servlets.edu.uiuc.ncsa.security.storage edu.uiuc.ncsa.security.storage.monitored Utilities and classes for working with objects that are sent to/retrieved from aStore.edu.uiuc.ncsa.security.storage.monitored.upkeep edu.uiuc.ncsa.security.storage.sql Classes that setup a specific type of correspondence between java objects and rows of an SQL table.edu.uiuc.ncsa.security.util.cli.editing edu.uiuc.ncsa.security.util.mail A simple mail system.edu.uiuc.ncsa.security.util.ssl Package to add basic and easy SSL support.
- 
- 
Uses of CFNode in edu.uiuc.ncsa.sas.loaderMethods in edu.uiuc.ncsa.sas.loader that return CFNode Modifier and Type Method Description protected CFNodeSASBootstrapper. getCFNode(javax.servlet.ServletContext servletContext)Methods in edu.uiuc.ncsa.sas.loader with parameters of type CFNode Modifier and Type Method Description ConfigurationLoaderSASBootstrapper. getConfigurationLoader(CFNode node)Constructors in edu.uiuc.ncsa.sas.loader with parameters of type CFNode Constructor Description ClientFSStoreProvider(CFNode config, MapConverter converter, javax.inject.Provider<? extends SASClient> clientProvider)SASCFConfigurationLoader(CFNode node)SASCFConfigurationLoader(CFNode node, MyLoggingFacade logger)
- 
Uses of CFNode in edu.uiuc.ncsa.sas.storageConstructors in edu.uiuc.ncsa.sas.storage with parameters of type CFNode Constructor Description SASClientStoreProvider(CFNode config, boolean disableDefaultStore, MyLoggingFacade logger, String type, String target, IdentifiableProvider<? extends SASClient> clientProvider)
- 
Uses of CFNode in edu.uiuc.ncsa.security.core.cfMethods in edu.uiuc.ncsa.security.core.cf that return CFNode Modifier and Type Method Description static CFNodeCFMultiConfigurations. getAllNodes(CFNode node, String name)Use this to get all the named nodes off the list.CFNodeCFNode. getFirstChild(String name)Convenience method to get the zero-th node or null if there is none.static CFNodeCFMultiConfigurations. 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.CFNodeCFNode. getFirstNode(String name)Return the first named child configuration node of the given node or null if there is no such named child.CFNodeCFBundle. getNamedConfig(String nodeName)Get the configuration with the given name.CFNodeCFMultiConfigurations. getNamedConfig(String cfgName)This will return all theNodes with the given name.CFNodeCFNode. getNodes(String name)Use this to get all the named nodes off the list.CFNodeCFNode. getParent()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.static List<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,...List<CFNode>CFNode. getChildren()Get non-text (so type is text or comment) child nodes.List<CFNode>CFNode. getChildren(boolean nonTextOnly)Return children with possible filtering for text nodes.List<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,...Methods in edu.uiuc.ncsa.security.core.cf with parameters of type CFNode Modifier and Type Method Description static CFNodeCFMultiConfigurations. getAllNodes(CFNode node, String name)Use this to get all the named nodes off the list.static StringCFMultiConfigurations. getAttributeInNode(CFNode node, String nodeName, String attributeName)Looks for the given node and returns the first attribute.static List<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 StringCFMultiConfigurations. getFirstAttribute(CFNode node, String name)Get the very first attribute with the given name found in the nodes.static booleanCFMultiConfigurations. getFirstBooleanValue(CFNode node, String attrib)Get the first attribute and return a boolean.static booleanCFMultiConfigurations. getFirstBooleanValue(CFNode node, String attrib, boolean defaultValue)Finds the first attribute with the given name and then converts to boolean.static longCFMultiConfigurations. getFirstLongValue(CFNode node, String attrib)static longCFMultiConfigurations. getFirstLongValue(CFNode node, String attrib, long defaultValue)static CFNodeCFMultiConfigurations. 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 StringCFMultiConfigurations. getNodeContents(CFNode node, String name)Convenience method for getting the value of a single node, i.e.static StringCFMultiConfigurations. getNodeContents(CFNode node, String name, String defaultValue)Convenience method for getting the value of a single node, i.e.static StringCFMultiConfigurations. getNodeValue(CFNode node, String name)Synonym firCFMultiConfigurations.getNodeContents(CFNode, String)for backwards compatibilitystatic StringCFMultiConfigurations. getNodeValue(CFNode node, String name, String defaultValue)Synonym forCFMultiConfigurations.getNodeContents(CFNode, String, String)for backwards compatility.
- 
Uses of CFNode in edu.uiuc.ncsa.security.core.configuration.providerMethods in edu.uiuc.ncsa.security.core.configuration.provider that return CFNode Modifier and Type Method Description CFNodeCfgEvent. getCFNode()CFNodeHierarchicalConfigProvider. getCFNode()CFNodeTypedProvider. getParentCFNode()Methods in edu.uiuc.ncsa.security.core.configuration.provider with parameters of type CFNode Modifier and Type Method Description voidCfgEvent. setCFNode(CFNode cfNode)voidHierarchicalConfigProvider. setCFNode(CFNode cfNode)voidTypedProvider. setParentCFNode(CFNode parentCFNode)Constructors in edu.uiuc.ncsa.security.core.configuration.provider with parameters of type CFNode Constructor Description CfgEvent(Object source, CFNode config)HierarchicalConfigProvider(CFNode cfNode)MultiTypeProvider(CFNode config, boolean disableDefaultStore, MyLoggingFacade logger, String type, String target)TypedProvider(CFNode cfNode, String type, String target)
- 
Uses of CFNode in edu.uiuc.ncsa.security.core.utilFields in edu.uiuc.ncsa.security.core.util declared as CFNode Modifier and Type Field Description protected CFNodeCFLoggingConfigLoader. cnMethods in edu.uiuc.ncsa.security.core.util with parameters of type CFNode Modifier and Type Method Description protected voidLoggerProvider. setup(CFNode cfNode)Constructors in edu.uiuc.ncsa.security.core.util with parameters of type CFNode Constructor Description CFLoggingConfigLoader(CFNode node)CFLoggingConfigLoader(CFNode node, MyLoggingFacade logger)CFLoggingConfigLoader(String defaultFile, String defaultName, CFNode node, MyLoggingFacade logger)LoggerProvider(CFNode cfNode)
- 
Uses of CFNode in edu.uiuc.ncsa.security.servletMethods in edu.uiuc.ncsa.security.servlet that return CFNode Modifier and Type Method Description static CFNodeServletXMLConfigUtil. findCFConfigurationNode(javax.servlet.ServletContext servletContext, String configFileKey, String configName, String topNodeTag)The contract is that any file in the servlet context if absolute is a file on the system and if relative is loaded as a resource.Methods in edu.uiuc.ncsa.security.servlet with parameters of type CFNode Modifier and Type Method Description abstract ConfigurationLoaderBootstrapper. getConfigurationLoader(CFNode node)
- 
Uses of CFNode in edu.uiuc.ncsa.security.servlet.mailConstructors in edu.uiuc.ncsa.security.servlet.mail with parameters of type CFNode Constructor Description ServletMailUtilProvider(CFNode config)
- 
Uses of CFNode in edu.uiuc.ncsa.security.storageMethods in edu.uiuc.ncsa.security.storage with parameters of type CFNode Modifier and Type Method Description voidAbstractUpkeepStoreProvider. setCFNode(CFNode cfNode)Constructors in edu.uiuc.ncsa.security.storage with parameters of type CFNode Constructor Description AbstractUpkeepStoreProvider(CFNode cfNode, String type, String target)CFDBConfigLoader(CFNode node)Constructor to use default logging.CFDBConfigLoader(CFNode node, MyLoggingFacade logger)FSProvider(CFNode config, String type, String target, MapConverter converter)
- 
Uses of CFNode in edu.uiuc.ncsa.security.storage.monitoredConstructors in edu.uiuc.ncsa.security.storage.monitored with parameters of type CFNode Constructor Description MonitoredMultiTypeProvider(CFNode config, boolean disableDefaultStore, MyLoggingFacade logger, String type, String target)
- 
Uses of CFNode in edu.uiuc.ncsa.security.storage.monitored.upkeepMethods in edu.uiuc.ncsa.security.storage.monitored.upkeep with parameters of type CFNode Modifier and Type Method Description protected static RuleEntryUpkeepConfigUtils. createRuleEntry(CFNode ruleEntryNode)protected static BooleanUpkeepConfigUtils. doSkipCollateral(CFNode node)protected static BooleanUpkeepConfigUtils. doSkipVersions(CFNode node)static Collection<LocalTime>UpkeepConfigUtils. getAlarms(CFNode node, String tag)static UpkeepConfigurationUpkeepConfigUtils. processUpkeep(CFNode upkeepNode)Port to use CFNode
- 
Uses of CFNode in edu.uiuc.ncsa.security.storage.sqlConstructors in edu.uiuc.ncsa.security.storage.sql with parameters of type CFNode Constructor Description SQLStoreProvider(CFNode config, ConnectionPoolProvider<? extends ConnectionPool> cpp, String type, String target, MapConverter converter)SQLStoreProvider(CFNode config, ConnectionPoolProvider<? extends ConnectionPool> cpp, String type, String target, String tablename, MapConverter converter)
- 
Uses of CFNode in edu.uiuc.ncsa.security.util.cli.editingMethods in edu.uiuc.ncsa.security.util.cli.editing with parameters of type CFNode Modifier and Type Method Description static EditorsEditorUtils. getEditors(CFNode cfNode)
- 
Uses of CFNode in edu.uiuc.ncsa.security.util.mailMethods in edu.uiuc.ncsa.security.util.mail with parameters of type CFNode Modifier and Type Method Description protected Map<String,Object>MailUtilProvider. getRawConfig(CFNode node)protected MailEnvironmentMailUtilProvider. oldME(CFNode node)Constructors in edu.uiuc.ncsa.security.util.mail with parameters of type CFNode Constructor Description MailUtilProvider(CFNode config)
- 
Uses of CFNode in edu.uiuc.ncsa.security.util.sslMethods in edu.uiuc.ncsa.security.util.ssl with parameters of type CFNode Modifier and Type Method Description protected static SSLConfigurationSSLConfigurationUtil. getNEWSSLConfiguration(MyLoggingFacade logger, CFNode node)static SSLConfigurationSSLConfigurationUtil. getSSLConfiguration(MyLoggingFacade logger, CFNode node)UsesCFNodeand n longer supported ancient and deprecated old SSL keystore configuration.
 
-