nl.vpro.nep.service.NEPSAMService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-nep Show documentation
Show all versions of media-nep Show documentation
Support for the several APIs of NEP that POMS is integrating with
package nl.vpro.nep.service;
import java.time.Duration;
import java.util.Optional;
import nl.vpro.nep.service.exception.NEPException;
/**
* NEP 'Stream Access Management' API.
*
* @author Michiel Meeuwissen
* @since 5.11
*/
public interface NEPSAMService extends AutoCloseable {
Optional streamAccessLive(String channel, String ip, Duration duration) throws NEPException;
Optional streamAccessMid(String mid, boolean drm, String ip, Duration duration) throws NEPException;
String getStreamAccessLiveString();
String getStreamAccessMidString();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy