wt.clients.dndMicroApplet
Interface HTTPParameterConstants

All Known Implementing Classes:
DropListener

public interface HTTPParameterConstants

Defines of all HTTP parameters generated by DnDMicroApplet.

Supported API: true

Extendable: true


Field Summary
static String DATA_ID_PARAM
          Name of the HTTP parameter used to carry the results of the POST request on the GET request for DnDMicroApplet.
static String DROP_ACTION_PARAM
          Name of the HTTP parameter used to carry the drop action code on DnDMicroApplet HTTP requests.
static String FILE_DATA_PARAM
          Name of the HTTP parameter used to carry file drop data on DnDMicroApplet HTTP requests.
static String RETURN_URL_PARAM
          Name of the HTTP parameter used to carry the return URL on DnDMicroApplet HTTP requests.
static String STRING_DATA_PARAM
          Name of the HTTP parameter used to carry string drop data on DnDMicroApplet HTTP requests.
static String UTF8_SIGNAL_PARAM
          Name of the HTTP parameter used by DnDMicroApplet on HTTP requests (both GET and POST) to explicitly denote that it is using the UTF-8 encoding for all non-ASCII character data being conveyed in the requests.
 

Field Detail

STRING_DATA_PARAM

public static final String STRING_DATA_PARAM
Name of the HTTP parameter used to carry string drop data on DnDMicroApplet HTTP requests. This data will be carried on the POST request if the data is too large for a GET. See also DnDMicroAppletConstants.FILE_DROP_URL_PARAM.

Supported API: true

See Also:
Constant Field Values

FILE_DATA_PARAM

public static final String FILE_DATA_PARAM
Name of the HTTP parameter used to carry file drop data on DnDMicroApplet HTTP requests. The parameter is simply repeated in the common case where there are multiple files. This data will be carried on the POST request if the data is too large for a GET. See also DnDMicroAppletConstants.STRING_DROP_URL_PARAM.

Supported API: true

See Also:
Constant Field Values

RETURN_URL_PARAM

public static final String RETURN_URL_PARAM
Name of the HTTP parameter used to carry the return URL on DnDMicroApplet HTTP requests. This data is always carried on the GET request only even if the size of the data requires a POST request. See DnDMicroAppletConstants.RETURN_URL_PARAM.

Supported API: true

See Also:
Constant Field Values

DATA_ID_PARAM

public static final String DATA_ID_PARAM
Name of the HTTP parameter used to carry the results of the POST request on the GET request for DnDMicroApplet. This is obviously only used on the GET request and then only when the size of the data requires a POST request.

Supported API: true

See Also:
Constant Field Values

DROP_ACTION_PARAM

public static final String DROP_ACTION_PARAM
Name of the HTTP parameter used to carry the drop action code on DnDMicroApplet HTTP requests. This data will be carried on the POST request (and not on the POST) if the data is too large for a GET. The codes are integers as defined by java.awt.dnd.DnDConstants.

Supported API: true

See Also:
Constant Field Values

UTF8_SIGNAL_PARAM

public static final String UTF8_SIGNAL_PARAM
Name of the HTTP parameter used by DnDMicroApplet on HTTP requests (both GET and POST) to explicitly denote that it is using the UTF-8 encoding for all non-ASCII character data being conveyed in the requests. This is done soley to key various Windchill mechanisms that can handle multiple encodings as to which encoding is actually being used.

Supported API: true

See Also:
Constant Field Values