1 57 58 package org.apache.wsif; 59 60 71 public interface WSIFInterceptor { 72 75 public void init(WSIFInterceptorConfig ic); 76 77 89 public boolean interceptIncoming(WSIFRequest request, WSIFResponse response) 90 throws WSIFException; 91 92 103 public boolean interceptOutgoing(WSIFRequest request, WSIFResponse response) 104 throws WSIFException; 105 106 109 public void destroy(); 110 } 111 | Popular Tags |