Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / vdu / VduModelInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2018 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.onap.so.adapters.vdu;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 public class VduModelInfo {
27     private String modelCustomizationUUID;
28     private String modelUUID;
29     private String modelInvariantUUID;
30     private int timeoutMinutes;
31     private List<VduArtifact> artifacts = new ArrayList<>();
32
33     public String getModelCustomizationUUID() {
34         return modelCustomizationUUID;
35     }
36
37     public void setModelCustomizationUUID(String modelCustomizationUUID) {
38         this.modelCustomizationUUID = modelCustomizationUUID;
39     }
40
41     public String getModelUUID() {
42         return modelUUID;
43     }
44
45     public void setModelUUID(String modelUUID) {
46         this.modelUUID = modelUUID;
47     }
48
49     public String getModelInvariantUUID() {
50         return modelInvariantUUID;
51     }
52
53     public void setModelInvariantUUID(String modelInvariantUUID) {
54         this.modelInvariantUUID = modelInvariantUUID;
55     }
56
57     public int getTimeoutMinutes() {
58         return timeoutMinutes;
59     }
60
61     public void setTimeoutMinutes(int timeoutMinutes) {
62         this.timeoutMinutes = timeoutMinutes;
63     }
64
65     public List<VduArtifact> getArtifacts() {
66         return artifacts;
67     }
68
69     public void setArtifacts(List<VduArtifact> artifacts) {
70         this.artifacts = artifacts;
71     }
72
73 }