aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/nbi/apis/status/OnapClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/nbi/apis/status/OnapClient.java')
-rw-r--r--src/main/java/org/onap/nbi/apis/status/OnapClient.java14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/main/java/org/onap/nbi/apis/status/OnapClient.java b/src/main/java/org/onap/nbi/apis/status/OnapClient.java
index c3eb746..0d07d16 100644
--- a/src/main/java/org/onap/nbi/apis/status/OnapClient.java
+++ b/src/main/java/org/onap/nbi/apis/status/OnapClient.java
@@ -10,6 +10,7 @@
* 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.
*/
+
package org.onap.nbi.apis.status;
import java.text.MessageFormat;
@@ -44,7 +45,6 @@ public class OnapClient {
private static final Logger LOGGER = LoggerFactory.getLogger(OnapClient.class);
-
public ApplicationStatus checkConnectivity(OnapModuleType onapModuleType) {
try {
@@ -63,19 +63,17 @@ public class OnapClient {
break;
}
} catch (BackendFunctionalException e) {
- String message = MessageFormat
- .format("backend exception for {0}, status code {1}, body response {2}", onapModuleType,
- e.getHttpStatus(), e.getBodyResponse());
+ String message = MessageFormat.format("backend exception for {0}, status code {1}, body response {2}",
+ onapModuleType, e.getHttpStatus(), e.getBodyResponse());
LOGGER.error(message);
return new ApplicationStatus(onapModuleType.getValue() + " connectivity", StatusType.KO, null);
} catch (ResourceAccessException e) {
- String message = MessageFormat
- .format("resource access exception for {0}, response {1}", onapModuleType, e.getMessage());
+ String message = MessageFormat.format("resource access exception for {0}, response {1}", onapModuleType,
+ e.getMessage());
LOGGER.error(message);
return new ApplicationStatus(onapModuleType.getValue() + " connectivity", StatusType.KO, null);
}
return new ApplicationStatus(onapModuleType.getValue() + " connectivity", StatusType.OK, null);
}
-
-} \ No newline at end of file
+}