KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > webservice > handler > ClientHandlerChain


1 /**
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.webservice.handler;
8
9 // $Id: ClientHandlerChain.java,v 1.6 2004/08/21 01:25:16 tdiesler Exp $
10

11 import javax.xml.rpc.handler.MessageContext JavaDoc;
12 import java.util.List JavaDoc;
13 import java.util.Set JavaDoc;
14
15 /**
16  * No special behaviour required on the client side.
17  *
18  * @author Thomas.Diesler@jboss.org
19  * @since 06-May-2004
20  */

21 public class ClientHandlerChain extends HandlerChainBaseImpl
22 {
23    public ClientHandlerChain(List JavaDoc infos, Set JavaDoc roles)
24    {
25       super(infos, roles);
26    }
27
28    /** Initiates the response processing for this handler chain.
29     */

30    public boolean handleResponse(MessageContext JavaDoc msgContext)
31    {
32       boolean status = super.handleResponse(msgContext);
33       return status;
34    }
35 }
36
Popular Tags