Package lumis.portal.activitystream
Interface ActivityDocument.IActivityObject
-
- Enclosing class:
- ActivityDocument
@StableMinor(version="14.0", sinceVersion="8.2") public static interface ActivityDocument.IActivityObject
Contains data in anActivityDocument
that corresponds to anActivityObject
.- Since:
- 8.2.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDisplayName()
Returns the object's display name stored in this document.String
getId()
Returns the object's identifier stored in this document.String
getIntroduction()
Returns the object's introduction stored in this document.String
getIntroductionImageUrl()
Returns the object's introduction image url stored in this document.String
getLocale()
Returns the object's locale stored in this document.String
getType()
Returns the object's type stored in this document.String
getUrl()
Returns the object's URL stored in this document.void
setDisplayName(String displayName)
Sets the object's display name stored in this document.void
setId(String id)
Sets the object's identifier stored in this document.void
setIntroduction(String introduction)
Sets the object's introduction stored in this document.void
setIntroductionImageUrl(String introductionImageUrl)
Sets the object's introduction image url stored in this document.void
setLocale(String locale)
Sets the object's locale stored in this document.void
setType(String type)
Sets the object's type stored in this document.void
setUrl(String url)
Sets the object's URL stored in this document.
-
-
-
Method Detail
-
getId
String getId()
Returns the object's identifier stored in this document. (ActivityDocumentType.ObjectFields.ID
- Returns:
- the identifier.
- Since:
- 8.2.0
- See Also:
ActivityObject.getId()
,ActivityDocumentType.ObjectFields.ID
,ActivityDocumentType.TargetFields.ID
-
setId
void setId(String id)
Sets the object's identifier stored in this document.- Parameters:
id
- the value to set.- Since:
- 8.2.0
-
getType
String getType()
Returns the object's type stored in this document.- Returns:
- the type.
- Since:
- 8.2.0
- See Also:
ActivityObject.getType()
,ActivityDocumentType.ObjectFields.TYPE
,ActivityDocumentType.TargetFields.TYPE
-
setType
void setType(String type)
Sets the object's type stored in this document.- Parameters:
type
- the value to set.- Since:
- 8.2.0
-
getDisplayName
String getDisplayName()
Returns the object's display name stored in this document.- Returns:
- the display name.
- Since:
- 8.2.0
- See Also:
ActivityObject.getDisplayName()
,ActivityDocumentType.ObjectFields.DISPLAY_NAME
,ActivityDocumentType.TargetFields.DISPLAY_NAME
-
setDisplayName
void setDisplayName(String displayName)
Sets the object's display name stored in this document.- Parameters:
displayName
- the value to set.- Since:
- 8.2.0
-
getIntroduction
String getIntroduction()
Returns the object's introduction stored in this document.- Returns:
- the introduction.
- Since:
- 8.2.0
- See Also:
ActivityObject.getIntroduction()
,ActivityDocumentType.ObjectFields.INTRODUCTION
,ActivityDocumentType.TargetFields.INTRODUCTION
-
setIntroduction
void setIntroduction(String introduction)
Sets the object's introduction stored in this document.- Parameters:
introduction
- the value to set.- Since:
- 8.2.0
-
getIntroductionImageUrl
String getIntroductionImageUrl()
Returns the object's introduction image url stored in this document.- Returns:
- the introduction image url.
- Since:
- 8.2.0
- See Also:
ActivityObject.getIntroductionImageUrl()
,ActivityDocumentType.ObjectFields.IMAGE_URL
,ActivityDocumentType.TargetFields.IMAGE_URL
-
setIntroductionImageUrl
void setIntroductionImageUrl(String introductionImageUrl)
Sets the object's introduction image url stored in this document.- Parameters:
introductionImageUrl
- the value to set.- Since:
- 8.2.0
-
getUrl
String getUrl()
Returns the object's URL stored in this document.- Returns:
- the URL.
- Since:
- 8.2.0
- See Also:
ActivityObject.getUrl()
,ActivityDocumentType.ObjectFields.URL
,ActivityDocumentType.TargetFields.URL
-
setUrl
void setUrl(String url)
Sets the object's URL stored in this document.- Parameters:
url
- the value to set.- Since:
- 8.2.0
-
getLocale
String getLocale()
Returns the object's locale stored in this document.- Returns:
- the locale
- Since:
- 8.2.0
- See Also:
ActivityObject.getUrl()
,ActivityDocumentType.ObjectFields.LOCALE
,ActivityDocumentType.TargetFields.LOCALE
-
setLocale
void setLocale(String locale)
Sets the object's locale stored in this document.- Parameters:
locale
- the value to set.- Since:
- 8.2.0
-
-