com.alibaba.schedulerx.worker.domain.SpringScheduleProfile Maven / Gradle / Ivy
package com.alibaba.schedulerx.worker.domain;
/**
* SpringSchedule任务类型定义
* @author yaohui
*/
public class SpringScheduleProfile {
private String id;
private String className;
private String method;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
@Override
public String toString() {
return "SpringScheduleProfile{" +
"id='" + id + '\'' +
", className='" + className + '\'' +
", method='" + method + '\'' +
'}';
}
}