
com.logicommerce.sdk.models.implementations.PeriodDateImpl Maven / Gradle / Ivy
package com.logicommerce.sdk.models.implementations;
import java.time.LocalDate;
import com.logicommerce.sdk.models.PeriodDate;
/**
* PeriodDateImpl class.
*
* @author Logicommerce
* @since 1.3.7
*/
public class PeriodDateImpl implements PeriodDate {
private LocalDate startDate;
private LocalDate endDate;
/** {@inheritDoc} */
@Override
public LocalDate getStartDate() {
return startDate;
}
/**
* Setter for the field startDate
.
*
* @param startDate a {@link java.time.LocalDate} object
*/
public void setStartDate(LocalDate startDate) {
this.startDate = startDate;
}
/** {@inheritDoc} */
@Override
public LocalDate getEndDate() {
return endDate;
}
/**
* Setter for the field endDate
.
*
* @param endDate a {@link java.time.LocalDate} object
*/
public void setEndDate(LocalDate endDate) {
this.endDate = endDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy