1 23 24 26 27 package sample; 28 29 import javax.resource.cci.InteractionSpec ; 30 31 public class InteractionSpecImpl implements InteractionSpec { 32 33 private String functionName; 34 private int interactionVerb; 35 36 37 public 38 void setFunctionName(String functionName) { 39 this.functionName = functionName; 40 } 41 42 public 43 String getFunctionName() { 44 return this.functionName; 45 } 46 47 52 public 53 void setInteractionVerb(int verb) { 54 this.interactionVerb = verb; 55 } 56 57 public 58 int getInteractionVerb() { 59 return this.interactionVerb; 60 } 61 62 } 63 64 | Popular Tags |