Class AutomaticVideoConversion
- java.lang.Object
-
- org.nuxeo.ecm.platform.video.service.AutomaticVideoConversion
-
- All Implemented Interfaces:
Cloneable
,Comparable<AutomaticVideoConversion>
public class AutomaticVideoConversion extends Object implements Cloneable, Comparable<AutomaticVideoConversion>
Object representing a registered automatic video conversion on theVideoService
.An
AutomaticVideoConversion
references theVideoConversion
through its name.- Since:
- 5.5
- Author:
- Thomas Roger
-
-
Constructor Summary
Constructors Constructor Description AutomaticVideoConversion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AutomaticVideoConversion
clone()
int
compareTo(AutomaticVideoConversion o)
String
getName()
int
getOrder()
boolean
isEnabled()
void
setEnabled(boolean enabled)
-
-
-
Method Detail
-
getName
public String getName()
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean enabled)
-
getOrder
public int getOrder()
-
clone
public AutomaticVideoConversion clone() throws CloneNotSupportedException
- Overrides:
clone
in classObject
- Throws:
CloneNotSupportedException
-
compareTo
public int compareTo(AutomaticVideoConversion o)
- Specified by:
compareTo
in interfaceComparable<AutomaticVideoConversion>
-
-