All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickntap.tool.encoding.VideoManager Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package com.clickntap.tool.encoding;

import java.util.List;

public interface VideoManager {

	public abstract List getVideos() throws Exception;

	public abstract VideoInfo getVideoStatus(Number videoId) throws Exception;

	public abstract boolean deleteVideo(Number videoId) throws Exception;

	public abstract VideoInfo addVideo(String source) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy