Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.wsee.message
Class WlMessageContext

java.lang.Object
  extended by weblogic.wsee.message.WlMessageContext
All Implemented Interfaces:
MessageContext
Direct Known Subclasses:
SoapMessageContext

Deprecated.

public abstract class WlMessageContext
extends Object
implements MessageContext

WlMessageContext -- Base class for WebLogic implemented message contexts.


Field Summary
static String APPLICATION_ID
          Deprecated.  
static String CONTEXT_PATH
          Deprecated.  
static String DK_LABEL_PROPERTY
          Deprecated.  
static String DK_LENGTH_PROPERTY
          Deprecated.  
static String END_POINT_ADDRESS
          Deprecated.  
static String END_POINT_URI
          Deprecated.  
protected  Throwable fault
          Deprecated.  
static String INCOMING_FAULT_MSG
          Deprecated.  
static String IS_CLIENT_CERT_REQUIRED
          Deprecated.  
static String IS_MTOM_ENABLE_IN_JAXWS
          Deprecated.  
static String IS_SECURE_SERVLET_REQUEST
          Deprecated.  
static String MTOM_MESSAGE_RECVD
          Deprecated.  
static String MTOM_THRESHOLD
          Deprecated. Property for MTOM threshold value.
protected  Map propertyMap
          Deprecated.  
static String SAML_CREDENTIAL
          Deprecated.  
static String SCT_LIFETIME_PROPERTY
          Deprecated.  
static String SECURITY_CONTEXT_CREDENTIAL
          Deprecated.  
static String SECURITY_REALM
          Deprecated.  
static String SERVICE_NAME
          Deprecated.  
static String SERVICE_URI
          Deprecated.  
static String SERVLET_REQUEST
          Deprecated.  
static String SERVLET_RESPONSE
          Deprecated.  
static String STREAM_ATTACHMENTS
          Deprecated.  
static String STS_ENDPOINT_ADDRESS_PROPERTY
          Deprecated. use WLStub.WST_STS_ENDPOINT_ON_WSSC for WS-SecureCOnversation related STS endpoint setting and use WLStub.WST_STS_ENDPOINT_ON_SAML for SAML related STS endpoint setting
static String TRANSPORT_HEADERS
          Deprecated.  
static String VALIDATE_REQUEST
          Deprecated.  
static String WSS_MESSAGE_AGE
          Deprecated.  
static String WST_BOOT_STRAP_POLICY
          Deprecated.  
 
Constructor Summary
WlMessageContext()
          Deprecated.  
 
Method Summary
 boolean containsProperty(String name)
          Deprecated. Determines if the context contains a given property
protected  Map createPropertyMap()
          Deprecated.  
 Throwable getFault()
          Deprecated. Gets a Throwable representing the current fault
 MsgHeaders getHeaders()
          Deprecated. Gets any message headers
 Object getProperty(String name)
          Deprecated. Gets a property on the context
 Iterator getPropertyNames()
          Deprecated. Gets an iterator over the property names
 boolean hasFault()
          Deprecated.  
static WlMessageContext narrow(MessageContext context)
          Deprecated. Narrows a generic MessageContext to a WLS-specific context
 void removeProperty(String name)
          Deprecated. Removes a property from the context
 void setFault(Throwable th)
          Deprecated.  
 void setHeaders(MsgHeaders headers)
          Deprecated.  
 void setProperty(String name, Object value)
          Deprecated. Sets a property on the context
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

fault

protected Throwable fault
Deprecated. 

propertyMap

protected final Map propertyMap
Deprecated. 

END_POINT_URI

public static final String END_POINT_URI
Deprecated. 
See Also:
Constant Field Values

END_POINT_ADDRESS

public static final String END_POINT_ADDRESS
Deprecated. 
See Also:
Constant Field Values

TRANSPORT_HEADERS

public static final String TRANSPORT_HEADERS
Deprecated. 
See Also:
Constant Field Values

SERVLET_REQUEST

public static final String SERVLET_REQUEST
Deprecated. 
See Also:
Constant Field Values

IS_CLIENT_CERT_REQUIRED

public static final String IS_CLIENT_CERT_REQUIRED
Deprecated. 
See Also:
Constant Field Values

SERVLET_RESPONSE

public static final String SERVLET_RESPONSE
Deprecated. 
See Also:
Constant Field Values

IS_SECURE_SERVLET_REQUEST

public static final String IS_SECURE_SERVLET_REQUEST
Deprecated. 
See Also:
Constant Field Values

SECURITY_CONTEXT_CREDENTIAL

public static final String SECURITY_CONTEXT_CREDENTIAL
Deprecated. 
See Also:
Constant Field Values

SAML_CREDENTIAL

public static final String SAML_CREDENTIAL
Deprecated. 
See Also:
Constant Field Values

STS_ENDPOINT_ADDRESS_PROPERTY

public static final String STS_ENDPOINT_ADDRESS_PROPERTY
Deprecated. use WLStub.WST_STS_ENDPOINT_ON_WSSC for WS-SecureCOnversation related STS endpoint setting and use WLStub.WST_STS_ENDPOINT_ON_SAML for SAML related STS endpoint setting
See Also:
WLStub.WST_STS_ENDPOINT_ON_WSSC, WLStub.WST_STS_ENDPOINT_ON_SAML, Constant Field Values

WST_BOOT_STRAP_POLICY

public static final String WST_BOOT_STRAP_POLICY
Deprecated. 
See Also:
Constant Field Values

SCT_LIFETIME_PROPERTY

public static final String SCT_LIFETIME_PROPERTY
Deprecated. 
See Also:
Constant Field Values

DK_LABEL_PROPERTY

public static final String DK_LABEL_PROPERTY
Deprecated. 
See Also:
Constant Field Values

DK_LENGTH_PROPERTY

public static final String DK_LENGTH_PROPERTY
Deprecated. 
See Also:
Constant Field Values

WSS_MESSAGE_AGE

public static final String WSS_MESSAGE_AGE
Deprecated. 
See Also:
Constant Field Values

INCOMING_FAULT_MSG

public static final String INCOMING_FAULT_MSG
Deprecated. 
See Also:
Constant Field Values

MTOM_MESSAGE_RECVD

public static final String MTOM_MESSAGE_RECVD
Deprecated. 
See Also:
Constant Field Values

SERVICE_NAME

public static final String SERVICE_NAME
Deprecated. 
See Also:
Constant Field Values

CONTEXT_PATH

public static final String CONTEXT_PATH
Deprecated. 
See Also:
Constant Field Values

SERVICE_URI

public static final String SERVICE_URI
Deprecated. 
See Also:
Constant Field Values

SECURITY_REALM

public static final String SECURITY_REALM
Deprecated. 
See Also:
Constant Field Values

APPLICATION_ID

public static final String APPLICATION_ID
Deprecated. 
See Also:
Constant Field Values

STREAM_ATTACHMENTS

public static final String STREAM_ATTACHMENTS
Deprecated. 
See Also:
Constant Field Values

VALIDATE_REQUEST

public static final String VALIDATE_REQUEST
Deprecated. 
See Also:
Constant Field Values

IS_MTOM_ENABLE_IN_JAXWS

public static final String IS_MTOM_ENABLE_IN_JAXWS
Deprecated. 
See Also:
Constant Field Values

MTOM_THRESHOLD

public static final String MTOM_THRESHOLD
Deprecated. 
Property for MTOM threshold value. This property serves as a hint when MTOM is enabled, binary data above this size in bytes SHOULD be sent as attachment. The value of this property MUST always be >= 0. Default value is 0.

See Also:
Constant Field Values
Constructor Detail

WlMessageContext

public WlMessageContext()
Deprecated. 
Method Detail

createPropertyMap

protected Map createPropertyMap()
Deprecated. 

narrow

public static WlMessageContext narrow(MessageContext context)
Deprecated. 
Narrows a generic MessageContext to a WLS-specific context

Parameters:
context - The generic MessageContext
Returns:
The WLS-specific context

getFault

public Throwable getFault()
Deprecated. 
Gets a Throwable representing the current fault

Returns:
The fault

setFault

public void setFault(Throwable th)
Deprecated. 

hasFault

public boolean hasFault()
Deprecated. 

setProperty

public void setProperty(String name,
                        Object value)
Deprecated. 
Sets a property on the context

Specified by:
setProperty in interface MessageContext
Parameters:
name - The name of the property
value - The value of the property

getProperty

public Object getProperty(String name)
Deprecated. 
Gets a property on the context

Specified by:
getProperty in interface MessageContext
Parameters:
name - The name of the property
Returns:
The property value

removeProperty

public void removeProperty(String name)
Deprecated. 
Removes a property from the context

Specified by:
removeProperty in interface MessageContext
Parameters:
name - The name of the property

containsProperty

public boolean containsProperty(String name)
Deprecated. 
Determines if the context contains a given property

Specified by:
containsProperty in interface MessageContext
Parameters:
name - The name of the property
Returns:
true if the context contains a property with the given name

getPropertyNames

public Iterator getPropertyNames()
Deprecated. 
Gets an iterator over the property names

Specified by:
getPropertyNames in interface MessageContext
Returns:
An iterator over the property names

getHeaders

public MsgHeaders getHeaders()
Deprecated. 
Gets any message headers

Returns:
The message headers

setHeaders

public void setHeaders(MsgHeaders headers)
Deprecated. 
Parameters:
headers -

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02