ModelArchive.java [src/csip] Revision:   Date:
/*
 * $Id$
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API and application suite.
 *
 * 2012-2022, Olaf David and others, OMSLab, Colorado State University.
 *
 * OMSLab licenses this file to you under the MIT license.
 * See the LICENSE file in the project root for more information.
 */
package csip;

/**
 * A model session for
 *
 * @author Olaf David
 */
class ModelArchive {

    String service;
    String status;
    String ctime;  // creation time
    String etime;  // expiration time
    String req_ip;


    ModelArchive(String ctime, String etime, String service, String status, String req_ip) {
        this.ctime = ctime;
        this.etime = etime;
        this.service = service;
        this.status = status;
        this.req_ip = req_ip;
    }


    String getReqIP() {
        return req_ip;
    }


    void setReqIP(String req_ip) {
        this.req_ip = req_ip;
    }


    String getStatus() {
        return status;
    }


    void setStatus(String status) {
        this.status = status;
    }


    String getService() {
        return service;
    }


    void setService(String service) {
        this.service = service;
    }


    String getCtime() {
        return ctime;
    }


    void setCtime(String ctime) {
        this.ctime = ctime;
    }


    void setEtime(String etime) {
        this.etime = etime;
    }


    String getEtime() {
        return etime;
    }

}