a3ce1b5a6c71b9c88d8c048f47b5a73afad9d769
[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         public void setModelCustomizationUUID(String modelCustomizationUUID) {
37                 this.modelCustomizationUUID = modelCustomizationUUID;
38         }
39     public String getModelUUID() {
40         return modelUUID;
41     }
42     public void setModelUUID(String modelUUID) {
43         this.modelUUID = modelUUID;
44     }
45     public String getModelInvariantUUID() {
46         return modelInvariantUUID;
47     }
48     public void setModelInvariantUUID(String modelInvariantUUID) {
49         this.modelInvariantUUID = modelInvariantUUID;
50     }
51         public int getTimeoutMinutes() {
52                 return timeoutMinutes;
53         }
54         public void setTimeoutMinutes(int timeoutMinutes) {
55                 this.timeoutMinutes = timeoutMinutes;
56         }
57         public List<VduArtifact> getArtifacts() {
58                 return artifacts;
59         }
60         public void setArtifacts(List<VduArtifact> artifacts) {
61                 this.artifacts = artifacts;
62         }
63
64 }