8179da107ec73a68096dcf11e5fa19410128e1e7
[appc.git] / appc-client / client-lib / src / main / java / org / openecomp / appc / client / impl / core / InvocationManager.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.onap.appc.client.impl.core;
26
27 import java.util.Properties;
28 import java.util.concurrent.TimeoutException;
29
30 /**
31  * layer for passing requests from API to Core
32  */
33 class InvocationManager implements IInvocationManager{
34
35     protected CoreManager coreManager = null;
36
37     InvocationManager(){
38     }
39
40     public void init(Properties properties) throws CoreException {
41         coreManager = new CoreManager(properties);
42     }
43
44     /**
45      *
46      * @param request
47      * @param businessCallback
48      * @param correlationId
49      * @param rpcName
50      * @throws CoreException
51      */
52     public void asyncRequest(String request, ICoreAsyncResponseHandler businessCallback, String correlationId, String rpcName) throws CoreException {
53         AsyncRequestResponseHandler requestResponseHandler = new AsyncRequestResponseHandler(correlationId, businessCallback, coreManager);
54         requestResponseHandler.sendRequest(request, correlationId, rpcName);
55     }
56
57     public <T> T syncRequest(String request, ICoreSyncResponseHandler businessCallback, String correlationId, String rpcName ) throws CoreException, TimeoutException {
58         SyncRequestResponseHandler requestResponseHandler = new SyncRequestResponseHandler(correlationId, businessCallback, coreManager);
59         requestResponseHandler.sendRequest(request, correlationId, rpcName);
60         T responseObject = (T) requestResponseHandler.getResponse();
61         return responseObject;
62     }
63
64     @Override
65     public void shutdown(boolean isForceShutdown) {
66         coreManager.shutdown(isForceShutdown);
67     }
68
69 }