Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / tenantisolation / dmaap / DmaapOperationalEnvClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.apihandlerinfra.tenantisolation.dmaap;
22
23 import java.io.IOException;
24 import javax.inject.Provider;
25 import org.apache.http.HttpStatus;
26 import org.onap.so.apihandler.common.ErrorNumbers;
27 import org.onap.so.apihandlerinfra.exceptions.ApiException;
28 import org.onap.so.apihandlerinfra.exceptions.ValidateException;
29 import org.onap.so.apihandlerinfra.logging.ErrorLoggerInfo;
30 import org.onap.so.logger.ErrorCode;
31 import org.onap.so.logger.MessageEnum;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.stereotype.Component;
34 import com.fasterxml.jackson.core.JsonProcessingException;
35 import com.fasterxml.jackson.databind.ObjectMapper;
36
37 @Component
38 public class DmaapOperationalEnvClient {
39
40     @Autowired
41     private Provider<OperationalEnvironmentPublisher> dmaapPublisher;
42
43     protected String buildRequest(String operationalEnvironmentId, String operationalEnvironmentName,
44             String operationalEnvironmentType, String tenantContext, String workloadContext, String action)
45             throws ApiException {
46         final CreateEcompOperationEnvironmentBean operationalEnv = new CreateEcompOperationEnvironmentBean();
47         operationalEnv.withOperationalEnvironmentId(operationalEnvironmentId)
48                 .withOperationalEnvironmentName(operationalEnvironmentName)
49                 .withOperationalEnvironmentType(operationalEnvironmentType).withTenantContext(tenantContext)
50                 .withWorkloadContext(workloadContext).withaction(action);
51         try {
52             return this.getJson(operationalEnv);
53         } catch (JsonProcessingException ex) {
54             ErrorLoggerInfo errorLoggerInfo =
55                     new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, ErrorCode.SchemaError)
56                             .build();
57             ValidateException validateException =
58                     new ValidateException.Builder("Mapping of request to JSON object failed : " + ex.getMessage(),
59                             HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_BAD_PARAMETER).cause(ex)
60                                     .errorInfo(errorLoggerInfo).build();
61
62             throw validateException;
63         }
64     }
65
66     protected String getJson(CreateEcompOperationEnvironmentBean obj) throws JsonProcessingException {
67
68         final ObjectMapper mapper = new ObjectMapper();
69         return mapper.writeValueAsString(obj);
70
71     }
72
73     public void dmaapPublishOperationalEnvRequest(String operationalEnvironmentId, String operationalEnvironmentName,
74             String operationalEnvironmentType, String tenantContext, String workloadContext, String action)
75             throws ApiException, IOException, InterruptedException {
76
77         String request = this.buildRequest(operationalEnvironmentId, operationalEnvironmentName,
78                 operationalEnvironmentType, tenantContext, workloadContext, action);
79         dmaapPublisher.get().send(request);
80
81     }
82
83 }