|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ClassLoaderWriter
The class loader writer allows to modify the resources loaded by a
DynamicClassLoaderProvider
. For example a class loader writer
could write generated class files into the repository or the temporary
file system.
Method Summary | |
---|---|
boolean |
delete(String path)
Delete the class/resource |
InputStream |
getInputStream(String path)
Get the input stream for a class or resource handled by the underlying class loader. |
long |
getLastModified(String path)
Return the last modified for the class or resource. |
OutputStream |
getOutputStream(String path)
Get the output stream for a class or resource handled by the underlying class loader. |
boolean |
rename(String oldPath,
String newPath)
Rename a class/resource. |
Method Detail |
---|
OutputStream getOutputStream(String path)
path
- The path of the class/resource.
InputStream getInputStream(String path) throws IOException
path
- The path of the class/resource.
IOException
- If the resource/class does not exist.long getLastModified(String path)
path
- The path of the class/resource.
-1
if
the information can't be detected.boolean delete(String path)
path
- The path of the class/resource.
true
if the resource exists and could be deleted,
false
otherwise.boolean rename(String oldPath, String newPath)
oldPath
- The path of the class/resource.newPath
- The new path.
true
if the renaming has been successful.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |