|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.core.io.AbstractResource org.springframework.core.io.AbstractFileResolvingResource org.springframework.web.portlet.context.PortletContextResource
public class PortletContextResource
Resource
implementation for
PortletContext
resources, interpreting
relative paths within the portlet application root directory.
Always supports stream access and URL access, but only allows
java.io.File
access when the portlet application archive
is expanded.
PortletContext.getResourceAsStream(java.lang.String)
,
PortletContext.getRealPath(java.lang.String)
Constructor Summary | |
---|---|
PortletContextResource(PortletContext portletContext,
String path)
Create a new PortletContextResource. |
Method Summary | |
---|---|
Resource |
createRelative(String relativePath)
This implementation throws a FileNotFoundException, assuming that relative resources cannot be created for this resource. |
boolean |
equals(Object obj)
This implementation compares description strings. |
boolean |
exists()
This implementation checks PortletContext.getResource . |
String |
getDescription()
Return a description for this resource, to be used for error output when working with the resource. |
File |
getFile()
This implementation resolves "file:" URLs or alternatively delegates to PortletContext.getRealPath , throwing a FileNotFoundException
if not found or not resolvable. |
String |
getFilename()
This implementation always returns null ,
assuming that this resource type does not have a filename. |
InputStream |
getInputStream()
This implementation delegates to PortletContext.getResourceAsStream ,
but throws a FileNotFoundException if not found. |
String |
getPath()
Return the path for this resource. |
String |
getPathWithinContext()
Return the path within the enclosing 'context'. |
PortletContext |
getPortletContext()
Return the PortletContext for this resource. |
URL |
getURL()
This implementation delegates to PortletContext.getResource ,
but throws a FileNotFoundException if no resource found. |
int |
hashCode()
This implementation returns the description's hash code. |
boolean |
isReadable()
This implementation delegates to PortletContext.getResourceAsStream ,
which returns null in case of a non-readable resource (e.g. |
Methods inherited from class org.springframework.core.io.AbstractFileResolvingResource |
---|
contentLength, getFile, getFileForLastModifiedCheck, lastModified |
Methods inherited from class org.springframework.core.io.AbstractResource |
---|
getURI, isOpen, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.springframework.core.io.Resource |
---|
contentLength, getURI, isOpen, lastModified |
Constructor Detail |
---|
public PortletContextResource(PortletContext portletContext, String path)
The Portlet spec requires that resource paths start with a slash, even if many containers accept paths without leading slash too. Consequently, the given path will be prepended with a slash if it doesn't already start with one.
portletContext
- the PortletContext to load frompath
- the path of the resourceMethod Detail |
---|
public final PortletContext getPortletContext()
public final String getPath()
public boolean exists()
PortletContext.getResource
.
exists
in interface Resource
exists
in class AbstractFileResolvingResource
PortletContext.getResource(String)
public boolean isReadable()
PortletContext.getResourceAsStream
,
which returns null
in case of a non-readable resource (e.g. a directory).
isReadable
in interface Resource
isReadable
in class AbstractFileResolvingResource
PortletContext.getResourceAsStream(String)
public InputStream getInputStream() throws IOException
PortletContext.getResourceAsStream
,
but throws a FileNotFoundException if not found.
getInputStream
in interface InputStreamSource
IOException
- if the stream could not be openedPortletContext.getResourceAsStream(String)
public URL getURL() throws IOException
PortletContext.getResource
,
but throws a FileNotFoundException if no resource found.
getURL
in interface Resource
getURL
in class AbstractResource
IOException
- if the resource cannot be resolved as URL,
i.e. if the resource is not available as descriptorPortletContext.getResource(String)
public File getFile() throws IOException
PortletContext.getRealPath
, throwing a FileNotFoundException
if not found or not resolvable.
getFile
in interface Resource
getFile
in class AbstractFileResolvingResource
IOException
- if the resource cannot be resolved as absolute
file path, i.e. if the resource is not available in a file systemPortletContext.getResource(String)
,
PortletContext.getRealPath(String)
public Resource createRelative(String relativePath)
AbstractResource
createRelative
in interface Resource
createRelative
in class AbstractResource
relativePath
- the relative path (relative to this resource)
public String getFilename()
AbstractResource
null
,
assuming that this resource type does not have a filename.
getFilename
in interface Resource
getFilename
in class AbstractResource
public String getDescription()
Resource
Implementations are also encouraged to return this value
from their toString
method.
getDescription
in interface Resource
Object.toString()
public String getPathWithinContext()
ContextResource
This is typically path relative to a context-specific root directory, e.g. a ServletContext root or a PortletContext root.
getPathWithinContext
in interface ContextResource
public boolean equals(Object obj)
AbstractResource
equals
in class AbstractResource
Resource.getDescription()
public int hashCode()
AbstractResource
hashCode
in class AbstractResource
Resource.getDescription()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |