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
@@ -0,0 +1,18 @@
package com.sheepit.client.datamodel;
import lombok.Getter;
import lombok.ToString;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Root;
@Root(strict = false, name = "request") @ToString public class RequestEndPoint {
@Attribute @Getter private String type;
@Attribute @Getter private String path;
@Attribute(name = "max-period", required = false) @Getter private int maxPeriod;
public RequestEndPoint() {
}
}