c01199e58c70818b517dbb9ea587cf8e1a122ccc
[appc.git] / appc-client / client-kit / src / main / java / org / openecomp / appc / client / lcm / impl / business / CoreAsyncResponseHandlerImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.client.lcm.impl.business;
26
27 import org.openecomp.appc.client.impl.core.CoreException;
28 import org.openecomp.appc.client.impl.core.ICoreAsyncResponseHandler;
29 import org.openecomp.appc.client.lcm.api.ResponseHandler;
30 import org.openecomp.appc.client.lcm.exceptions.AppcClientException;
31 import com.fasterxml.jackson.databind.ObjectMapper;
32
33 class CoreAsyncResponseHandlerImpl<T> extends CoreResponseHandler implements ICoreAsyncResponseHandler {
34
35     private final ResponseHandler<T> responseHandler;
36
37     CoreAsyncResponseHandlerImpl(ResponseHandler<T> responseHandler, Class<T> rpcOutput, ObjectMapper mapper) {
38         super(rpcOutput, mapper);
39         this.responseHandler = responseHandler;
40     }
41
42     public boolean onResponse(String message, String type) {
43         Boolean[] isFinal = new Boolean[1];
44         isFinal[0] = false;
45         try {
46             T responseObject = (T) super.getResponse(message, type, isFinal);
47             responseHandler.onResponse(responseObject);
48             return isFinal[0];
49         } catch (Exception e) {
50             this.onException(e);
51             isFinal[0] = true;
52         }
53         return isFinal[0];
54     }
55
56     public void onException(Exception e) {
57         AppcClientException ex = new AppcClientException(e);
58         responseHandler.onException(ex);
59     }
60 }