All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.nav.vedtak.ytelse.Periode Maven / Gradle / Ivy

There is a newer version: 5.0_20191210082234_0bd32f2
Show newest version
package no.nav.vedtak.ytelse;

import java.time.LocalDate;

import javax.validation.constraints.NotNull;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Periode {

    @NotNull
    @JsonProperty("fom")
    private LocalDate fom;
    @NotNull
    @JsonProperty("tom")
    private LocalDate tom;

    public Periode() {
    }

    public LocalDate getFom() {
        return fom;
    }

    public void setFom(LocalDate fom) {
        this.fom = fom;
    }

    public LocalDate getTom() {
        return tom;
    }

    public void setTom(LocalDate tom) {
        this.tom = tom;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy