summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/scheduler/RestObjects/GetTimeSlotsRestObject.java
blob: 614b557a0e5311296cd371fcf0c352fef7d45fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.openecomp.vid.scheduler.RestObjects;

public class GetTimeSlotsRestObject<T> extends org.openecomp.vid.scheduler.RestObject<T> {

	public String uuid;
	
	public void setUUID(String uuid) { this.uuid = uuid; }
	    
	public String getUUID() { return this.uuid; }

}