ConstantEnum.java 1.71 KB
/**
 * 
 */
package com.yoho.jobs.common.domain;

/**
 * @author yanzhang.fu
 *
 */
public interface ConstantEnum {

	public enum ActiveModeEnum {

		SINGLE(0, "单次执行"), LOOP(1, "循环执行");

		private int value;

		private String name;

		private ActiveModeEnum(int value, String name) {
			this.value = value;
			this.name = name;
		}

		public int getValue() {
			return value;
		}

		public String getName() {
			return name;
		}
	}

	public enum JobStatusEnum {
		STOPPING(0, "未执行"), STARTING(1, "正在执行");

		private int value;
		private String name;

		private JobStatusEnum(int value, String name) {
			this.value = value;
			this.name = name;
		}

		public int getValue() {
			return value;
		}

		public String getName() {
			return name;
		}

	}

	public enum JobOperatorEnum {
		EXEC(0, "执行"), UPDATE(1, "更新"), STOP(2, "停止"), CREATE(3, "新建"), TRIGGER(4, "任务触发");
		private int value;
		private String name;

		private JobOperatorEnum(int value, String name) {
			this.value = value;
			this.name = name;
		}

		public int getValue() {
			return value;
		}

		public String getName() {
			return name;
		}

	}

	public class JobResponse {
		public static final String SUCCESS = "200";

		public static final String SUCCESS_DESC = "success";

		public static final String FAIL = "1";

	}

	enum JobType {
		SINGLE_NODE(0), MUTIL_NODE(1);

		int type;

		private JobType(int type) {
			this.type = type;
		}

		public int getType() {
			return type;
		}
	}

	public class JobProcessResultCode {
		
		/**
		 * 任务处理成功标志
		 */
		public static final String SUCCESS_CODE = "success";

		/**
		 * 任务处理失败标志
		 */
		public static final String ERROR_CODE = "error";
	}

}