Package lumis.service.mediaalbum
Class MediaResumeConfig
- java.lang.Object
-
- lumis.service.mediaalbum.MediaResumeConfig
-
public class MediaResumeConfig extends Object
Auxiliary resumed media entity, used to persists the media attributes.- Since:
- 7.0.0
- Version:
- $Revision: 21230 $ $Date: 2018-04-24 19:07:57 -0300 (Tue, 24 Apr 2018) $
-
-
Constructor Summary
Constructors Constructor Description MediaResumeConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlbumContentId()
Returns the album content identifier.long
getLastModifiedDateTime()
Returns the last modified date.String
getMediaFile()
Returns the media file identifier.String
getMediaId()
Returns the media identifier.int
getPosition()
Returns the current order of the media in their album.String
getThumbnailMediaFile()
Returns the thumbnail media file.String
getTitle()
Returns the media title.boolean
isApproved()
Returns whether this media is approved or not.void
setAlbumContentId(String albumContentId)
Sets the album content identifier.void
setApproved(boolean approved)
Sets whether this media has been approved or not.void
setLastModifiedDateTime(long lastModifiedDateTime)
Sets the last modified date.void
setMediaId(String mediaId)
Sets the media Id.void
setPosition(int position)
Sets the current order of the media in their album.void
setThumbnailMediaFile(String thumbnailMediaFile)
Sets the thumbnail media file.void
setTitle(String title)
Sets the media title.
-
-
-
Method Detail
-
getMediaId
public String getMediaId()
Returns the media identifier.- Returns:
- the media identifier
- Since:
- 7.0.0
-
getTitle
public String getTitle()
Returns the media title.- Returns:
- the media title.
- Since:
- 7.0.0
-
getAlbumContentId
public String getAlbumContentId()
Returns the album content identifier.- Returns:
- the album content identifier.
- Since:
- 7.0.0
-
getThumbnailMediaFile
public String getThumbnailMediaFile()
Returns the thumbnail media file.- Returns:
- the thumbnail media file
- Since:
- 7.0.0
-
getPosition
public int getPosition()
Returns the current order of the media in their album.- Returns:
- the current order of the media in their album
- Since:
- 7.0.0
-
getLastModifiedDateTime
public long getLastModifiedDateTime()
Returns the last modified date.- Returns:
- the last modified date
- Since:
- 7.0.0
-
isApproved
public boolean isApproved()
Returns whether this media is approved or not.- Returns:
- whether this media is approved or not.
- Since:
- 7.0.0
-
getMediaFile
public String getMediaFile()
Returns the media file identifier.- Returns:
- the media file identifier
- Since:
- 10.4.0
-
setMediaId
public void setMediaId(String mediaId)
Sets the media Id.- Parameters:
mediaId
- the media identifier.- Since:
- 7.0.0
-
setTitle
public void setTitle(String title)
Sets the media title.- Parameters:
title
- the media title.- Since:
- 7.0.0
-
setAlbumContentId
public void setAlbumContentId(String albumContentId)
Sets the album content identifier.- Parameters:
albumContentId
- the album content identifier.- Since:
- 7.0.0
-
setThumbnailMediaFile
public void setThumbnailMediaFile(String thumbnailMediaFile)
Sets the thumbnail media file.- Parameters:
thumbnailMediaFile
- the thumbnail media file.- Since:
- 7.0.0
-
setPosition
public void setPosition(int position)
Sets the current order of the media in their album.- Parameters:
orderInAlbum
- the current order of the media in their album.- Since:
- 7.0.0
-
setLastModifiedDateTime
public void setLastModifiedDateTime(long lastModifiedDateTime)
Sets the last modified date.- Parameters:
lastModifiedDateTime
- the last modified date.- Since:
- 7.0.0
-
setApproved
public void setApproved(boolean approved)
Sets whether this media has been approved or not.- Parameters:
approved
- indicates whether this media has been approved or not.- Since:
- 7.0.0
-
-