org.systinet.wasp.webservice
Interface ServiceClientContext


public interface ServiceClientContext

ServiceClientContext represents unique context for a service client. This context is created during the ServiceClient creation. Reference to created context is held in ServiceClient class. An additional data associated with the this context is accessible using the method getContextData(). These data are also accessible from the CallContext.getContextData().

Since:
4.5
Component:
Core

Field Summary
static java.lang.String HTTP_PROXY_PASSWORD
          Deprecated. See CallContext.HTTP_PROXY_PASSWORD
static java.lang.String HTTP_PROXY_USER_NAME
          Deprecated. See CallContext.HTTP_PROXY_USER_NAME
static java.lang.String HTTP_REQUEST_CHUNKING
          Deprecated. See CallContext.HTTP_REQUEST_CHUNKING
static java.lang.String MAIL_INPUT_PASSWORD
          Deprecated. See CallContext.MAIL_INPUT_PASSWORD
static java.lang.String MAIL_OUTPUT_FROM
          Deprecated. See CallContext.MAIL_OUTPUT_FROM
static java.lang.String MAIL_OUTPUT_SERVER
          Deprecated. See CallContext.MAIL_OUTPUT_SERVER
 
Method Summary
 java.util.Map getContextData()
          Returns map of additional data associated with this context.
 ServiceClient getServiceClient()
          Retrieves service client.
 

Field Detail

HTTP_REQUEST_CHUNKING

public static final java.lang.String HTTP_REQUEST_CHUNKING
Deprecated. See CallContext.HTTP_REQUEST_CHUNKING

The key associated with HTTP chunging of client requests. This property has a string value equals to true if there is a request chunking required. The default value is false - no request chunking.

See Also:
Constant Field Values

HTTP_PROXY_USER_NAME

public static final java.lang.String HTTP_PROXY_USER_NAME
Deprecated. See CallContext.HTTP_PROXY_USER_NAME

The key associated with the HTTP proxy username is used to proxy authenticate. This property has a string value.

See Also:
Constant Field Values

HTTP_PROXY_PASSWORD

public static final java.lang.String HTTP_PROXY_PASSWORD
Deprecated. See CallContext.HTTP_PROXY_PASSWORD

The key associated with the HTTP proxy password is used to proxy authenticate. This property has a string value.

See Also:
Constant Field Values

MAIL_OUTPUT_SERVER

public static final java.lang.String MAIL_OUTPUT_SERVER
Deprecated. See CallContext.MAIL_OUTPUT_SERVER

The key associated with the MAIL output server. This property has a string value like smtp://smtp.idoox.com.

See Also:
Constant Field Values

MAIL_OUTPUT_FROM

public static final java.lang.String MAIL_OUTPUT_FROM
Deprecated. See CallContext.MAIL_OUTPUT_FROM

The key associated with the MAIL output reverse path. This property has a string value like wasp@idoox.com.

See Also:
Constant Field Values

MAIL_INPUT_PASSWORD

public static final java.lang.String MAIL_INPUT_PASSWORD
Deprecated. See CallContext.MAIL_INPUT_PASSWORD

The key associated with the MAIL input password. This property has a string value and is used like the password for mail input server (for example, POP client transport) when new client connection is created - it's passed in properties in Transport.newConnection(org.idoox.transport.URI, org.idoox.transport.TransportMethod, java.util.Map).

See Also:
Constant Field Values
Method Detail

getServiceClient

public ServiceClient getServiceClient()
Retrieves service client.

Returns:
service client

getContextData

public java.util.Map getContextData()
Returns map of additional data associated with this context.

Returns:
Map of additional data