FileDocCategorySizeDatePackage
InteractionSpecImpl.javaAPI DocGlassfish v2 API2805Fri May 04 22:35:40 BST 2007sample

InteractionSpecImpl

public class InteractionSpecImpl extends Object implements javax.resource.cci.InteractionSpec
InteractionSpecImpl.java

Fields Summary
private String
functionName
private int
interactionVerb
Constructors Summary
Methods Summary
public java.lang.StringgetFunctionName()

    return this.functionName;
  
public intgetInteractionVerb()

    return this.interactionVerb;
  
public voidsetFunctionName(java.lang.String functionName)
A string representing the name of an EIS function

    this.functionName = functionName;
  
public voidsetInteractionVerb(int verb)
An integer representing the mode of interaction with an EIS instance as specified by the InteractionSpec. Valid values are: SYNC_SEND, SYNC_SEND_RECEIVE, and SYNC_RECEIVE as defined in InteractionSpec interface.

    this.interactionVerb = verb;