f8c046e7f0a6c02163c74e5940f31e1a2ec771b4
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / CR.java
1 package org.onap.vid.model;
2
3 import java.util.HashMap;
4 import java.util.Map;
5
6 public class CR extends Node{
7
8     private String category;
9
10     private String subcategory;
11
12     private String resourceVendor;
13
14     private String resourceVendorRelease;
15
16     private String resourceVendorModelNumber;
17
18     private String customizationUUID;
19
20     private Map<String, NetworkCollection> networksCollection = new HashMap<String, NetworkCollection>();
21
22
23
24     public Map<String, NetworkCollection> getNetworksCollection() {
25         return networksCollection;
26     }
27
28     public void setNetworksCollection(Map<String, NetworkCollection> networksCollection) {
29         this.networksCollection = networksCollection;
30     }
31
32     public String getCategory() {
33         return category;
34     }
35
36     public void setCategory(String category) {
37         this.category = category;
38     }
39
40     public String getSubcategory() {
41         return subcategory;
42     }
43
44     public void setSubcategory(String subcategory) {
45         this.subcategory = subcategory;
46     }
47
48     public String getResourceVendor() {
49         return resourceVendor;
50     }
51
52     public void setResourceVendor(String resourceVendor) {
53         this.resourceVendor = resourceVendor;
54     }
55
56     public String getResourceVendorRelease() {
57         return resourceVendorRelease;
58     }
59
60     public void setResourceVendorRelease(String resourceVendorRelease) {
61         this.resourceVendorRelease = resourceVendorRelease;
62     }
63
64     public String getResourceVendorModelNumber() {
65         return resourceVendorModelNumber;
66     }
67
68     public void setResourceVendorModelNumber(String resourceVendorModelNumber) {
69         this.resourceVendorModelNumber = resourceVendorModelNumber;
70     }
71
72     public String getCustomizationUUID() {
73         return customizationUUID;
74     }
75
76     public void setCustomizationUUID(String customizationUUID) {
77         this.customizationUUID = customizationUUID;
78     }
79
80 }