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. 
com.ca.jcs.sdkws This package contains an example that demonstrates the implementation of a web service JCS hosted connector. 
com.ca.jcs.standalone   
 

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 that return types with arguments of type ImplBundle
 List<ImplBundle> ConnectorFactory.getImplBundles()
           
 

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. Left for compatibility with connector.xml files for r12 sample and custom connectors.
 

Uses of ImplBundle in com.ca.jcs.meta
 

Methods in com.ca.jcs.meta that return ImplBundle
 ImplBundle MetaConnectorFactory.addConnectorTypeStaticAttributes(String connTypeName, Attributes attrs)
          Adds the static attributes (metadata, op bindings) of a connector type to an existing group of attributes.
 ImplBundle MetaConnectorFactory.createImplBundle(String connectorXML)
          Dynamically create a bundle from connector.xml content and register it for use
 ImplBundle MetaConnectorFactory.createImplBundle(String connTypeName, DataModel model)
          Dynamically create a bundle for an endpoint type from connector.xml content in metadata if present
 ImplBundle MetaConnectorFactory.findImplBundle(String connTypeName, Attributes attrs)
          Attempt to find a suitable ImplBundle amongst statically registered ones
 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
protected  void MetaConnectorFactory.getImplBundleStaticOpbindingsMetadata(ImplBundle implBundle, Attributes attrs)
           
 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)
           
 

Uses of ImplBundle in com.ca.jcs.sdkws
 

Constructors in com.ca.jcs.sdkws with parameters of type ImplBundle
SDKWSMetaConnectorType(String type, ImplBundle bundle, ConnectorConfig connConfig)
          Default constructor for this class.
 

Uses of ImplBundle in com.ca.jcs.standalone
 

Methods in com.ca.jcs.standalone with parameters of type ImplBundle
protected  boolean StandaloneServerManager.isMetadataOutdated(ImplBundle implBundle, ConnectorPersister.State connTypeState)
          Check whether the metadata used in a persisted connector type state has become outdated from the connector.
 



Created 2011-07-14 13:27 EST