Package org.flowable.content.api
Interface ContentObjectStorageMetadata
public interface ContentObjectStorageMetadata
The metadata passed when creating a
ContentObject
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptionThe mime type of the content.getName()
The name of the content.The scope id of the content.The scope type of the contentThe object being stored.The tenant id of the content
-
Method Details
-
getName
String getName()The name of the content. -
getScopeId
String getScopeId()The scope id of the content. -
getScopeType
String getScopeType()The scope type of the content -
getMimeType
String getMimeType()The mime type of the content. -
getTenantId
String getTenantId()The tenant id of the content -
getStoredObject
Object getStoredObject()The object being stored.
-