Package lumis.content.bigdata
Interface ContentVersionDocument.Content
-
- Enclosing class:
- ContentVersionDocument
public static interface ContentVersionDocument.Content
API that provides access to content fields.- Since:
- 8.1.0
- Version:
- $Revision: 25304 $ $Date: 2022-10-22 22:51:05 -0300 (Sat, 22 Oct 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDefaultLocale()
Returns the value ofContentVersionDocumentType.ContentFields.DEFAULT_LOCALE
stored in this document.java.lang.String
getId()
Returns the value ofContentVersionDocumentType.ContentFields.ID
stored in this document.java.lang.String
getServiceInstanceId()
Returns the value ofContentVersionDocumentType.ContentFields.SERVICE_INSTANCE_ID
stored in this document.java.lang.String
getSourceId()
Returns the value ofContentVersionDocumentType.ContentFields.SOURCE_ID
stored in this document.void
setDefaultLocale(java.lang.String defaultLocale)
Sets the value forContentVersionDocumentType.ContentFields.DEFAULT_LOCALE
in this document.void
setId(java.lang.String id)
Sets the value forContentVersionDocumentType.ContentFields.ID
in this document.void
setServiceInstanceId(java.lang.String serviceInstanceId)
Sets the value forContentVersionDocumentType.ContentFields.SERVICE_INSTANCE_ID
in this document.void
setSourceId(java.lang.String sourceId)
Sets the value forContentVersionDocumentType.ContentFields.SOURCE_ID
in this document.
-
-
-
Method Detail
-
getId
java.lang.String getId()
Returns the value ofContentVersionDocumentType.ContentFields.ID
stored in this document.- Returns:
- the value of
ContentVersionDocumentType.ContentFields.ID
. - Since:
- 8.1.0
- See Also:
Content.getId()
-
setId
void setId(java.lang.String id)
Sets the value forContentVersionDocumentType.ContentFields.ID
in this document.- Parameters:
Id
- the value to set.- Since:
- 8.1.0
-
getServiceInstanceId
java.lang.String getServiceInstanceId()
Returns the value ofContentVersionDocumentType.ContentFields.SERVICE_INSTANCE_ID
stored in this document.- Returns:
- the value of
ContentVersionDocumentType.ContentFields.SERVICE_INSTANCE_ID
. - Since:
- 8.1.0
- See Also:
Content.getServiceInstanceId()
-
setServiceInstanceId
void setServiceInstanceId(java.lang.String serviceInstanceId)
Sets the value forContentVersionDocumentType.ContentFields.SERVICE_INSTANCE_ID
in this document.- Parameters:
serviceInstanceId
- the value to set.- Since:
- 8.1.0
- See Also:
Content.setServiceInstanceId(String)
-
getSourceId
java.lang.String getSourceId()
Returns the value ofContentVersionDocumentType.ContentFields.SOURCE_ID
stored in this document.- Returns:
- the value of
ContentVersionDocumentType.ContentFields.SOURCE_ID
. - Since:
- 8.1.0
- See Also:
Content.getSourceId()
-
setSourceId
void setSourceId(java.lang.String sourceId)
Sets the value forContentVersionDocumentType.ContentFields.SOURCE_ID
in this document.- Parameters:
sourceId
- the value to set.- Since:
- 8.1.0
- See Also:
Content.setSourceId(String)
-
getDefaultLocale
java.lang.String getDefaultLocale()
Returns the value ofContentVersionDocumentType.ContentFields.DEFAULT_LOCALE
stored in this document.- Returns:
- the value of
ContentVersionDocumentType.ContentFields.DEFAULT_LOCALE
. - Since:
- 8.1.0
- See Also:
Content.getDefaultLocale()
-
setDefaultLocale
void setDefaultLocale(java.lang.String defaultLocale)
Sets the value forContentVersionDocumentType.ContentFields.DEFAULT_LOCALE
in this document.- Parameters:
defaultLocale
- the value to set.- Since:
- 8.1.0
- See Also:
Content.setDefaultLocale(java.util.Locale)
-
-