public abstract class

EisOperation

extends Object
implements InitializingBean
java.lang.Object
   ↳ org.springframework.jca.cci.object.EisOperation
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Base class for EIS operation objects that work with the CCI API. Encapsulates a CCI ConnectionFactory and a CCI InteractionSpec.

Works with a CciTemplate instance underneath. EIS operation objects are an alternative to working with a CciTemplate directly.

Summary

Public Constructors
EisOperation()
Public Methods
void afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).
CciTemplate getCciTemplate()
Return the CciTemplate used by this operation.
InteractionSpec getInteractionSpec()
Return the CCI InteractionSpec for this operation.
void setCciTemplate(CciTemplate cciTemplate)
Set the CciTemplate to be used by this operation.
void setConnectionFactory(ConnectionFactory connectionFactory)
Set the CCI ConnectionFactory to be used by this operation.
void setInteractionSpec(InteractionSpec interactionSpec)
Set the CCI InteractionSpec for this operation.
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.springframework.beans.factory.InitializingBean

Public Constructors

public EisOperation ()

Public Methods

public void afterPropertiesSet ()

Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).

This method allows the bean instance to perform initialization only possible when all bean properties have been set and to throw an exception in the event of misconfiguration.

public CciTemplate getCciTemplate ()

Return the CciTemplate used by this operation.

public InteractionSpec getInteractionSpec ()

Return the CCI InteractionSpec for this operation.

public void setCciTemplate (CciTemplate cciTemplate)

Set the CciTemplate to be used by this operation. Alternatively, specify a CCI ConnectionFactory.

public void setConnectionFactory (ConnectionFactory connectionFactory)

Set the CCI ConnectionFactory to be used by this operation.

public void setInteractionSpec (InteractionSpec interactionSpec)

Set the CCI InteractionSpec for this operation.