Uses of Class
com.ca.jcs.ImplBundle

Packages that use ImplBundle
com.ca.jcs Contains all classes making up the implementation of CA Java Connector Server ("Java CS" or "JCS"), which supports connectors which take LDAP traffic in at the top level and convert it into the native language of the managed system with which they communicate. 
com.ca.jcs.meta Contains components which are metadata driven or assist in the condensing of information derived from metadata to allow efficient processing. 
 

Uses of ImplBundle in com.ca.jcs
 

Methods in com.ca.jcs that return ImplBundle
 ImplBundle ConnectorType.getImplBundle()
          Returns implementation bundle for the this connector type, usually configured from /conf/connector.xml using Spring XML.
 ImplBundle ConnectorFactory.getImplBundleFromConnectorTypeName(String connTypeName)
           
 ImplBundle ConnectorFactory.getImplBundleFromName(String name)
           
 ImplBundle ConnectorFactory.getImplBundleFromObjectClass(String objectClass)
           
 

Methods in com.ca.jcs with parameters of type ImplBundle
 boolean ConnectorFactory.isAllowMetadataModify(ImplBundle implBundle)
          To determine if the metadata files (eTMetadata and eTOpbindingMetadata) are allowed to modify based on the settings in isAllowMetadataModifyGlobally defined in server_jcs.xml and isAllowMetadataModify in connector.xml.
 void ConnectorType.setImplBundle(ImplBundle bundle)
           
 

Constructors in com.ca.jcs with parameters of type ImplBundle
ConnectorType(String type, ImplBundle bundle)
           
 

Constructor parameters in com.ca.jcs with type arguments of type ImplBundle
ImplBundle(Collection<ImplBundle> bundles)
          Deprecated. 
 

Uses of ImplBundle in com.ca.jcs.meta
 

Methods in com.ca.jcs.meta that return ImplBundle
 ImplBundle MetaConnectorFactory.createImplBundle(String connectorXML)
          Dynamically create a bundle from connector.xml content and register it for use
 ImplBundle MetaConnectorFactory.createImplBundle(String connTypeName, Attributes attrs)
          Dynamically create a bundle for an endpoint type from connector.xml content in metadata if present
 ImplBundle MetaConnectorFactory.findImplBundle(String connTypeName, Attributes attrs)
           
 ImplBundle MetaConnectorFactory.getImplBundleFromConnectorTypeName(String connTypeName)
           
 ImplBundle MetaConnectorFactory.getImplBundleFromName(String name)
           
 ImplBundle MetaConnectorFactory.getImplBundleFromObjectClass(Attribute objClassAttr)
           
 ImplBundle MetaConnectorFactory.getImplBundleFromObjectClass(String connTypeObjClass)
           
 ImplBundle MetaConnectorFactory.getImplBundleFromString(String connectorXML)
          Given a string representing connectorXML file content, return the corresponding implBundle bean
 

Methods in com.ca.jcs.meta that return types with arguments of type ImplBundle
 List<ImplBundle> MetaConnectorFactory.getImplBundles()
          List[ImplBundle].
 

Methods in com.ca.jcs.meta with parameters of type ImplBundle
 void MetaConnectorFactory.addImplBundle(ImplBundle implBundle, boolean replaceExisting)
          Add a single implBundle, replacing any old bundle with the same name
 boolean MetaConnectorFactory.isAllowMetadataModify(ImplBundle implBundle)
           
 void MetaConnectorType.setImplBundle(ImplBundle bundle)
          Set a new bundle, also calling MetaConnectorType.setConnectorFactory(ConnectorFactory) already one had.
 

Method parameters in com.ca.jcs.meta with type arguments of type ImplBundle
 void MetaConnectorFactory.setImplBundles(List<ImplBundle> implBundles)
           
 

Constructors in com.ca.jcs.meta with parameters of type ImplBundle
MetaConnectorType(String type, ImplBundle bundle, ConnectorConfig connConfig)
           
 



Created 2009-10-09 16:43 EST