diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2018-12-12 23:44:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-12 23:44:27 +0000 |
commit | 00d96bbfd0f6caaa0bbcbe51d1c067822aa5040f (patch) | |
tree | 92be1a465e4c79410fb9a2b7d9519e3b09a60c87 /auth/auth-batch/src | |
parent | 8eff612c7c03471951be68687501d96c337a70df (diff) | |
parent | fa5976806a10bf248d816f5d1279e38a35b90e53 (diff) |
Merge "Fixed sonar issue in InputIterator.java"
Diffstat (limited to 'auth/auth-batch/src')
-rw-r--r-- | auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java index 04d9a019..954d6b47 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java @@ -3,6 +3,7 @@ * org.onap.aaf * =========================================================================== * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2018 IBM. * =========================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,11 +27,14 @@ import java.io.IOException; import java.io.PrintStream; import java.util.Iterator; import java.util.NoSuchElementException; +import org.onap.aaf.auth.env.AuthzTrans; + public class InputIterator implements Iterable<String> { private BufferedReader in; private final PrintStream out; private final String prompt, instructions; + private static AuthzTrans trans; public InputIterator(BufferedReader in, PrintStream out, String prompt, String instructions) { this.in = in; @@ -50,6 +54,7 @@ public class InputIterator implements Iterable<String> { try { input = in.readLine(); } catch (IOException e) { + trans.error().log("IO Exception",e.getMessage()); input = null; return false; } |