88d08d6aa1e92de411369106cee5e0898a11e7fb
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdcrests.vendorlicense.types;
22
23
24 import io.swagger.v3.oas.annotations.media.Schema;
25
26 import java.util.Set;
27
28 @Schema(description = "EntitlementPoolEntity")
29 public class EntitlementPoolEntityDto extends EntitlementPoolRequestDto {
30   private String id;
31   private Set<String> referencingFeatureGroups;
32   private String versionUUID;
33
34   public String getId() {
35     return id;
36   }
37
38   public void setId(String id) {
39     this.id = id;
40   }
41
42   public Set<String> getReferencingFeatureGroups() {
43     return referencingFeatureGroups;
44   }
45
46   public void setReferencingFeatureGroups(Set<String> referencingFeatureGroups) {
47     this.referencingFeatureGroups = referencingFeatureGroups;
48   }
49
50   public String getversionUUID() {
51     return versionUUID;
52   }
53
54   public void setVersionUUID(String versionUUID) {
55     this.versionUUID = versionUUID;
56   }
57 }