b4f12a58821692a517a7ad13c8861553139377dd
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / notification / DistributionStatusMsg.java
1 /**\r
2  * ============LICENSE_START==========================================\r
3  * org.onap.aai\r
4  * ===================================================================\r
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.\r
6  * Copyright © 2017-2018 Amdocs\r
7  * ===================================================================\r
8  * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * you may not use this file except in compliance with the License.\r
10  * You may obtain a copy of the License at\r
11  *\r
12  *        http://www.apache.org/licenses/LICENSE-2.0\r
13  *\r
14  * Unless required by applicable law or agreed to in writing, software\r
15  * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * See the License for the specific language governing permissions and\r
18  * limitations under the License.\r
19  * ============LICENSE_END============================================\r
20  */\r
21 package org.onap.aai.modelloader.notification;\r
22 \r
23 import org.openecomp.sdc.api.consumer.IDistributionStatusMessage;\r
24 import org.openecomp.sdc.utils.DistributionStatusEnum;\r
25 \r
26 public class DistributionStatusMsg implements IDistributionStatusMessage {\r
27   private DistributionStatusEnum status;\r
28   private String distributionId;\r
29   private String consumerId;\r
30   private String artifactUrl;\r
31 \r
32   /**\r
33    * Creates a new DistributionStatusMsg instance.\r
34    * \r
35    * @param status         - The distribution status to be reported.\r
36    * @param distributionId - The identifier of the distribution who's status is being rported on.\r
37    * @param consumerId     - Identifier of the consumer associated with the distribution.\r
38    * @param artifactUrl    - Resource identifier for the artifact.\r
39    */\r
40   public DistributionStatusMsg(DistributionStatusEnum status, \r
41                                String distributionId,\r
42                                String consumerId, \r
43                                String artifactUrl) {\r
44     this.status = status;\r
45     this.distributionId = distributionId;\r
46     this.consumerId = consumerId;\r
47     this.artifactUrl = artifactUrl;\r
48   }\r
49 \r
50   @Override\r
51   public long getTimestamp() {\r
52     long currentTimeMillis = System.currentTimeMillis();\r
53     return currentTimeMillis;\r
54   }\r
55 \r
56   @Override\r
57   public DistributionStatusEnum getStatus() {\r
58     return status;\r
59   }\r
60 \r
61   @Override\r
62   public String getDistributionID() {\r
63     return distributionId;\r
64   }\r
65 \r
66   @Override\r
67   public String getConsumerID() {\r
68     return consumerId;\r
69   }\r
70   \r
71   @Override\r
72   public String getArtifactURL() {\r
73     return artifactUrl;\r
74   }\r
75 }\r