Interface WebResource
- All Known Implementing Classes:
WebResource.ByteResource
public interface WebResource
Represents a customizable resource.
You can use the create methods for simple resources when using ResourceService
.
It is assumed that any text based files are encoded in UTF-8.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
asBytes()
asStream()
asString()
Return the resource as a UTF-8 String.static WebResource
create
(byte[] content) Create a new WebResource from byte array.static WebResource
create
(InputStream in) Creates a new WebResource from an InputStream.static WebResource
Create a new WebResource from an UTF-8 String.
-
Method Details
-
create
Create a new WebResource from byte array.- Parameters:
content
- Bytes of the resource.- Returns:
- WebResource.
-
create
Create a new WebResource from an UTF-8 String.- Parameters:
utf8String
- String in UTF-8 encoding.- Returns:
- WebResource.
-
create
Creates a new WebResource from an InputStream.- Parameters:
in
- InputStream for the resource, closed after inside the method.- Returns:
- WebResource.
- Throws:
IOException
- If the stream can not be read.
-
asBytes
byte[] asBytes() -
asString
String asString()Return the resource as a UTF-8 String.- Returns:
- The resource in UTF-8.
-
asStream
InputStream asStream()
-