Uses of Class
com.ca.jcs.ConnectorType

Packages that use ConnectorType
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.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.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 ConnectorType in com.ca.jcs
 

Methods in com.ca.jcs that return ConnectorType
 ConnectorType DefaultConnectorManager.activateConnectorType(Name connTypeDn, String connTypeName, Attributes attrs)
           
 ConnectorType ConnectorManager.activateConnectorType(Name connTypeDn, String connTypeName, Attributes attrs)
           
 ConnectorType ConnectorFactory.createConnectorType(String name, Attributes attrs)
          Return represents a single custom connector or particular configuration for a dynamic connector.
 ConnectorType DefaultConnectorManager.findConnectorType(String connTypeName)
           
 ConnectorType ConnectorManager.findConnectorType(String connTypeName)
          Find type, return null if doesn't exist.
 ConnectorType Connector.getType()
           
 ConnectorType BaseConnector.getType()
          Return the parent ConnectorType for this connector.
 

Methods in com.ca.jcs with parameters of type ConnectorType
 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.
 void DefaultConnectorManager.saveConnectorState(ConnectorType connType, Connector conn, Attributes ldapAttrs)
          Handles splitting attributes into sensitive and normal attributes in a State.
protected  void DefaultConnectorManager.saveConnectorTypeState(ConnectorType connectorType)
          save the connector type state.
 void ConnectorPersister.saveConnectorTypeState(ConnectorType connType, ConnectorPersister.State state)
          Save the provided state for a connector type.
 void ConnectorFactory.setLogLevel(ConnectorType connectorType, Logger logger, Attributes attrs)
          Set logging level on a connector's logger using metadata (and possibly static configuration) combined with values contained in attrs, or do nothing if no logging related attributes are present in attrs.
 void Connector.setType(ConnectorType type)
           
 void BaseConnector.setType(ConnectorType type)
           
 

Constructors in com.ca.jcs with parameters of type ConnectorType
BaseConnector(ConnectorType type, String name, Logger log)
           
BaseConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
           
 

Uses of ConnectorType in com.ca.jcs.jdbc
 

Constructors in com.ca.jcs.jdbc with parameters of type ConnectorType
JDBCMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
           
 

Uses of ConnectorType in com.ca.jcs.jndi
 

Constructors in com.ca.jcs.jndi with parameters of type ConnectorType
JNDIMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
           
 

Uses of ConnectorType in com.ca.jcs.meta
 

Subclasses of ConnectorType in com.ca.jcs.meta
 class MetaConnectorType
          A ConnectorType (aka Endpoint Type, formerly Namespace) configured by metadata, which: acts as parent for its contained MetaConnector instances acts a collection point for the metadata information which all child connectors all share (both DataModel flavour used by attribute-style processors and OpBindings flavour used for method/script style processors).
 

Methods in com.ca.jcs.meta that return ConnectorType
 ConnectorType MetaConnectorFactory.createConnectorType(String connTypeName, Attributes attrs)
          Creates a MetaConnectorType capable of broadcasting metadata changes to contained connectors.
 

Methods in com.ca.jcs.meta with parameters of type ConnectorType
 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.
 void MetaConnectorFactory.setLogLevel(ConnectorType connType, Logger logger, Attributes attrs)
           
 

Constructors in com.ca.jcs.meta with parameters of type ConnectorType
MetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
          Create a connector, including settings from a configuration object.
 

Uses of ConnectorType in com.ca.jcs.ora
 

Constructors in com.ca.jcs.ora with parameters of type ConnectorType
ORAMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
           
 

Uses of ConnectorType in com.ca.jcs.sdk
 

Constructors in com.ca.jcs.sdk with parameters of type ConnectorType
SDKMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
          have to implement this constructor signiture, otherwise JCS will fail to load.
 

Uses of ConnectorType in com.ca.jcs.sdkws
 

Subclasses of ConnectorType in com.ca.jcs.sdkws
 class SDKWSMetaConnectorType
          The WS Connector Type class for specializing activation.
 

Constructors in com.ca.jcs.sdkws with parameters of type ConnectorType
SDKWSMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
          The default constructor for MetaConnector instances.
 

Uses of ConnectorType in com.ca.jcs.stub
 

Constructors in com.ca.jcs.stub with parameters of type ConnectorType
StubMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
          have to implement this constructor signiture, otherwise JCS will fail to load.
 

Uses of ConnectorType in com.ca.jcs.util
 

Methods in com.ca.jcs.util with parameters of type ConnectorType
 void FileConnectorPersister.saveConnectorTypeState(ConnectorType connType, ConnectorPersister.State state)
           
 



Created 2011-07-14 13:27 EST