Merge branch 'ref/cleanup' into 'master'
Ref: cleanup, do not duplicate annotation See merge request sheepitrenderfarm/client!240
This commit is contained in:
@@ -6,29 +6,29 @@ import org.simpleframework.xml.Attribute;
|
|||||||
import org.simpleframework.xml.Element;
|
import org.simpleframework.xml.Element;
|
||||||
import org.simpleframework.xml.Root;
|
import org.simpleframework.xml.Root;
|
||||||
|
|
||||||
@Root(strict = false, name = "job") @ToString public class RenderTask {
|
@Root(strict = false, name = "job") @Getter @ToString public class RenderTask {
|
||||||
|
|
||||||
@Attribute(name = "id") @Getter private String id;
|
@Attribute(name = "id") private String id;
|
||||||
|
|
||||||
@Attribute(name = "use_gpu") @Getter private int useGpu;
|
@Attribute(name = "use_gpu") private int useGpu;
|
||||||
|
|
||||||
@Attribute(name = "archive_md5") @Getter private String archive_md5;
|
@Attribute(name = "archive_md5") private String archive_md5;
|
||||||
|
|
||||||
@Attribute(name = "path") @Getter private String path;
|
@Attribute(name = "path") private String path;
|
||||||
|
|
||||||
@Attribute(name = "frame") @Getter private String frame;
|
@Attribute(name = "frame") private String frame;
|
||||||
|
|
||||||
@Attribute(name = "synchronous_upload") @Getter private String synchronous_upload;
|
@Attribute(name = "synchronous_upload") private String synchronous_upload;
|
||||||
|
|
||||||
@Attribute(name = "validation_url") @Getter private String validationUrl;
|
@Attribute(name = "validation_url") private String validationUrl;
|
||||||
|
|
||||||
@Attribute(name = "name") @Getter private String name;
|
@Attribute(name = "name") private String name;
|
||||||
|
|
||||||
@Attribute(name = "password") @Getter private char[] password;
|
@Attribute(name = "password") private char[] password;
|
||||||
|
|
||||||
@Element(name = "renderer") @Getter private RendererInfos rendererInfos;
|
@Element(name = "renderer") private RendererInfos rendererInfos;
|
||||||
|
|
||||||
@Element(name = "script", data = true) @Getter private String script;
|
@Element(name = "script", data = true) private String script;
|
||||||
|
|
||||||
public RenderTask() {
|
public RenderTask() {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user