There is a class
@Entity
// @Data or @Getter/@Setter
public class Invenetory {
@Id
private UUID id;
private Sring name;
@Enumerated(EnumType.String)
private StatusType status; //remove setter for this field
How to remove setter for that specific field with Lombok configurations