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

com.jeesuite.scheduler.model.JobGroupInfo Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * 
 */
package com.jeesuite.scheduler.model;

import java.util.ArrayList;
import java.util.List;

/**
 * @description 
* @author vakin * @date 2016年10月30日 */ public class JobGroupInfo { private String name; List jobs = new ArrayList<>(); ListclusterNodes = new ArrayList<>(); public String getName() { return name; } public void setName(String name) { this.name = name; } public List getJobs() { return jobs; } public void setJobs(List jobs) { this.jobs = jobs; } public List getClusterNodes() { return clusterNodes; } public void setClusterNodes(List clusterNodes) { this.clusterNodes = clusterNodes; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy