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.
53 lines
1.1 KiB
53 lines
1.1 KiB
/*
|
|
* 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;
|
|
|
|
import java.util.Map;
|
|
import java.util.concurrent.Future;
|
|
|
|
/** The <code>Response</code> interface provides methods used to obtain the
|
|
* payload and context of a message sent in response to an operation
|
|
* invocation.
|
|
*
|
|
* <p>For asynchronous operation invocations it provides additional methods
|
|
* to check the status of the request. The <code>get(...)</code> methods may
|
|
* throw the standard
|
|
* set of exceptions and their cause may be a <code>RemoteException</code> or a
|
|
* {@link WebServiceException} that represents the error that occured during the
|
|
* asynchronous method invocation.</p>
|
|
*
|
|
* @since JAX-WS 2.0
|
|
**/
|
|
public interface Response<T> extends Future<T> {
|
|
/** Gets the contained response context.
|
|
*
|
|
* @return The contained response context. May be <code>null</code> if a
|
|
* response is not yet available.
|
|
*
|
|
**/
|
|
Map<String,Object> getContext();
|
|
}
|