Package org.opencastproject.metadata.api
Interface MediaPackageMetadata
- All Known Implementing Classes:
MediapackageMetadataImpl
public interface MediaPackageMetadata
Provides metadata for a
MediaPackageMetadata-
Method Summary
Modifier and TypeMethodDescriptionString[]The contributors.String[]The names of the creators.getDate()Returns the media package start time.The language spoken in the mediaThe license under which this episode is availableThe series, if any, that this episode belongs to.Returns the title for the associated series, if any.String[]The subjects.getTitle()Returns the title of the episode that this mediapackage represents.
-
Method Details
-
getSeriesTitle
String getSeriesTitle()Returns the title for the associated series, if any.- Returns:
- The series title
-
getTitle
String getTitle()Returns the title of the episode that this mediapackage represents.- Returns:
- The episode title
-
getCreators
String[] getCreators()The names of the creators. If no creators were specified, an empty array is returned.- Returns:
- the creators for this mediapackage
-
getSeriesIdentifier
String getSeriesIdentifier()The series, if any, that this episode belongs to.- Returns:
- the series for this mediapackage
-
getLicense
String getLicense()The license under which this episode is available- Returns:
- the license for this mediapackage
-
getContributors
String[] getContributors()The contributors. If no contributors were specified, an empty array is returned.- Returns:
- the contributors for this mediapackage
-
getLanguage
String getLanguage()The language spoken in the media- Returns:
- the language for this mediapackage
-
getSubjects
String[] getSubjects()The subjects. If no subjects were specified, an empty array is returned.- Returns:
- the subjects for this mediapackage
-
getDate
Date getDate()Returns the media package start time.- Returns:
- the start time
-