Move src files to standard java folder structure

This commit is contained in:
Grische
2022-04-10 13:15:34 +00:00
committed by harlekin
parent 1e89734609
commit 78da2832af
82 changed files with 0 additions and 17 deletions

View File

@@ -0,0 +1,36 @@
package com.sheepit.client.datamodel;
import lombok.Getter;
import lombok.ToString;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
@Root(strict = false, name = "job") @ToString public class RenderTask {
@Attribute(name = "id") @Getter private String id;
@Attribute(name = "use_gpu") @Getter private int useGpu;
@Attribute(name = "archive_md5") @Getter private String archive_md5;
@Attribute(name = "path") @Getter private String path;
@Attribute(name = "frame") @Getter private String frame;
@Attribute(name = "synchronous_upload") @Getter private String synchronous_upload;
@Attribute(name = "validation_url") @Getter private String validationUrl;
@Attribute(name = "name") @Getter private String name;
@Attribute(name = "password") @Getter private char[] password;
@Element(name = "renderer") @Getter private RendererInfos rendererInfos;
@Element(name = "script", data = true) @Getter private String script;
public RenderTask() {
}
}