ca4f97b1d8621ab363119fe0386409c1b801ce90
[clamp.git] / src / main / java / org / onap / clamp / clds / sdc / controller / DistributionStatusMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights
6  *                             reserved.
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 package org.onap.clamp.clds.sdc.controller;
25
26 import org.onap.sdc.api.consumer.IDistributionStatusMessage;
27 import org.onap.sdc.utils.DistributionStatusEnum;
28
29 public class DistributionStatusMessage implements IDistributionStatusMessage {
30
31     private String artifactURL;
32     private String consumerID;
33     private String distributionID;
34     private DistributionStatusEnum distributionStatus;
35     private long timestamp;
36
37     public DistributionStatusMessage(final String artifactUrl, final String consumerId, final String distributionId,
38             final DistributionStatusEnum distributionStatusEnum, final long timestampL) {
39         artifactURL = artifactUrl;
40         consumerID = consumerId;
41         distributionID = distributionId;
42         distributionStatus = distributionStatusEnum;
43         timestamp = timestampL;
44     }
45
46     @Override
47     public String getArtifactURL() {
48         return artifactURL;
49     }
50
51     @Override
52     public String getConsumerID() {
53         return consumerID;
54     }
55
56     @Override
57     public String getDistributionID() {
58         return distributionID;
59     }
60
61     @Override
62     public DistributionStatusEnum getStatus() {
63         return distributionStatus;
64     }
65
66     @Override
67     public long getTimestamp() {
68         return timestamp;
69     }
70 }