1 57 58 package org.apache.wsif; 59 60 import java.io.Serializable ; 61 62 77 public interface WSIFPort extends Serializable { 78 87 public WSIFOperation createOperation(String operationName) 88 throws WSIFException; 89 90 102 public WSIFOperation createOperation( 103 String operationName, 104 String inputName, 105 String outputName) 106 throws WSIFException; 107 108 115 public void close() throws WSIFException; 116 117 122 public boolean supportsSync(); 123 124 129 public boolean supportsAsync(); 130 131 135 public WSIFMessage getContext() throws WSIFException ; 136 137 141 public void setContext(WSIFMessage context); 142 143 } 144 | Popular Tags |