Remove Lombok

This commit is contained in:
Andy Wilkinson
2018-09-06 13:25:38 +01:00
parent 408943fbb5
commit 2777495c38
13 changed files with 186 additions and 52 deletions

View File

@@ -20,14 +20,12 @@ import java.time.OffsetDateTime;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
/**
* An event that has been performed on an {@link Issue}.
*
* @author Andy Wilkinson
*/
@Getter
public class Event {
private final Type type;
@@ -51,6 +49,18 @@ public class Event {
this.label = label;
}
public Type getType() {
return this.type;
}
public OffsetDateTime getCreationTime() {
return this.creationTime;
}
public Label getLabel() {
return this.label;
}
/**
* The type of an {@link Event}.
*