Class MediaResumeConfig


  • public class MediaResumeConfig
    extends java.lang.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) $
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getAlbumContentId()
      Returns the album content identifier.
      long getLastModifiedDateTime()
      Returns the last modified date.
      java.lang.String getMediaFile()
      Returns the media file identifier.
      java.lang.String getMediaId()
      Returns the media identifier.
      int getPosition()
      Returns the current order of the media in their album.
      java.lang.String getThumbnailMediaFile()
      Returns the thumbnail media file.
      java.lang.String getTitle()
      Returns the media title.
      boolean isApproved()
      Returns whether this media is approved or not.
      void setAlbumContentId​(java.lang.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​(java.lang.String mediaId)
      Sets the media Id.
      void setPosition​(int position)
      Sets the current order of the media in their album.
      void setThumbnailMediaFile​(java.lang.String thumbnailMediaFile)
      Sets the thumbnail media file.
      void setTitle​(java.lang.String title)
      Sets the media title.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MediaResumeConfig

        public MediaResumeConfig()
    • Method Detail

      • getMediaId

        public java.lang.String getMediaId()
        Returns the media identifier.
        Returns:
        the media identifier
        Since:
        7.0.0
      • getTitle

        public java.lang.String getTitle()
        Returns the media title.
        Returns:
        the media title.
        Since:
        7.0.0
      • getAlbumContentId

        public java.lang.String getAlbumContentId()
        Returns the album content identifier.
        Returns:
        the album content identifier.
        Since:
        7.0.0
      • getThumbnailMediaFile

        public java.lang.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 java.lang.String getMediaFile()
        Returns the media file identifier.
        Returns:
        the media file identifier
        Since:
        10.4.0
      • setMediaId

        public void setMediaId​(java.lang.String mediaId)
        Sets the media Id.
        Parameters:
        mediaId - the media identifier.
        Since:
        7.0.0
      • setTitle

        public void setTitle​(java.lang.String title)
        Sets the media title.
        Parameters:
        title - the media title.
        Since:
        7.0.0
      • setAlbumContentId

        public void setAlbumContentId​(java.lang.String albumContentId)
        Sets the album content identifier.
        Parameters:
        albumContentId - the album content identifier.
        Since:
        7.0.0
      • setThumbnailMediaFile

        public void setThumbnailMediaFile​(java.lang.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