Ok, I am trying really hard to get and identical P...
# getting-started
c
Ok, I am trying really hard to get and identical POKO to this POJO:
Copy code
@Getter
@EqualsAndHashCode
@Entity
@ToString
@NoArgsConstructor
@AllArgsConstructor
public class Candidate implements Post {

    @Id
    @GeneratedValue
    private Long id;

    @NotNull
    private Date date;

    @NotNull
    private String name;

}
The problems I am having are many. The most important thing I am trying to do is get non-final members:
var
and implement the interface for
Copy code
public interface Post {

    Long getId();
    Date getDate();
    String getName();
}
I would also love to get the features that come with a data class but that's stretching it