nl.vpro.domain.subtitles.CueId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subtitles-domain Show documentation
Show all versions of subtitles-domain Show documentation
Subtitles are related to media, but are implemented completely parallel. Classes to contain, parse, and assemble subtitle objects are here.
The newest version!
package nl.vpro.domain.subtitles;
import lombok.Getter;
/**
* @author Michiel Meeuwissen
* @since 5.12
*/
@Getter
public class CueId {
private final SubtitlesId subtitlesId;
private final Integer sequence;
public CueId(SubtitlesId subtitlesId, Integer sequence) {
this.subtitlesId = subtitlesId;
this.sequence = sequence;
}
}