org.appops.job.slim.JobPipelineSlim Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appops-br-scheduler-slim Show documentation
Show all versions of appops-br-scheduler-slim Show documentation
appops black rhino scheduler slim
/*
* AppOps is a Java framework to develop, deploy microservices with ease and is available for free
* and common use developed by AinoSoft ( www.ainosoft.com )
*
* AppOps and AinoSoft are registered trademarks of Aino Softwares private limited, India.
*
* Copyright (C) <2016>
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version along with applicable additional terms as
* provisioned by GPL 3.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License and applicable additional terms
* along with this program.
*
* If not, see and
*/
package org.appops.job.slim;
import java.sql.Blob;
public class JobPipelineSlim {
private Integer id ;
private String interfaceName;
private String serviceName;
private String schedularExpression;
private Blob jobInfo;
private String createdOn;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getInterfaceName() {
return interfaceName;
}
public void setInterfaceName(String interfaceName) {
this.interfaceName = interfaceName;
}
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public String getSchedularExpression() {
return schedularExpression;
}
public void setSchedularExpression(String schedularExpression) {
this.schedularExpression = schedularExpression;
}
public Blob getJobInfo() {
return jobInfo;
}
public void setJobInfo(Blob jobInfo) {
this.jobInfo = jobInfo;
}
public String getCreatedOn() {
return createdOn;
}
public void setCreatedOn(String createdOn) {
this.createdOn = createdOn;
}
}