org.apache.geronimo.webservices
Interface WebServiceContainer.Request

Enclosing interface:
WebServiceContainer

public static interface WebServiceContainer.Request


Field Summary
static int CONNECT
          the HTTP CONNECT type
static int DELETE
          the HTTP DELETE type
static int GET
          the HTTP GET type
static int HEAD
          the HTTP HEAD type
static String HEADER_ACCEPT
          the Accept header
static String HEADER_ACCEPT_ENCODING
          the Accept-Encoding header
static String HEADER_ACCEPT_LANGUAGE
          the Accept-Language header
static String HEADER_CACHE_CONTROL
          the Cache-Control header
static String HEADER_CONNECTION
          the Connection header
static String HEADER_CONTENT_LENGTH
          the Content-Length header
static String HEADER_CONTENT_TYPE
          the Content-Type header
static String HEADER_COOKIE
          the Cookie header
static String HEADER_HOST
          the Host header
static String HEADER_SET_COOKIE
          the Set-Cookie header
static String HEADER_USER_AGENT
          the User-Agent header
static int OPTIONS
          the HTTP OPTIONS type
static int POST
          the HTTP POST type
static int PUT
          the HTTP PUT type
static int TRACE
          the HTTP TRACE type
static int UNSUPPORTED
          the HTTP UNSUPPORTED type
 
Method Summary
 Object getAttribute(String name)
           
 int getContentLength()
           
 String getContentType()
           
 String getHeader(String name)
           
 InputStream getInputStream()
           
 int getMethod()
           
 String getParameter(String name)
           
 Map getParameters()
           
 URI getURI()
           
 void setAttribute(String name, Object value)
           
 

Field Detail

OPTIONS

public static final int OPTIONS
the HTTP OPTIONS type

See Also:
Constant Field Values

GET

public static final int GET
the HTTP GET type

See Also:
Constant Field Values

HEAD

public static final int HEAD
the HTTP HEAD type

See Also:
Constant Field Values

POST

public static final int POST
the HTTP POST type

See Also:
Constant Field Values

PUT

public static final int PUT
the HTTP PUT type

See Also:
Constant Field Values

DELETE

public static final int DELETE
the HTTP DELETE type

See Also:
Constant Field Values

TRACE

public static final int TRACE
the HTTP TRACE type

See Also:
Constant Field Values

CONNECT

public static final int CONNECT
the HTTP CONNECT type

See Also:
Constant Field Values

UNSUPPORTED

public static final int UNSUPPORTED
the HTTP UNSUPPORTED type

See Also:
Constant Field Values

HEADER_ACCEPT

public static final String HEADER_ACCEPT
the Accept header

See Also:
Constant Field Values

HEADER_ACCEPT_ENCODING

public static final String HEADER_ACCEPT_ENCODING
the Accept-Encoding header

See Also:
Constant Field Values

HEADER_ACCEPT_LANGUAGE

public static final String HEADER_ACCEPT_LANGUAGE
the Accept-Language header

See Also:
Constant Field Values

HEADER_CONTENT_TYPE

public static final String HEADER_CONTENT_TYPE
the Content-Type header

See Also:
Constant Field Values

HEADER_CONTENT_LENGTH

public static final String HEADER_CONTENT_LENGTH
the Content-Length header

See Also:
Constant Field Values

HEADER_CONNECTION

public static final String HEADER_CONNECTION
the Connection header

See Also:
Constant Field Values

HEADER_CACHE_CONTROL

public static final String HEADER_CACHE_CONTROL
the Cache-Control header

See Also:
Constant Field Values

HEADER_HOST

public static final String HEADER_HOST
the Host header

See Also:
Constant Field Values

HEADER_USER_AGENT

public static final String HEADER_USER_AGENT
the User-Agent header

See Also:
Constant Field Values

HEADER_SET_COOKIE

public static final String HEADER_SET_COOKIE
the Set-Cookie header

See Also:
Constant Field Values

HEADER_COOKIE

public static final String HEADER_COOKIE
the Cookie header

See Also:
Constant Field Values
Method Detail

getHeader

public String getHeader(String name)

getURI

public URI getURI()

getContentLength

public int getContentLength()

getContentType

public String getContentType()

getInputStream

public InputStream getInputStream()
                           throws IOException
Throws:
IOException

getMethod

public int getMethod()

getParameter

public String getParameter(String name)

getParameters

public Map getParameters()

getAttribute

public Object getAttribute(String name)

setAttribute

public void setAttribute(String name,
                         Object value)


Copyright © 2003-2007 Apache Software Foundation. All Rights Reserved.