Package com.technia.tif.enovia.payload
Interface PayloadData
-
- All Superinterfaces:
InputStreamProvider,java.io.Serializable,SizeAwareInputStreamProvider
@API public interface PayloadData extends java.io.Serializable, SizeAwareInputStreamProvider
- Since:
- 31 okt 2012
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetContentType()java.lang.StringgetEncoding()java.lang.StringgetName()voidrelease()Releases this instance and all underlying resources related to this instance.-
Methods inherited from interface com.technia.tif.core.io.InputStreamProvider
getInputStream
-
Methods inherited from interface com.technia.tif.core.io.SizeAwareInputStreamProvider
getSize
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- The name (if defined) for this payload data instance.
- Since:
- 2021.1.0
-
getEncoding
java.lang.String getEncoding()
- Returns:
- The encoding used (if content type is text)
-
getContentType
java.lang.String getContentType()
- Returns:
- The content type of the payload data.
-
release
void release()
Releases this instance and all underlying resources related to this instance.Note that after you have released this instance you will no longer be able to read/use the generated Payload.
-
-