You can use Lombok's @Getter and @Setter annotation on your class which creates the getters and setters for you.
You could also use the @Data annotation which bundles the features of @Getter and @Setter and other annotations together.