3e7771ae5d91cff2f15db5560d02ec53a9820d38
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / scheduler / restobjects / GetTimeSlotsRestObject.java
1 package org.openecomp.portalapp.portal.scheduler.restobjects;
2
3 public class GetTimeSlotsRestObject<T> extends RestObject<T> {
4
5         public String uuid;
6         
7         public void setUUID(String uuid) { this.uuid = uuid; }
8             
9         public String getUUID() { return this.uuid; }
10
11 }