1 7 package org.jboss.webservice.handler; 8 9 11 import javax.xml.rpc.handler.MessageContext ; 12 import java.util.List ; 13 import java.util.Set ; 14 15 21 public class ClientHandlerChain extends HandlerChainBaseImpl 22 { 23 public ClientHandlerChain(List infos, Set roles) 24 { 25 super(infos, roles); 26 } 27 28 30 public boolean handleResponse(MessageContext msgContext) 31 { 32 boolean status = super.handleResponse(msgContext); 33 return status; 34 } 35 } 36 | Popular Tags |