csip.ModelArchive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of csip-core Show documentation
Show all versions of csip-core Show documentation
The Cloud Services Integration Platform is a SoA implementation to offer a Model-as-a-Service framework, Application Programming Interface, deployment infrastructure, and service implementations for environmental modeling.
/*
* $Id: ModelArchive.java 27bed8415b8b 2019-01-31 od $
*
* This file is part of the Cloud Services Integration Platform (CSIP),
* a Model-as-a-Service framework, API and application suite.
*
* 2012-2019, 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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy