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

com.icthh.xm.commons.messaging.communication.TimePeriod Maven / Gradle / Ivy

There is a newer version: 4.0.17
Show newest version
package com.icthh.xm.commons.messaging.communication;

import lombok.Data;

import java.time.OffsetDateTime;

/**
 * A base / value business entity used to represent a period of time between two timepoints.
 */
@Data
public class TimePeriod {

    private OffsetDateTime endDateTime;
    private OffsetDateTime startDateTime;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy