
com.day.cq.dam.video.servlet.VideoTestResult Maven / Gradle / Ivy
/*
* Copyright 1997-2008 Day Management AG
* Barfuesserplatz 6, 4001 Basel, Switzerland
* All Rights Reserved.
*
* This software is the confidential and proprietary information of
* Day Management AG, ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Day.
*/
package com.day.cq.dam.video.servlet;
import java.awt.Dimension;
import java.io.File;
/**
* A container for a video test result.
*
*/
public class VideoTestResult {
private String outputName;
private File output;
private String ffmpegLog;
private Dimension inputSize;
private double inputDuration;
private boolean success = false;
private String outputMimeType;
public String getOutputMimeType() {
return outputMimeType;
}
public void setOutputMimeType(String outputMimeType) {
this.outputMimeType = outputMimeType;
}
public String getOutputName() {
return outputName;
}
public void setOutputName(String outputName) {
this.outputName = outputName;
}
public File getOutput() {
return output;
}
public void setOutput(File output) {
this.output = output;
}
public String getFfmpegLog() {
return ffmpegLog;
}
public void setFfmpegLog(String ffmpegLog) {
this.ffmpegLog = ffmpegLog;
}
public Dimension getInputSize() {
return inputSize;
}
public void setInputSize(Dimension inputSize) {
this.inputSize = inputSize;
}
public double getInputDuration() {
return inputDuration;
}
public void setInputDuration(double inputDuration) {
this.inputDuration = inputDuration;
}
public boolean isSuccess() {
return success;
}
public void setSuccess(boolean success) {
this.success = success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy