com.vip.saturn.job.console.domain.AbstractAlarmJob Maven / Gradle / Ivy
/**
* Copyright 2016 vip.com.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
**/
package com.vip.saturn.job.console.domain;
public class AbstractAlarmJob {
protected String jobName;
protected String domainName;
/**
* name and namespace
*/
protected String nns;
/**
* degree of the domain
*/
protected String degree;
protected String uuid;
protected boolean read;
protected String jobDegree;
public AbstractAlarmJob() {
}
public AbstractAlarmJob(String jobName, String domainName, String nns, String degree) {
this.jobName = jobName;
this.domainName = domainName;
this.nns = nns;
this.degree = degree;
}
public String getJobName() {
return jobName;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
public String getDomainName() {
return domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public boolean isRead() {
return read;
}
public void setRead(boolean read) {
this.read = read;
}
public String getJobDegree() {
return jobDegree;
}
public void setJobDegree(String jobDegree) {
this.jobDegree = jobDegree;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy