Revisions made to the Model Loader to use Babel
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / notification / CompDoneStatusMessageBuilder.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 Amdocs
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.notification;
22
23 import org.openecomp.sdc.api.IDistributionClient;
24 import org.openecomp.sdc.api.consumer.IComponentDoneStatusMessage;
25 import org.openecomp.sdc.api.notification.INotificationData;
26 import org.openecomp.sdc.utils.DistributionStatusEnum;
27
28 /**
29  * This class is responsible for building an instance of {@link DistributionStatusMsg}.
30  */
31 public class CompDoneStatusMessageBuilder {
32
33     private CompDoneStatusMessageBuilder() {}
34
35     /**
36      * Builds an instance of {@link CompDoneStatusMsg} from the given parameters about the status of the
37      * distribution of the given artifact.
38      *
39      * @param client the distribution client this message pertains to
40      * @param data data about the notification that resulted in this message being created
41      * @param status the status of the distribution of the artifact to be reported
42      * @return IComponentDoneStatusMessage implementation of IComponentDoneStatusMessage from the given parameters
43      */
44     public static IComponentDoneStatusMessage build(IDistributionClient client, INotificationData data, DistributionStatusEnum status) {
45         return new CompDoneStatusMsg(status, data.getDistributionID(), client.getConfiguration().getConsumerID());
46     }
47 }