re base code
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / distribution / engine / DmaapNotificationDataImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.sdc.be.components.distribution.engine;
22
23 /**
24  *  Example {
25  *      "operationalEnvironmentId": "28122015552391",
26  *      "operationalEnvironmentName": "Operational Environment Name",
27  *      "operationalEnvironmentType": "ECOMP",
28  *      "tenantContext": "TEST",
29  *      "workloadContext": "ECOMP_E2E-IST",
30  *      "action": "Create"
31  *      }
32  */
33 public class DmaapNotificationDataImpl implements IDmaapNotificationData, IDmaapAuditNotificationData {
34
35     private String operationalEnvironmentId;
36     private String operationalEnvironmentType;
37     private String action;
38     private String operationalEnvironmentName;
39     private String tenantContext;
40
41     @Override
42     public String getOperationalEnvironmentId() {
43         return operationalEnvironmentId;
44     }
45
46     @Override
47     public OperationaEnvironmentTypeEnum getOperationalEnvironmentType() {
48         return OperationaEnvironmentTypeEnum.findByName(operationalEnvironmentType);
49     }
50
51     @Override
52     public DmaapActionEnum getAction() {
53         return DmaapActionEnum.findByName(action);
54     }
55
56     @Override
57     public String getOperationalEnvironmentName() {
58         return operationalEnvironmentName;
59     }
60
61     @Override
62     public String getTenantContext() {
63         return tenantContext;
64     }
65
66
67 }