7e92307bad009a8eddee50005fca854433c49dad
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / scheduler / restobjects / PostCreateNewVnfRestObject.java
1 package org.openecomp.portalapp.portal.scheduler.restobjects;
2
3 public class PostCreateNewVnfRestObject<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 }