abstract class EisOperation : InitializingBean
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.
Author
Juergen Hoeller
Since
1.2
See Also
#setConnectionFactory#setInteractionSpec
EisOperation()
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. |
open fun afterPropertiesSet(): Unit |
|
open fun getCciTemplate(): CciTemplate
Return the CciTemplate used by this operation. |
|
open fun getInteractionSpec(): InteractionSpec
Return the CCI InteractionSpec for this operation. |
|
open fun setCciTemplate(cciTemplate: CciTemplate): Unit
Set the CciTemplate to be used by this operation. Alternatively, specify a CCI ConnectionFactory. |
|
open fun setConnectionFactory(connectionFactory: ConnectionFactory): Unit
Set the CCI ConnectionFactory to be used by this operation. |
|
open fun setInteractionSpec(interactionSpec: InteractionSpec): Unit
Set the CCI InteractionSpec for this operation. |
open class SimpleRecordOperation : EisOperation
EIS operation object that accepts a passed-in CCI input Record and returns a corresponding CCI output Record. |