Uses of Class
org.apache.tomcat.util.buf.MessageBytes

Packages that use MessageBytes
org.apache.tomcat.core Architecture 
org.apache.tomcat.modules.server Interceptors that are used to connect with a web server, including the standalone http implementation. 
org.apache.tomcat.util Utilities used by the rest of com.sun.web.* 
org.apache.tomcat.util.buf Buffers and Encodings 
org.apache.tomcat.util.collections Specialized collections 
org.apache.tomcat.util.http Special utils for handling HTTP-specific entities - headers, parameters, cookies, etc. 
org.apache.tomcat.util.http.mapper   
 

Uses of MessageBytes in org.apache.tomcat.core
 

Fields in org.apache.tomcat.core declared as MessageBytes
protected  MessageBytes Request.schemeMB
           
protected  MessageBytes Request.unparsedURIMB
           
protected  MessageBytes Request.methodMB
           
protected  MessageBytes Request.uriMB
           
protected  MessageBytes Request.queryMB
           
protected  MessageBytes Request.protoMB
           
protected  MessageBytes Request.contextMB
           
protected  MessageBytes Request.servletPathMB
           
protected  MessageBytes Request.pathInfoMB
           
protected  MessageBytes Request.remoteAddrMB
           
protected  MessageBytes Request.remoteHostMB
           
protected  MessageBytes Request.contentTypeMB
           
protected  MessageBytes Request.serverNameMB
           
 

Methods in org.apache.tomcat.core that return MessageBytes
 MessageBytes ServerSession.getId()
          Return the session identifier for this session.
 MessageBytes Request.scheme()
           
 MessageBytes Request.method()
           
 MessageBytes Request.requestURI()
           
 MessageBytes Request.unparsedURI()
           
 MessageBytes Request.query()
           
 MessageBytes Request.queryString()
           
 MessageBytes Request.servletPath()
           
 MessageBytes Request.pathInfo()
           
 MessageBytes Request.protocol()
           
 MessageBytes Request.serverName()
          Return the buffer holding the server name, if any.
 MessageBytes Request.remoteAddr()
           
 MessageBytes Request.remoteHost()
           
 MessageBytes Request.contentType()
           
 

Methods in org.apache.tomcat.core with parameters of type MessageBytes
 void Request.setContentType(MessageBytes mb)
          Deprecated.  
 

Uses of MessageBytes in org.apache.tomcat.modules.server
 

Methods in org.apache.tomcat.modules.server that return MessageBytes
 MessageBytes Ajp13Packet.addHeader(MimeHeaders headers)
           
 

Methods in org.apache.tomcat.modules.server with parameters of type MessageBytes
 int Http10.processRequestLine(MessageBytes methodMB, MessageBytes uriMB, MessageBytes queryMB, MessageBytes protocolMB)
          Parse a request line
 void Ajp13Packet.getMessageBytes(MessageBytes mb)
           
 

Uses of MessageBytes in org.apache.tomcat.util
 

Methods in org.apache.tomcat.util with parameters of type MessageBytes
 java.lang.Object PrefixMapper.getLongestPrefixMatch(MessageBytes hostMB, MessageBytes pathMB)
          Match a prefix rule - /foo/bar/index.html/abc
 

Uses of MessageBytes in org.apache.tomcat.util.buf
 

Methods in org.apache.tomcat.util.buf that return MessageBytes
 MessageBytes TimeStamp.getName()
          Return the "name" of the timestamp.
static MessageBytes MessageBytes.newInstance()
          Construct a new MessageBytes instance
 MessageBytes MessageBytes.getClone()
           
 MessageBytes MessageBytes.MessageBytesFactory.newInstance()
           
 

Methods in org.apache.tomcat.util.buf with parameters of type MessageBytes
 void UDecoder.convert(MessageBytes mb)
          URLDecode, will modify the source Includes converting '+' to ' '.
 void UDecoder.convert(MessageBytes mb, boolean query)
          URLDecode, will modify the source
 boolean MessageBytes.equals(MessageBytes mb)
           
 void MessageBytes.duplicate(MessageBytes src)
          Copy the src into this MessageBytes, allocating more space if needed
 void C2BConverter.convert(MessageBytes mb)
          Convert a message bytes chars to bytes
 

Uses of MessageBytes in org.apache.tomcat.util.collections
 

Methods in org.apache.tomcat.util.collections that return MessageBytes
 MessageBytes MultiMap.getName(int n)
          Returns the Nth header name This may be used to iterate through all header fields.
 MessageBytes MultiMap.getValue(int n)
          Returns the Nth header value This may be used to iterate through all header fields.
 MessageBytes MultiMap.get(java.lang.String name)
           
 

Uses of MessageBytes in org.apache.tomcat.util.http
 

Methods in org.apache.tomcat.util.http that return MessageBytes
 MessageBytes ServerCookie.getComment()
           
 MessageBytes ServerCookie.getDomain()
           
 MessageBytes ServerCookie.getPath()
           
 MessageBytes ServerCookie.getName()
           
 MessageBytes ServerCookie.getValue()
           
 MessageBytes MimeHeaders.getName(int n)
          Returns the Nth header name, or null if there is no such header.
 MessageBytes MimeHeaders.getValue(int n)
          Returns the Nth header value, or null if there is no such header.
 MessageBytes MimeHeaders.addValue(java.lang.String name)
          Create a new named header , return the MessageBytes container for the new value
 MessageBytes MimeHeaders.addValue(byte[] b, int startN, int len)
          Create a new named header using un-translated byte[].
 MessageBytes MimeHeaders.addValue(char[] c, int startN, int len)
          Create a new named header using translated char[].
 MessageBytes MimeHeaders.setValue(java.lang.String name)
          Allow "set" operations - return a MessageBytes container for the header value ( existing header or new if this .
 MessageBytes MimeHeaders.getValue(java.lang.String name)
          Finds and returns a header field with the given name.
 MessageBytes BaseRequest.method()
          Get the method.
 MessageBytes BaseRequest.protocol()
          Get the protocol
 MessageBytes BaseRequest.requestURI()
          Get the request uri
 MessageBytes BaseRequest.remoteAddr()
          Get the remote address
 MessageBytes BaseRequest.remoteHost()
          Get the remote host
 MessageBytes BaseRequest.serverName()
          Get the server name
 MessageBytes BaseRequest.remoteUser()
          Get the remote user
 MessageBytes BaseRequest.authType()
          Get the auth type
 MessageBytes BaseRequest.queryString()
          Get the query string
 MessageBytes BaseRequest.authorization()
          Get the authorization credentials
 MessageBytes BaseRequest.contentType()
          Get the content type
 MessageBytes BaseRequest.instanceId()
          Get the host id ( or jvmRoute )
 MessageBytes BaseRequest.jvmRoute()
           
 

Methods in org.apache.tomcat.util.http with parameters of type MessageBytes
 void Parameters.setQuery(MessageBytes queryMB)
           
 void Parameters.processParameters(MessageBytes data)
           
 

Uses of MessageBytes in org.apache.tomcat.util.http.mapper
 

Fields in org.apache.tomcat.util.http.mapper declared as MessageBytes
 MessageBytes MappingData.contextPath
           
 MessageBytes MappingData.requestPath
           
 MessageBytes MappingData.wrapperPath
           
 MessageBytes MappingData.pathInfo
           
 MessageBytes MappingData.redirectPath
           
 

Methods in org.apache.tomcat.util.http.mapper with parameters of type MessageBytes
 void Mapper.map(MessageBytes host, MessageBytes uri, MappingData mappingData)
          Map the specified host name and URI, mutating the given mapping data.
 void Mapper.map(MessageBytes uri, MappingData mappingData)
          Map the specified URI relative to the context, mutating the given mapping data.
 



Copyright ? 2001 Apache Software Foundation. All Rights Reserved.