org.apache.geronimo.webservices
Interface WebServiceContainer.Request

All Known Implementing Classes:
JettyEJBWebServiceContext.RequestAdapter, TomcatEJBWebServiceContext.RequestAdapter
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 getContextPath()
           
 String getHeader(String name)
           
 InputStream getInputStream()
           
 int getMethod()
           
 String getParameter(String name)
           
 Map getParameters()
           
 String getRemoteAddr()
           
 URI getURI()
           
 void setAttribute(String name, Object value)
           
 

Field Detail

OPTIONS

static final int OPTIONS
the HTTP OPTIONS type

See Also:
Constant Field Values

GET

static final int GET
the HTTP GET type

See Also:
Constant Field Values

HEAD

static final int HEAD
the HTTP HEAD type

See Also:
Constant Field Values

POST

static final int POST
the HTTP POST type

See Also:
Constant Field Values

PUT

static final int PUT
the HTTP PUT type

See Also:
Constant Field Values

DELETE

static final int DELETE
the HTTP DELETE type

See Also:
Constant Field Values

TRACE

static final int TRACE
the HTTP TRACE type

See Also:
Constant Field Values

CONNECT

static final int CONNECT
the HTTP CONNECT type

See Also:
Constant Field Values

UNSUPPORTED

static final int UNSUPPORTED
the HTTP UNSUPPORTED type

See Also:
Constant Field Values

HEADER_ACCEPT

static final String HEADER_ACCEPT
the Accept header

See Also:
Constant Field Values

HEADER_ACCEPT_ENCODING

static final String HEADER_ACCEPT_ENCODING
the Accept-Encoding header

See Also:
Constant Field Values

HEADER_ACCEPT_LANGUAGE

static final String HEADER_ACCEPT_LANGUAGE
the Accept-Language header

See Also:
Constant Field Values

HEADER_CONTENT_TYPE

static final String HEADER_CONTENT_TYPE
the Content-Type header

See Also:
Constant Field Values

HEADER_CONTENT_LENGTH

static final String HEADER_CONTENT_LENGTH
the Content-Length header

See Also:
Constant Field Values

HEADER_CONNECTION

static final String HEADER_CONNECTION
the Connection header

See Also:
Constant Field Values

HEADER_CACHE_CONTROL

static final String HEADER_CACHE_CONTROL
the Cache-Control header

See Also:
Constant Field Values

HEADER_HOST

static final String HEADER_HOST
the Host header

See Also:
Constant Field Values

HEADER_USER_AGENT

static final String HEADER_USER_AGENT
the User-Agent header

See Also:
Constant Field Values

HEADER_SET_COOKIE

static final String HEADER_SET_COOKIE
the Set-Cookie header

See Also:
Constant Field Values

HEADER_COOKIE

static final String HEADER_COOKIE
the Cookie header

See Also:
Constant Field Values
Method Detail

getHeader

String getHeader(String name)

getURI

URI getURI()

getContentLength

int getContentLength()

getContentType

String getContentType()

getInputStream

InputStream getInputStream()
                           throws IOException
Throws:
IOException

getMethod

int getMethod()

getParameter

String getParameter(String name)

getParameters

Map getParameters()

getAttribute

Object getAttribute(String name)

setAttribute

void setAttribute(String name,
                  Object value)

getRemoteAddr

String getRemoteAddr()

getContextPath

String getContextPath()


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