com.glookast.commons.capture.AvidCaptureJobProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-capture Show documentation
Show all versions of commons-capture Show documentation
Helper classes with Jackson annotations for easy interfacing with Glookast Products
package com.glookast.commons.capture;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
public class AvidCaptureJobProperties
{
protected String masterMobId;
protected String sourceMobId;
protected String pamSubfolder;
protected Boolean pamSplitResolutions;
public AvidCaptureJobProperties(AvidCaptureJobProperties avidCaptureJobProperties)
{
this.masterMobId = avidCaptureJobProperties.masterMobId;
this.sourceMobId = avidCaptureJobProperties.sourceMobId;
this.pamSubfolder = avidCaptureJobProperties.pamSubfolder;
this.pamSplitResolutions = avidCaptureJobProperties.pamSplitResolutions;
}
}