Uses of Interface
com.ca.jcs.Connector

Packages that use Connector
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.assoc Collection of classes/interfaces concerned with the representation and processing of associations between objects. 
com.ca.jcs.jdbc   
com.ca.jcs.jndi This package provides support relating to the Java Naming and Directory Interface (JNDI) package of the JDK. 
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.ora   
com.ca.jcs.processor Contains components implementing processing of LDAP operations like add() / modify() search etc, where three styles are supported: attribute-style, method-style and script-style. 
com.ca.jcs.sdk This package contains a worked example demonstrating all core elements involved in implementation of a JCS hosted connector, such as: example supporting metadata and configuration files. 
com.ca.jcs.sdkws This package contains an example that demonstrates the implementation of a web service JCS hosted connector. 
com.ca.jcs.stub This package contains support for stub connector classes needed for connectors implemented entirely using scripting. 
com.ca.jcs.util This package is used to group useful generic framework utilities not strongly tied to a particular functional area. 
 

Uses of Connector in com.ca.jcs
 

Classes in com.ca.jcs that implement Connector
 class BaseConnector
          Represents an LDAP view onto an external remote managed endpoint system, whilst acting as an ApacheDS partition to which LDAP operations can be routed.
 

Methods in com.ca.jcs that return Connector
 Connector DefaultConnectorManager.activateConnector(String connTypeName, String connNamingAttr, String connName)
           
 Connector ConnectorManager.activateConnector(String connTypeName, String connNamingAttr, String connName)
          Called to activate connector by all other operations.
 Connector DefaultConnectorManager.activateConnector(String connTypeName, String connNamingAttr, String connName, LdapDN suffix, Attributes attrs)
           
 Connector ConnectorManager.activateConnector(String connTypeName, String connNamingAttr, String connName, LdapDN name, Attributes attrs)
          Called by add() of new connector.
 Connector ConnectorFactory.createConnector(ConnectorType type, String namingAttr, String name, LdapDN suffix, Attributes attrs)
          Return a new connector based on attributes saved for parent connector type combined with provided attrs.
 Connector ConnectorType.findConnector(String connName)
           
 Connector DefaultConnectorManager.findConnector(String connTypeName, String connName)
           
 Connector ConnectorManager.findConnector(String connTypeName, String connName)
           
 Connector ReplaceOIDsProxyHandler.getProxy()
           
 

Methods in com.ca.jcs that return types with arguments of type Connector
 Collection<Connector> ConnectorType.getConnectors()
          Return collection of child connectors using this connector type's metadata.
 

Methods in com.ca.jcs with parameters of type Connector
 void ConnectorType.addConnector(Connector conn)
           
 PartitionConfiguration DefaultConnectorManager.createConnectorConfiguration(Connector conn, Name suffix)
           
 void ConnectorPersister.saveConnectorState(Connector conn, ConnectorPersister.State state)
          Save the provided state for a connector.
 void DefaultConnectorManager.saveConnectorState(ConnectorType connType, Connector conn, Attributes ldapAttrs)
          Handles splitting attributes into sensitive and normal attributes in a State.
 

Uses of Connector in com.ca.jcs.assoc
 

Constructors in com.ca.jcs.assoc with parameters of type Connector
AssocAttributeOpProcessorProxy(Connector connector, AttributeStyleOpProcessor proc)
          Note prerequisite (checked by assertion) is that connector.isObjectClassRequired() == true.
 

Uses of Connector in com.ca.jcs.jdbc
 

Classes in com.ca.jcs.jdbc that implement Connector
 class JDBCMetaConnector
          A dynamic JDBC connector driven by metadata which specifies all mapping information for Account, Group and Connection (Endpoint) classes.
 

Constructors in com.ca.jcs.jdbc with parameters of type Connector
JDBCExceptionMappingProxy(Connector connector, AttributeStyleOpProcessor proc)
           
JDBCExceptionMappingProxy(Connector connector, MethodStyleOpProcessor proc)
           
JDBCExceptionMappingProxy(Connector connector, ScriptStyleOpProcessor proc)
           
 

Uses of Connector in com.ca.jcs.jndi
 

Classes in com.ca.jcs.jndi that implement Connector
 class JNDIMetaConnector
          Base class for connectors using the JNDI (Java Naming and Directory Interface) API to communicate with their target managed systems.
 

Uses of Connector in com.ca.jcs.meta
 

Classes in com.ca.jcs.meta that implement Connector
 class MetaConnector
          A connector which is configured via metadata, encompassing both flat (eg SDK, JDBC connector) and hierarchical (eg JNDI, LDA connector) varieties.
 

Methods in com.ca.jcs.meta that return Connector
 Connector MetaConnectorFactory.createConnector(ConnectorType connType, String namingAttr, String name, LdapDN suffix, Attributes attrs)
          Create a connector based on parent type's metadata, the provided attrs and the default connector config stored on parent connType.
 

Methods in com.ca.jcs.meta with parameters of type Connector
 void MetaConnectorType.addConnector(Connector conn)
          Need to override so that can increment usages of scriptPool, if one exists.
 

Uses of Connector in com.ca.jcs.ora
 

Classes in com.ca.jcs.ora that implement Connector
 class ORAMetaConnector
           
 

Uses of Connector in com.ca.jcs.processor
 

Methods in com.ca.jcs.processor that return Connector
 Connector ConnectorProcessorProxyHandler.getConnector()
           
 

Methods in com.ca.jcs.processor with parameters of type Connector
static ProxyChainEntry ConnectorProcessorProxyHandler.createAttributeStyleOpProcessorProxy(Class<? extends ConnectorProcessorProxyHandler> proxyClass, Connector conn, AttributeStyleOpProcessor proc)
          Helper method that wraps the OpProcessor for the provided connector in an instance of the provided proxy class.
static MethodStyleOpProcessor ConnectorProcessorProxyHandler.createMethodStyleOpProcessorProxy(Class proxyClass, Connector conn, MethodStyleOpProcessor proc)
          Helper method that wraps the MethodStyleOpProcessor for the provided connector in an instance of the provided proxy class.
static ScriptStyleOpProcessor ConnectorProcessorProxyHandler.createScriptStyleOpProcessorProxy(Class proxyClass, Connector conn, ScriptStyleOpProcessor proc)
          Helper method that wraps the ScriptStyleOpProcessor for the provided connector in an instance of the provided proxy class.
 

Constructors in com.ca.jcs.processor with parameters of type Connector
ConnectorProcessorProxyHandler(Connector connector, AttributeStyleOpProcessor opProcessor)
           
ConnectorProcessorProxyHandler(Connector connector, MethodStyleOpProcessor methodStyleOpProcessor)
           
ConnectorProcessorProxyHandler(Connector connector, ScriptStyleOpProcessor scriptStyleOpProcessor)
           
MetaOpBindingsProxyHandler(Connector connector, AttributeStyleOpProcessor attrProc)
          Handle method-style and/or script-style op processors wrapping around another connector's attribute-style op processor, for instance when creating a composite connector which uses JNDI primarily but wraps some operations with JDBC stored procedure support.
RetryOpProcessorProxy(Connector connector, AttributeStyleOpProcessor proc)
           
RetryOpProcessorProxy(Connector connector, MethodStyleOpProcessor proc)
           
 

Uses of Connector in com.ca.jcs.sdk
 

Classes in com.ca.jcs.sdk that implement Connector
 class SDKMetaConnector
          This sample connector uses flat files as its target managed endpoint system.
 

Uses of Connector in com.ca.jcs.sdkws
 

Classes in com.ca.jcs.sdkws that implement Connector
 class SDKWSMetaConnector
          The connector implementation for creating a Web Services connector.
 

Uses of Connector in com.ca.jcs.stub
 

Classes in com.ca.jcs.stub that implement Connector
 class StubMetaConnector
          Stub metaconnector useful in method-style and scripting-style opbindings demonstrations.
 

Uses of Connector in com.ca.jcs.util
 

Methods in com.ca.jcs.util with parameters of type Connector
 void FileConnectorPersister.saveConnectorState(Connector conn, ConnectorPersister.State state)
           
 



Created 2011-07-14 13:27 EST