Convert project from AJSC to Spring Boot
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / fixture / TestNotificationDataImpl.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.modelloader.fixture;
22
23 import java.util.List;
24 import org.onap.sdc.api.notification.IArtifactInfo;
25 import org.onap.sdc.api.notification.INotificationData;
26 import org.onap.sdc.api.notification.IResourceInstance;
27
28 /**
29  * This class is an implementation of INotificationData for test purposes.
30  */
31 public class TestNotificationDataImpl implements INotificationData {
32
33     private String distributionID;
34     private List<IResourceInstance> resources;
35     private List<IArtifactInfo> serviceArtifacts;
36
37     @Override
38     public String getDistributionID() {
39         return distributionID;
40     }
41
42     @Override
43     public String getServiceName() {
44         return null;
45     }
46
47     @Override
48     public String getServiceVersion() {
49         return null;
50     }
51
52     @Override
53     public String getServiceUUID() {
54         return null;
55     }
56
57     @Override
58     public String getServiceDescription() {
59         return null;
60     }
61
62     @Override
63     public List<IResourceInstance> getResources() {
64         return resources;
65     }
66
67     @Override
68     public List<IArtifactInfo> getServiceArtifacts() {
69         return serviceArtifacts;
70     }
71
72     @Override
73     public IArtifactInfo getArtifactMetadataByUUID(String s) {
74         return null;
75     }
76
77     @Override
78     public String getServiceInvariantUUID() {
79         return null;
80     }
81
82     public void setResources(List<IResourceInstance> resources) {
83         this.resources = resources;
84     }
85
86     public void setServiceArtifacts(List<IArtifactInfo> serviceArtifacts) {
87         this.serviceArtifacts = serviceArtifacts;
88     }
89
90     public void setDistributionID(String distributionID) {
91         this.distributionID = distributionID;
92     }
93
94     @Override
95     public String getWorkloadContext() {
96         return null;
97     }
98
99     @Override
100     public void setWorkloadContext(String arg0) {}
101 }