KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > ws > handler > LogicalHandler


1 /*
2  * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
3  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4  */

5
6 package javax.xml.ws.handler;
7
8 /** The <code>LogicalHandler</code> extends
9  * Handler to provide typesafety for the message context parameter.
10  *
11  * @since JAX-WS 2.0
12 **/

13 public interface LogicalHandler<C extends LogicalMessageContext> extends Handler<C> {
14 }
15
Popular Tags