Uses of Interface
com.ca.jcs.processor.MethodStyleOpProcessor

Packages that use MethodStyleOpProcessor
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.meta Contains components which are metadata driven or assist in the condensing of information derived from metadata to allow efficient processing. 
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. 
 

Uses of MethodStyleOpProcessor in com.ca.jcs
 

Methods in com.ca.jcs that return MethodStyleOpProcessor
 MethodStyleOpProcessor BaseConnector.createMethodStyleOpProcessor()
          Must be overridden by connectors that support the concept of method-style op processing, return null unless overridden.
 MethodStyleOpProcessor Connector.getMethodStyleOpProcessor()
           
 MethodStyleOpProcessor BaseConnector.getMethodStyleOpProcessor()
           
 

Methods in com.ca.jcs with parameters of type MethodStyleOpProcessor
 void Connector.setMethodStyleOpProcessor(MethodStyleOpProcessor obp)
           
 void BaseConnector.setMethodStyleOpProcessor(MethodStyleOpProcessor proc)
          Should be called by connectors that implement operation bindings, eg JDBC stored procedures.
 

Uses of MethodStyleOpProcessor in com.ca.jcs.jdbc
 

Classes in com.ca.jcs.jdbc that implement MethodStyleOpProcessor
 class JDBCMethodStyleOpProcessor
          Delegate that handles invocation of stored procedures, after the framework has determined that the declared guard conditions match a particular operation.
 

Methods in com.ca.jcs.jdbc that return MethodStyleOpProcessor
 MethodStyleOpProcessor JDBCMetaConnector.createMethodStyleOpProcessor()
           
 

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

Uses of MethodStyleOpProcessor in com.ca.jcs.meta
 

Methods in com.ca.jcs.meta that return MethodStyleOpProcessor
 MethodStyleOpProcessor MetaConnectorFactory.proxyMethodStyleOpProcessor(MetaConnector conn, MethodStyleOpProcessor proc)
          Return a proxy for one of the given connector's processors if: The connector's implementation bundle has a resilientProxyClass class defined AND The connector's configuration has resilientDelay > 0
 

Methods in com.ca.jcs.meta with parameters of type MethodStyleOpProcessor
 MethodStyleOpProcessor MetaConnectorFactory.proxyMethodStyleOpProcessor(MetaConnector conn, MethodStyleOpProcessor proc)
          Return a proxy for one of the given connector's processors if: The connector's implementation bundle has a resilientProxyClass class defined AND The connector's configuration has resilientDelay > 0
 void MetaConnector.setMethodStyleOpProcessor(MethodStyleOpProcessor obp)
          Should be called by connectors that implement method operation bindings (eg JDBC stored procedures), where the actual reference stored may be proxied depending on resiliency / deployment configuration settings from connector.xml.
 

Uses of MethodStyleOpProcessor in com.ca.jcs.processor
 

Classes in com.ca.jcs.processor that implement MethodStyleOpProcessor
 class AbstractMethodStyleOpProcessor
          Created this class so that we can mandate a constructor taking some fields we know every concrete baseConnector will need access to, for maximum clarity.
 

Methods in com.ca.jcs.processor that return MethodStyleOpProcessor
 MethodStyleOpProcessor OpProcessorStyleFactory.createMethodStyleOpProcessor()
           
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.
 MethodStyleOpProcessor ConnectorProcessorProxyHandler.getTargetMethodStyleOpProcessor()
           
 

Methods in com.ca.jcs.processor with parameters of type MethodStyleOpProcessor
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.
 

Constructors in com.ca.jcs.processor with parameters of type MethodStyleOpProcessor
ConnectorProcessorProxyHandler(Connector connector, MethodStyleOpProcessor methodStyleOpProcessor)
           
MethodStyleOpProxyHandler(MetaConnector metaConnector, Opbindings metaData, MethodStyleOpProcessor methodStyleOpProcessor, Logger log)
           
RetryOpProcessorProxy(Connector connector, MethodStyleOpProcessor proc)
           
 



Created 2011-07-14 13:27 EST