BlacktieService.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:0k
源码类别:

中间件编程

开发平台:

Java

  1. package org.jboss.blacktie.jatmibroker.xatmi;
  2. /**
  3.  * All extending classes must override the tpservice template method.
  4.  */
  5. public interface BlacktieService {
  6. /**
  7.  * This is a template method that should be implemented by classes to
  8.  * provide the service behaviour
  9.  * 
  10.  * @param svcinfo
  11.  *            The inbound parameters
  12.  * @return A response to the client
  13.  */
  14. public Response tpservice(TPSVCINFO svcinfo);
  15. }