You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
808 B

/*
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.xml.ws.handler;
import javax.xml.ws.LogicalMessage;
/** The <code>LogicalMessageContext</code> interface extends
* <code>MessageContext</code> to
* provide access to a the contained message as a protocol neutral
* LogicalMessage
*
* @since JAX-WS 2.0
**/
public interface LogicalMessageContext
extends MessageContext {
/** Gets the message from this message context
*
* @return The contained message; returns <code>null</code> if no
* message is present in this message context
**/
public LogicalMessage getMessage();
}