Logo

GitLab

Sign in

曹亮 / demo-tbschedule

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • demo-tbschedule
  • ..
  • strategy
  • ManagerFactoryInfo.java
  • init push
    47c22c42
    曹亮 authored
    2017-10-13 19:44:27 +0800  
    Browse File »
ManagerFactoryInfo.java 369 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.taobao.pamirs.schedule.strategy;

public class ManagerFactoryInfo {
	private String uuid;
	private boolean start;

	public void setStart(boolean start) {
		this.start = start;
	}

	public boolean isStart() {
		return start;
	}

	public void setUuid(String uuid) {
		this.uuid = uuid;
	}

	public String getUuid() {
		return uuid;
	}
}