1 17 package org.apache.servicemix.components.wsif; 18 19 import org.apache.wsif.WSIFException; 20 import org.apache.wsif.WSIFOperation; 21 import org.apache.wsif.WSIFPort; 22 23 28 public class WSIFOperationInfo { 29 private WSIFPort port; 30 private String name; 31 32 public WSIFOperationInfo(WSIFPort port, String name) { 33 this.port = port; 34 this.name = name; 35 } 36 37 public WSIFOperation createWsifOperation() throws WSIFException { 38 return this.port.createOperation(name); 39 } 40 } 41 | Popular Tags |