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

org.openl.rules.rest.ProjectHistoryItem Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.rest;

public class ProjectHistoryItem {

    public final String id;
    public final String modifiedOn;
    public final Boolean current;

    ProjectHistoryItem(String id, String modifiedOn, boolean current) {
        this.current = current ? true : null; // null - is to reduce payload on ~27% - 16 bytes per item
        this.id = id;
        this.modifiedOn = modifiedOn;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy