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

Alachisoft.NCache.MetricServer.OffsetReference Maven / Gradle / Ivy

The newest version!
package Alachisoft.NCache.MetricServer;


import java.util.Date;

public class OffsetReference {
    private String offset = null;

    private int totalRecords = 1000;

    private Date start;

    private Date end;

    public String getOffset() {
        return offset;
    }

    public void setOffset(String offset) {
        this.offset = offset;
    }

    public int getTotalRecords() {
        return totalRecords;
    }

    public void setTotalRecords(int totalRecords) {
        this.totalRecords = totalRecords;
    }

    public Date getStart() {
        return start;
    }

    public void setStart(Date start) {
        this.start = start;
    }

    public Date getEnd() {
        return end;
    }

    public void setEnd(Date end) {
        this.end = end;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy