Challenge.java
package com.seebie.server.entity;
import jakarta.persistence.*;
import jakarta.validation.constraints.NotNull;
import java.io.Serializable;
import java.time.LocalDate;
/**
 * @see com.seebie.server.entity.SleepSession for more details on the primary key and sequence generator.
 */
@Entity
@Table(name = "challenge")
public class Challenge implements Serializable {
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "challenge_generator")
    @SequenceGenerator(name="challenge_generator", sequenceName = "challenge_sequence", allocationSize = 50)
    @Column(name = "id", updatable = false, nullable = false)
    private Long id;
    @NotNull
    @ManyToOne(fetch=FetchType.LAZY)
    @JoinColumn(name = "user_id")
    private User user;
    @NotNull
    private String name = "";
    @NotNull
    private String description = "";
    @Basic
    @NotNull
    private LocalDate start = LocalDate.now();
    @Basic
    @NotNull
    private LocalDate finish = LocalDate.now();
    public Challenge() {
        // no arg constructor is required by JPA
    }
    public Challenge(String name, String description, LocalDate start, LocalDate finish, User user) {
        this.name = name;
        this.description = description;
        this.start = start;
        this.finish = finish;
        this.user = user;
    }
    public void setChallengeData(String name, String description, LocalDate start, LocalDate finish) {
        this.name = name;
        this.description = description;
        this.start = start;
        this.finish = finish;
    }
    public Long getId() {
        return id;
    }
    public String getName() {
        return name;
    }
    public String getDescription() {
        return description;
    }
    public LocalDate getStart() {
        return start;
    }
    public LocalDate getFinish() {
        return finish;
    }
}