
Chapter 11. Implementing outbound request processing 273
Example 11-5 RMInteractionSpec implementation
package com.ibm.itso.sab511.outbound;
import com.ibm.j2ca.base.WBIInteractionSpec;
public class RMInteractionSpec extends WBIInteractionSpec {
public RMInteractionSpec() {
super();
}
public String getFunctionName() {
return super.getFunctionName();
}
public void setFunctionName(String arg0) {
super.setFunctionName(arg0);
}
}
11.6.3 Create ObjectNaming utility class
ObjectNaming is a utility class for data objects. It has methods to gather the data
object’s meta information. WebSphere Adapter Toolkit does not generate a stub
code for this class. When creating ...