< prev index next >

src/java.xml.ws/share/classes/com/sun/xml/internal/ws/developer/JAXWSProperties.java

Print this page




 131      */
 132     public static final String INBOUND_HEADER_LIST_PROPERTY = "com.sun.xml.internal.ws.api.message.HeaderList";
 133 
 134     /**
 135      * Access the {@link WSEndpoint} object that delivered the request.
 136      *
 137      * <p>
 138      * {@link WSEndpoint} is the root of the objects that are together
 139      * responsible for delivering requests to the application SEI object.
 140      * One can look up this {@link WSEndpoint} from {@link WebServiceContext},
 141      * and from there access many parts of the JAX-WS RI runtime.
 142      *
 143      * <p>
 144      * <b>THIS PROPERTY IS EXPERIMENTAL AND IS SUBJECT TO CHANGE WITHOUT NOTICE IN FUTURE.</b>
 145      *
 146      * @since 2.1.2
 147      */
 148     public static final String WSENDPOINT = "com.sun.xml.internal.ws.api.server.WSEndpoint";
 149 
 150     /**
 151      * Gets the <tt>wsa:To</tt> header.
 152      *
 153      * The propery value is available on incoming SOAP message. The type of the value
 154      * is {@link WSEndpointReference}.
 155      *
 156      * Null if the incoming SOAP message didn't have the header.
 157      *
 158      * @since 2.1.3
 159      */
 160     public static final String ADDRESSING_TO = "com.sun.xml.internal.ws.api.addressing.to";
 161 
 162     /**
 163      * Gets the <tt>wsa:From</tt> header.
 164      *
 165      * The propery value is available on incoming SOAP message. The type of the value
 166      * is {@link WSEndpointReference}.
 167      *
 168      * Null if the incoming SOAP message didn't have the header.
 169      *
 170      * @since 2.1.3
 171      */
 172     public static final String ADDRESSING_FROM = "com.sun.xml.internal.ws.api.addressing.from";
 173 
 174     /**
 175      * Gets the <tt>wsa:Action</tt> header value.
 176      *
 177      * The propery value is available on incoming SOAP message. The type of the value
 178      * is {@link String}.
 179      *
 180      * Null if the incoming SOAP message didn't have the header.
 181      *
 182      * @since 2.1.3
 183      */
 184     public static final String ADDRESSING_ACTION = "com.sun.xml.internal.ws.api.addressing.action";
 185 
 186     /**
 187      * Gets the <tt>wsa:MessageID</tt> header value.
 188      *
 189      * The propery value is available on incoming SOAP message. The type of the value
 190      * is {@link String}.
 191      *
 192      * Null if the incoming SOAP message didn't have the header.
 193      *
 194      * @since 2.1.3
 195      */
 196     public static final String ADDRESSING_MESSAGEID = "com.sun.xml.internal.ws.api.addressing.messageId";
 197 
 198     /**
 199      * Reconstructs the URL the client used to make the request. The returned URL
 200      * contains a protocol, server name, port number, and server path, but it does
 201      * not include query string parameters.
 202      * <p>
 203      * The property value is available on incoming SOAP message on servlet transport.
 204      *
 205      * @since 2.1.3
 206      */
 207     public static final String HTTP_REQUEST_URL = "com.sun.xml.internal.ws.transport.http.servlet.requestURL";




 131      */
 132     public static final String INBOUND_HEADER_LIST_PROPERTY = "com.sun.xml.internal.ws.api.message.HeaderList";
 133 
 134     /**
 135      * Access the {@link WSEndpoint} object that delivered the request.
 136      *
 137      * <p>
 138      * {@link WSEndpoint} is the root of the objects that are together
 139      * responsible for delivering requests to the application SEI object.
 140      * One can look up this {@link WSEndpoint} from {@link WebServiceContext},
 141      * and from there access many parts of the JAX-WS RI runtime.
 142      *
 143      * <p>
 144      * <b>THIS PROPERTY IS EXPERIMENTAL AND IS SUBJECT TO CHANGE WITHOUT NOTICE IN FUTURE.</b>
 145      *
 146      * @since 2.1.2
 147      */
 148     public static final String WSENDPOINT = "com.sun.xml.internal.ws.api.server.WSEndpoint";
 149 
 150     /**
 151      * Gets the {@code wsa:To} header.
 152      *
 153      * The propery value is available on incoming SOAP message. The type of the value
 154      * is {@link WSEndpointReference}.
 155      *
 156      * Null if the incoming SOAP message didn't have the header.
 157      *
 158      * @since 2.1.3
 159      */
 160     public static final String ADDRESSING_TO = "com.sun.xml.internal.ws.api.addressing.to";
 161 
 162     /**
 163      * Gets the {@code wsa:From} header.
 164      *
 165      * The propery value is available on incoming SOAP message. The type of the value
 166      * is {@link WSEndpointReference}.
 167      *
 168      * Null if the incoming SOAP message didn't have the header.
 169      *
 170      * @since 2.1.3
 171      */
 172     public static final String ADDRESSING_FROM = "com.sun.xml.internal.ws.api.addressing.from";
 173 
 174     /**
 175      * Gets the {@code wsa:Action} header value.
 176      *
 177      * The propery value is available on incoming SOAP message. The type of the value
 178      * is {@link String}.
 179      *
 180      * Null if the incoming SOAP message didn't have the header.
 181      *
 182      * @since 2.1.3
 183      */
 184     public static final String ADDRESSING_ACTION = "com.sun.xml.internal.ws.api.addressing.action";
 185 
 186     /**
 187      * Gets the {@code wsa:MessageID} header value.
 188      *
 189      * The propery value is available on incoming SOAP message. The type of the value
 190      * is {@link String}.
 191      *
 192      * Null if the incoming SOAP message didn't have the header.
 193      *
 194      * @since 2.1.3
 195      */
 196     public static final String ADDRESSING_MESSAGEID = "com.sun.xml.internal.ws.api.addressing.messageId";
 197 
 198     /**
 199      * Reconstructs the URL the client used to make the request. The returned URL
 200      * contains a protocol, server name, port number, and server path, but it does
 201      * not include query string parameters.
 202      * <p>
 203      * The property value is available on incoming SOAP message on servlet transport.
 204      *
 205      * @since 2.1.3
 206      */
 207     public static final String HTTP_REQUEST_URL = "com.sun.xml.internal.ws.transport.http.servlet.requestURL";


< prev index next >