aboutsummaryrefslogtreecommitdiffstats
path: root/aai-core/src/main/java/org/onap/aai/util/RestController.java
blob: 6c57040db952135e3b49c10800b8b21fd4a8a242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.aai.util;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.type.TypeFactory;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientHandlerException;
import com.sun.jersey.api.client.ClientResponse;

import java.io.IOException;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.UnrecoverableKeyException;
import java.security.cert.CertificateException;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;

import org.onap.aai.exceptions.AAIException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class RestController implements RestControllerInterface {

    private static final String TARGET_NAME = "AAI";
    private static final Logger LOGGER = LoggerFactory.getLogger(RestController.class);

    private static Client client = null;

    private String restSrvrBaseURL;

    private String overrideLocalHost = null;

    // To do - Come up with helper function that will automatically
    // generate the REST API path based on path parameter(s) and query parameter(s)!
    public static final String REST_APIPATH_COMPLEXES = "cloud-infrastructure/complexes";
    public static final String REST_APIPATH_COMPLEX = "cloud-infrastructure/complexes/complex/";
    public static final String REST_APIPATH_PSERVERS = "cloud-infrastructure/pservers";
    public static final String REST_APIPATH_PSERVER = "cloud-infrastructure/pservers/pserver/";
    public static final String REST_APIPATH_PHYSICALLINKS = "network/physical-links/";
    public static final String REST_APIPATH_PHYSICALLINK = "network/physical-links/physical-link/";
    public static final String REST_APIPATH_PINTERFACES = "network/p-interfaces/";
    public static final String REST_APIPATH_PINTERFACE = "network/p-interfaces/p-interface/";
    public static final String REST_APIPATH_VPLSPES = "network/vpls-pes/";
    public static final String REST_APIPATH_VPLSPE = "network/vpls-pes/vpls-pe/";
    public static final String REST_APIPATH_UPDATE = "actions/update/";
    public static final String REST_APIPATH_SEARCH = "search/nodes-query?search-node-type=";

    public static final String REST_APIPATH_CLOUDREGION = "cloud-infrastructure/cloud-regions/cloud-region/";
    public static final String REST_APIPATH_TENANT = "cloud-infrastructure/tenants/tenant/";
    public static final String REST_APIPATH_VIRTUAL_DATA_CENTER =
            "cloud-infrastructure/virtual-data-centers/virtual-data-center/";
    public static final String REST_APIPATH_VIRTUAL_DATA_CENTERS = "cloud-infrastructure/virtual-data-centers/";
    public static final String REST_APIPATH_GENERIC_VNF = "network/generic-vnfs/generic-vnf/";
    public static final String REST_APIPATH_GENERIC_VNFS = "network/generic-vnfs";
    public static final String REST_APIPATH_L3_NETWORK = "network/l3-networks/l3-network/";
    public static final String REST_APIPATH_L3_NETWORKS = "network/l3-networks";
    public static final String REST_APIPATH_INSTANCE_GROUP = "network/instance-groups/instance-group";
    public static final String REST_APIPATH_INSTANCE_GROUPS = "network/instance-groups";
    public static final String REST_APIPATH_VFMODULE = "nodes/vf-modules/vf-module/";

    public static final String REST_APIPATH_VCE = "network/vces/vce/";

    public static final String REST_APIPATH_SERVICE = "service-design-and-creation/services/service/";
    public static final String REST_APIPATH_LOGICALLINKS = "network/logical-links/";
    public static final String REST_APIPATH_LOGICALLINK = "network/logical-links/logical-link/";

    public RestController(String truststorePath, String truststorePassword, String keystorePath,
            String keystorePassword) throws AAIException {
        this.initRestClient(truststorePath, truststorePassword, keystorePath, keystorePassword);
    }

    /**
     * Inits the rest client.
     *
     * @throws AAIException the AAI exception
     */
    public void initRestClient(String truststorePath, String truststorePassword, String keystorePath,
            String keystorePassword) throws AAIException {
        if (client == null) {
            try {
                client = getHttpsAuthClient(truststorePath, truststorePassword, keystorePath, keystorePassword);
            } catch (KeyManagementException e) {
                throw new AAIException("AAI_7117", "KeyManagementException in REST call to DB: " + e.toString());
            } catch (Exception e) {
                throw new AAIException("AAI_7117", " Exception in REST call to DB: " + e.toString());
            }
        }
    }

    public Client getHttpsAuthClient(String truststorePath, String truststorePassword, String keystorePath,
            String keystorePassword) throws KeyManagementException, UnrecoverableKeyException, CertificateException,
            NoSuchAlgorithmException, KeyStoreException, IOException {
        return HttpsAuthClient.getClient(truststorePath, truststorePassword, keystorePath, keystorePassword);
    }

    public Client getHttpsAuthClient() throws KeyManagementException, UnrecoverableKeyException, CertificateException,
            NoSuchAlgorithmException, KeyStoreException, IOException, AAIException {
        return HttpsAuthClient.getClient();
    }

    /**
     * Sets the rest srvr base URL.
     *
     * @param baseURL the base URL
     * @throws AAIException the AAI exception
     */
    public void SetRestSrvrBaseURL(String baseURL) throws AAIException {
        if (baseURL == null)
            throw new AAIException("AAI_7117", "REST Server base URL cannot be null.");
        restSrvrBaseURL = baseURL;
    }

    /**
     * Gets the rest srvr base URL.
     *
     * @return the rest srvr base URL
     */
    public String getRestSrvrBaseURL() {
        return restSrvrBaseURL;
    }

    public <T> void Get(T t, String sourceID, String transId, String path, RestObject<T> restObject, boolean oldserver)
            throws AAIException {
        Get(t, sourceID, transId, path, restObject, oldserver, AAIConstants.AAI_RESOURCES_PORT);
    }

    /**
     * To do - optimization and automation. Also make it as generic as possible.
     *
     * @param <T> the generic type
     * @param t the t
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @param restObject the rest object
     * @param oldserver the oldserver
     * @throws AAIException the AAI exception
     */
    @SuppressWarnings("unchecked")
    public <T> void Get(T t, String sourceID, String transId, String path, RestObject<T> restObject, boolean oldserver,
            int port) throws AAIException {
        String methodName = "Get";
        String url = "";
        transId += ":" + UUID.randomUUID().toString();

        LOGGER.debug(methodName + " start");

        restObject.set(t);

        if (oldserver) {
            url = AAIConfig.get(AAIConstants.AAI_OLDSERVER_URL) + path;
        } else {
            if (overrideLocalHost == null) {
                overrideLocalHost =
                        AAIConfig.get(AAIConstants.AAI_LOCAL_OVERRIDE, AAIConstants.AAI_LOCAL_OVERRIDE_DEFAULT);
            }
            if (AAIConstants.AAI_LOCAL_OVERRIDE_DEFAULT.equals(overrideLocalHost)) {
                url = String.format(AAIConstants.AAI_LOCAL_REST, port,
                        AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP)) + path;
            } else {
                url = String.format(AAIConstants.AAI_LOCAL_REST_OVERRIDE, overrideLocalHost,
                        AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP)) + path;
            }
        }
        LOGGER.debug(url + " for the get REST API");
        ClientResponse cres = client.resource(url).accept("application/json").header("X-TransactionId", transId)
                .header("X-FromAppId", sourceID).header("Real-Time", "true").type("application/json")
                .get(ClientResponse.class);

        // System.out.println("cres.EntityInputSream()="+cres.getEntityInputStream().toString());
        // System.out.println("cres.tostring()="+cres.toString());

        if (cres.getStatus() == 200) {
            // System.out.println(methodName + ": url=" + url);
            t = (T) cres.getEntity(t.getClass());
            restObject.set(t);
            LOGGER.debug(methodName + "REST api GET was successfull!");
        } else {
            // System.out.println(methodName + ": url=" + url + " failed with status=" + cres.getStatus());
            throw new AAIException("AAI_7116", methodName + " with status=" + cres.getStatus() + ", url=" + url);
        }
    }

    /**
     * To do - optimization and automation. Also make it as generic as possible.
     *
     * @param <T> the generic type
     * @param t the t
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @param restObject the rest object
     * @param oldserver the oldserver
     * @throws AAIException the AAI exception
     */
    @SuppressWarnings("unchecked")
    public <T> void Get(T t, String sourceID, String transId, String path, RestObject<T> restObject, String apiVersion)
            throws AAIException {
        String methodName = "Get";
        String url = "";
        transId += ":" + UUID.randomUUID().toString();

        LOGGER.debug(methodName + " start");

        restObject.set(t);

        url = AAIConfig.get(AAIConstants.AAI_SERVER_URL_BASE) + apiVersion + "/" + path;

        LOGGER.debug(url + " for the get REST API");
        ClientResponse cres = client.resource(url).accept("application/json").header("X-TransactionId", transId)
                .header("X-FromAppId", sourceID).header("Real-Time", "true").type("application/json")
                .get(ClientResponse.class);

        // System.out.println("cres.EntityInputSream()="+cres.getEntityInputStream().toString());
        // System.out.println("cres.tostring()="+cres.toString());

        if (cres.getStatus() == 200) {
            // System.out.println(methodName + ": url=" + url);
            t = (T) cres.getEntity(t.getClass());
            restObject.set(t);
            LOGGER.debug(methodName + "REST api GET was successfull!");
        } else {
            // System.out.println(methodName + ": url=" + url + " failed with status=" + cres.getStatus());
            throw new AAIException("AAI_7116", methodName + " with status=" + cres.getStatus() + ", url=" + url);
        }
    }

    /**
     * Map json to object list.
     *
     * @param <T> the generic type
     * @param typeDef the type def
     * @param json the json
     * @param clazz the clazz
     * @return the list
     * @throws Exception the exception
     */
    private <T> List<T> mapJsonToObjectList(T typeDef, String json, Class clazz) throws Exception {
        List<T> list;
        ObjectMapper mapper = new ObjectMapper();
        System.out.println(json);
        TypeFactory t = TypeFactory.defaultInstance();
        list = mapper.readValue(json, t.constructCollectionType(ArrayList.class, clazz));

        return list;
    }

    /**
     * Put.
     *
     * @param <T> the generic type
     * @param t the t
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @throws AAIException the AAI exception
     */
    public <T> void Put(T t, String sourceID, String transId, String path) throws AAIException {
        Put(t, sourceID, transId, path, false, AAIConstants.AAI_RESOURCES_PORT);
    }

    /**
     * Put.
     *
     * @param <T> the generic type
     * @param t the t
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @throws AAIException the AAI exception
     */
    public <T> void Put(T t, String sourceID, String transId, String path, boolean oldserver) throws AAIException {
        Put(t, sourceID, transId, path, oldserver, AAIConstants.AAI_RESOURCES_PORT);
    }

    /**
     * Put.
     *
     * @param <T> the generic type
     * @param t the t
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @param oldserver the oldserver
     * @throws AAIException the AAI exception
     */
    public <T> void Put(T t, String sourceID, String transId, String path, boolean oldserver, int port)
            throws AAIException {
        String methodName = "Put";
        String url = "";
        transId += ":" + UUID.randomUUID().toString();

        LOGGER.debug(methodName + " start");

        if (oldserver) {
            url = AAIConfig.get(AAIConstants.AAI_OLDSERVER_URL) + path;
        } else {
            if (overrideLocalHost == null) {
                overrideLocalHost =
                        AAIConfig.get(AAIConstants.AAI_LOCAL_OVERRIDE, AAIConstants.AAI_LOCAL_OVERRIDE_DEFAULT);
            }
            if (AAIConstants.AAI_LOCAL_OVERRIDE_DEFAULT.equals(overrideLocalHost)) {
                url = String.format(AAIConstants.AAI_LOCAL_REST, port,
                        AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP)) + path;
            } else {
                url = String.format(AAIConstants.AAI_LOCAL_REST_OVERRIDE, overrideLocalHost,
                        AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP)) + path;
            }
        }

        ClientResponse cres = client.resource(url).accept("application/json").header("X-TransactionId", transId)
                .header("X-FromAppId", sourceID).header("Real-Time", "true").type("application/json").entity(t)
                .put(ClientResponse.class);

        // System.out.println("cres.tostring()="+cres.toString());

        int statuscode = cres.getStatus();
        if (statuscode >= 200 && statuscode <= 299) {
            LOGGER.debug(methodName + ": url=" + url + ", request=" + path);
        } else {
            throw new AAIException("AAI_7116", methodName + " with status=" + statuscode + ", url=" + url + ", msg="
                    + cres.getEntity(String.class));
        }
    }

    /**
     * Put.
     *
     * @param <T> the generic type
     * @param t the t
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @param apiVersion version number
     * @throws AAIException the AAI exception
     */
    public <T> void Put(T t, String sourceID, String transId, String path, String apiVersion) throws AAIException {
        String methodName = "Put";
        String url = "";
        transId += ":" + UUID.randomUUID().toString();

        LOGGER.debug(methodName + " start");

        url = AAIConfig.get(AAIConstants.AAI_SERVER_URL_BASE) + apiVersion + "/" + path;

        ClientResponse cres = client.resource(url).accept("application/json").header("X-TransactionId", transId)
                .header("X-FromAppId", sourceID).header("Real-Time", "true").type("application/json").entity(t)
                .put(ClientResponse.class);

        // System.out.println("cres.tostring()="+cres.toString());

        int statuscode = cres.getStatus();
        if (statuscode >= 200 && statuscode <= 299) {
            LOGGER.debug(methodName + ": url=" + url + ", request=" + path);
        } else {
            throw new AAIException("AAI_7116", methodName + " with status=" + statuscode + ", url=" + url + ", msg="
                    + cres.getEntity(String.class));
        }
    }

    public void Delete(String sourceID, String transId, String path) throws AAIException {
        Delete(sourceID, transId, path, AAIConstants.AAI_RESOURCES_PORT);
    }

    /**
     * Delete.
     *
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @throws AAIException the AAI exception
     */
    public void Delete(String sourceID, String transId, String path, int port) throws AAIException {
        String methodName = "Delete";
        String url = "";
        transId += ":" + UUID.randomUUID().toString();

        LOGGER.debug(methodName + " start");

        String request = "{}";
        if (overrideLocalHost == null) {
            overrideLocalHost = AAIConfig.get(AAIConstants.AAI_LOCAL_OVERRIDE, AAIConstants.AAI_LOCAL_OVERRIDE_DEFAULT);
        }
        if (AAIConstants.AAI_LOCAL_OVERRIDE_DEFAULT.equals(overrideLocalHost)) {
            url = String.format(AAIConstants.AAI_LOCAL_REST, port,
                    AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP)) + path;
        } else {
            url = String.format(AAIConstants.AAI_LOCAL_REST_OVERRIDE, overrideLocalHost,
                    AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP)) + path;
        }
        ClientResponse cres = client.resource(url).accept("application/json").header("X-TransactionId", transId)
                .header("X-FromAppId", sourceID).header("Real-Time", "true").type("application/json").entity(request)
                .delete(ClientResponse.class);

        if (cres.getStatus() == 404) { // resource not found
            LOGGER.info("Resource does not exist...: " + cres.getStatus() + ":" + cres.getEntity(String.class));
        } else if (cres.getStatus() == 200 || cres.getStatus() == 204) {
            LOGGER.info("Resource " + url + " deleted");
        } else {
            LOGGER.error("Deleting Resource failed: " + cres.getStatus() + ":" + cres.getEntity(String.class));
            throw new AAIException("AAI_7116", "Error during DELETE");
        }
    }

    public <T> String Post(T t, String sourceID, String transId, String path) throws Exception {
        return Post(t, sourceID, transId, path, AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP));
    }

    /**
     * Post.
     *
     * @param <T> the generic type
     * @param t the t
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @param apiVersion the apiVersion
     * @return the string
     * @throws Exception the exception
     */
    public <T> String Post(T t, String sourceID, String transId, String path, String apiVersion) throws Exception {
        String methodName = "Post";
        String url = "";
        transId += ":" + UUID.randomUUID().toString();

        LOGGER.debug(methodName + " start");

        try {

            url = AAIConfig.get(AAIConstants.AAI_SERVER_URL_BASE) + apiVersion + "/" + path;

            ClientResponse cres = client.resource(url).accept("application/json").header("X-TransactionId", transId)
                    .header("X-FromAppId", sourceID).header("Real-Time", "true").type("application/json").entity(t)
                    .post(ClientResponse.class);

            int statuscode = cres.getStatus();
            if (statuscode >= 200 && statuscode <= 299) {
                LOGGER.debug(methodName + "REST api POST was successful!");
                return cres.getEntity(String.class);
            } else {
                throw new AAIException("AAI_7116", methodName + " with status=" + statuscode + ", url=" + url + ", msg="
                        + cres.getEntity(String.class));
            }

        } catch (AAIException e) {
            throw new AAIException("AAI_7116", methodName + " with url=" + url + ", Exception: " + e.toString());
        } catch (Exception e) {
            throw new AAIException("AAI_7116", methodName + " with url=" + url + ", Exception: " + e.toString());

        } finally {
        }
    }

    /**
     * Gets the single instance of RestController.
     *
     * @param <T> the generic type
     * @param clazz the clazz
     * @return single instance of RestController
     * @throws IllegalAccessException the illegal access exception
     * @throws InstantiationException the instantiation exception
     */
    public <T> T getInstance(Class<T> clazz) throws IllegalAccessException, InstantiationException {
        return clazz.newInstance();
    }

    /**
     * Does resource exist.
     *
     * @param <T> the generic type
     * @param resourcePath the resource path
     * @param resourceClassName the resource class name
     * @param fromAppId the from app id
     * @param transId the trans id
     * @return the t
     */
    /*
     * DoesResourceExist
     * 
     * To check whether a resource exist or get a copy of the existing version of the resource
     * 
     * Resourcepath: should contain the qualified resource path (including encoded unique key identifier value),
     * resourceClassName: is the canonical name of the resource class name,
     * fromAppId:
     * transId:
     * 
     * Will return null (if the resource doesn’t exist) (or)
     * Will return the specified resource from the Graph.
     * 
     * Example:
     * LogicalLink llink = new LogicalLink();
     * String resourceClassName = llink.getClass().getCanonicalName();
     * llink = RestController.DoesResourceExist("network/logical-links/logical-link/" + <encoded-link-name>,
     * resourceClassName, fromAppId, transId);
     */
    public <T> T DoesResourceExist(String resourcePath, String resourceClassName, String fromAppId, String transId) {

        try {

            RestObject<T> restObj = new RestObject<T>();
            @SuppressWarnings("unchecked")
            T resourceObj = (T) getInstance(Class.forName(resourceClassName));
            restObj.set(resourceObj);
            Get(resourceObj, fromAppId, transId, resourcePath, restObj, false, AAIConstants.AAI_RESOURCES_PORT);

            resourceObj = restObj.get();
            if (resourceObj != null)
                return resourceObj;

        } catch (AAIException e) {

        } catch (ClientHandlerException che) {

        } catch (Exception e) {

        }

        return null;
    }

    /**
     * Patch.
     *
     * @param <T> the generic type
     * @param sourceID the source ID
     * @param transId the trans id
     * @param path the path
     * @throws AAIException the AAI exception
     */
    public <T> void Patch(T t, String sourceID, String transId, String path) throws AAIException {
        String methodName = "Patch";
        String url = "";
        transId += ":" + UUID.randomUUID().toString();

        int numRetries = 5;
        ClientResponse cres = null;
        int statusCode = -1;

        try {
            if (overrideLocalHost == null) {
                overrideLocalHost =
                        AAIConfig.get(AAIConstants.AAI_LOCAL_OVERRIDE, AAIConstants.AAI_LOCAL_OVERRIDE_DEFAULT);
            }
            if (AAIConstants.AAI_LOCAL_OVERRIDE_DEFAULT.equals(overrideLocalHost)) {
                url = String.format(AAIConstants.AAI_LOCAL_REST, AAIConstants.AAI_RESOURCES_PORT,
                        AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP)) + path;
            } else {
                url = String.format(AAIConstants.AAI_LOCAL_REST_OVERRIDE, overrideLocalHost,
                        AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP)) + path;
            }

            do {

                cres = client.resource(url).accept("application/json").header("X-TransactionId", transId)
                        .header("X-FromAppId", sourceID).header("X-HTTP-Method-Override", "PATCH")
                        .type("application/merge-patch+json").entity(t).post(ClientResponse.class);

                statusCode = cres.getStatus();

                if (statusCode >= 200 && statusCode <= 299) {
                    LOGGER.debug(methodName + "REST api PATCH was successful!");
                    return;
                } else {
                    LOGGER.debug(methodName + "Unable to make the patch request to url " + url + " so retrying");
                }

                numRetries--;

            } while (numRetries >= 0);

            LOGGER.debug(methodName + "Unable to make the patch request to url " + url + " even after trying = "
                    + numRetries + " times.");
            throw new AAIException("AAI_7116", methodName + " with status=" + statusCode + ", url=" + url + ", msg="
                    + cres.getEntity(String.class));

        } catch (AAIException e) {
            throw new AAIException("AAI_7116", methodName + " with url=" + url + ", Exception: " + e.toString());
        } catch (Exception e) {
            throw new AAIException("AAI_7116", methodName + " with url=" + url + ", Exception: " + e.toString());

        } finally {
        }

    }
}