Package org.apache.xmlgraphics.io
Interface TempResourceResolver
-
public interface TempResourceResolverImplementations of this interface resolve URIs for temporary files used by XGC. The temporary- resource URI scheme comes fromTempResourceURIGenerator.TMP_SCHEME.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutputStreamgetOutputStream(String id)Gets an temporary-output stream of a given identifier.ResourcegetResource(String id)Get a temporary-resource given the identifier pointing to said resource.
-
-
-
Method Detail
-
getResource
Resource getResource(String id) throws IOException
Get a temporary-resource given the identifier pointing to said resource.- Parameters:
id- the resource identifier- Returns:
- the resource
- Throws:
IOException- if an I/O error occured during resource acquisition
-
getOutputStream
OutputStream getOutputStream(String id) throws IOException
Gets an temporary-output stream of a given identifier.- Parameters:
id- the output stream identifier- Returns:
- the output stream
- Throws:
IOException- if an I/O error occured while creating an output stream
-
-