diff options
author | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-08-07 16:55:02 +0530 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-08-12 08:06:52 +0000 |
commit | 51640f9c931aa052dd01a0cd24fda279ced68142 (patch) | |
tree | d55c3cc07973ec4e6d6b32e4c93612f26c217dc1 /vid-app-common/src | |
parent | 25c073d46559a2a06e939e0b26bbb27d14a4ea2c (diff) |
Move this variable to comply with Java Code Conventions
Issue-ID: VID-561
Change-Id: I7d3382d43a0484dbadea4d3285a235a628d84ffc
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'vid-app-common/src')
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/aai/PombaRestInterface.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/aai/PombaRestInterface.java b/vid-app-common/src/main/java/org/onap/vid/aai/PombaRestInterface.java index b118901a4..2f69e397c 100644 --- a/vid-app-common/src/main/java/org/onap/vid/aai/PombaRestInterface.java +++ b/vid-app-common/src/main/java/org/onap/vid/aai/PombaRestInterface.java @@ -4,6 +4,7 @@ * ================================================================================ * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved. * Modifications Copyright (C) 2018 - 2019 Nokia. All rights reserved. + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -35,13 +36,13 @@ import java.util.UUID; import static org.onap.vid.utils.Logging.REQUEST_ID_HEADER_KEY; public class PombaRestInterface extends AAIRestInterface { + + private Client client = null; public PombaRestInterface (HttpsAuthClient httpsAuthClientFactory, ServletRequestHelper servletRequestHelper, SystemPropertyHelper systemPropertyHelper) { super(httpsAuthClientFactory, servletRequestHelper, systemPropertyHelper); } - private Client client = null; - @Override protected void initRestClient() { |