public class ContextImpl extends Object implements Context
| Constructor and Description | 
|---|
ContextImpl(ServletContext servletContext)  | 
| Modifier and Type | Method and Description | 
|---|---|
Object | 
getAttribute(String name)
Returns an attribute previously stored into the context with the given name. 
 | 
List<String> | 
getAttributeNames()
Returns the names of all attributes of the context, sorted alphabetically. 
 | 
String | 
getInitParameter(String name)
Returns an initial parameter value defined by servlet. 
 | 
String | 
getMimeType(String file)
Returns the MIME content type of the specified file, or null if no content type is known. 
 | 
File | 
getRealFile(String path)
Attempts to find the actual file, on the file system, that would be provided by the servlet container for the
 given path (which must start with a leading slash). 
 | 
URL | 
getResource(String path)
Returns a URL to a resource stored within the context. 
 | 
List<String> | 
getResourcePaths(String path)
Looks for resources within the web application within the supplied path. 
 | 
public ContextImpl(ServletContext servletContext)
public URL getResource(String path)
ContextgetResource in interface Contextpath - to the resource (with a leading slash)public File getRealFile(String path)
ContextContext.getResource(String).getRealFile in interface Contextpath - to  the resource (with a leading slash)public String getInitParameter(String name)
ContextgetInitParameter in interface Contextpublic List<String> getResourcePaths(String path)
ContextgetResourcePaths in interface Contextpath - to search for (should start with a leading slash)public Object getAttribute(String name)
ContextgetAttribute in interface Contextname - used to retrieve the attributepublic List<String> getAttributeNames()
ContextgetAttributeNames in interface Contextpublic String getMimeType(String file)
ContextgetMimeType in interface Contextfile - name of file${project.version} - Copyright © 2003-2015 The Apache Software Foundation.