1 17 package test; 18 19 import javax.jbi.component.ComponentContext; 20 21 22 26 public class EchoService { 27 28 public static EchoService instance; 29 30 private ComponentContext context; 31 32 public EchoService() { 33 instance = this; 34 } 35 36 39 public String echo(String input) { 40 return input; 41 } 42 43 public ComponentContext getContext() { 44 return context; 45 } 46 47 public void setContext(ComponentContext context) { 48 this.context = context; 49 } 50 51 } 52 | Popular Tags |