BAEL-6572: Removed lombok on License model
This commit is contained in:
parent
2a7f3fbc54
commit
eb5e1efcc1
|
@ -3,9 +3,7 @@ package com.baeldung.expression.model;
|
|||
import java.time.OffsetDateTime;
|
||||
import java.util.UUID;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class License {
|
||||
|
||||
private UUID id;
|
||||
|
@ -18,4 +16,43 @@ public class License {
|
|||
|
||||
private boolean renewalRequired;
|
||||
|
||||
public UUID getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(UUID id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public OffsetDateTime getStartDate() {
|
||||
return startDate;
|
||||
}
|
||||
|
||||
public void setStartDate(OffsetDateTime startDate) {
|
||||
this.startDate = startDate;
|
||||
}
|
||||
|
||||
public OffsetDateTime getEndDate() {
|
||||
return endDate;
|
||||
}
|
||||
|
||||
public void setEndDate(OffsetDateTime endDate) {
|
||||
this.endDate = endDate;
|
||||
}
|
||||
|
||||
public boolean isActive() {
|
||||
return active;
|
||||
}
|
||||
|
||||
public void setActive(boolean active) {
|
||||
this.active = active;
|
||||
}
|
||||
|
||||
public boolean isRenewalRequired() {
|
||||
return renewalRequired;
|
||||
}
|
||||
|
||||
public void setRenewalRequired(boolean renewalRequired) {
|
||||
this.renewalRequired = renewalRequired;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue