Interface NativeJavaResourceIn
-
- All Superinterfaces:
NativeJavaResource
- All Known Subinterfaces:
NativeJavaResourceInOut
public interface NativeJavaResourceIn extends NativeJavaResource
Supports writing from a resource (in).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStream
getInputStream()
Returns an input stream to this resource, the caller is responsible for closing this when done.
-
-
-
Method Detail
-
getInputStream
InputStream getInputStream() throws IOException
Returns an input stream to this resource, the caller is responsible for closing this when done. Can return null, if the underlying value is null (e.g. optional InValue)- Returns:
- InputStream or null, when the underlying value is null (e.g. InValue = null)
- Throws:
IOException
- When the stream cannot be opened
-
-