nl.vpro.api.rs.subtitles.SRTSubtitlesReader 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.
package nl.vpro.api.rs.subtitles;
import javax.ws.rs.Consumes;
import javax.ws.rs.ext.Provider;
import nl.vpro.domain.subtitles.SubtitlesFormat;
/**
* @author Michiel Meeuwissen
* @since 5.1
*/
@Provider
@Consumes(Constants.SRT)
public class SRTSubtitlesReader extends AbstractSubtitlesReader {
public SRTSubtitlesReader() {
super(SubtitlesFormat.SRT);
}
}