summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-12-11 08:52:18 +0100
committerMarek Gradzki <mgradzki@cisco.com>2017-12-11 09:19:18 +0000
commit8931ab48b5ff8684aa56372c883ff660f13ec719 (patch)
tree4e20cf282aefc31614cbf7ce6f093fc513b0968d
parent3dc622d14a76b41f588eccff86b6566d7a145e56 (diff)
Clean Sonar warnings in JvppReplyConsumer
Change-Id: Ic664d0da1f3f253ee7d698c651354015792cc278 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
-rw-r--r--vpp-common/vpp-translate-utils/src/main/java/io/fd/hc2vpp/common/translate/util/JvppReplyConsumer.java30
1 files changed, 17 insertions, 13 deletions
diff --git a/vpp-common/vpp-translate-utils/src/main/java/io/fd/hc2vpp/common/translate/util/JvppReplyConsumer.java b/vpp-common/vpp-translate-utils/src/main/java/io/fd/hc2vpp/common/translate/util/JvppReplyConsumer.java
index 9fe9162c5..1674dc9ee 100644
--- a/vpp-common/vpp-translate-utils/src/main/java/io/fd/hc2vpp/common/translate/util/JvppReplyConsumer.java
+++ b/vpp-common/vpp-translate-utils/src/main/java/io/fd/hc2vpp/common/translate/util/JvppReplyConsumer.java
@@ -47,7 +47,7 @@ public interface JvppReplyConsumer {
* Should be used in case of calls where it's not clear which write crud operation respective
* call represents, for ex. setRouting
*/
- default <REP extends JVppReply<?>> REP getReplyForWrite(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForWrite(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType)
throws WriteFailedException {
@@ -59,7 +59,7 @@ public interface JvppReplyConsumer {
* Should be used in case of calls where it's not clear which write crud operation respective
* call represents, for ex. setRouting
*/
- default <REP extends JVppReply<?>> REP getReplyForWrite(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForWrite(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType,
@Nonnegative final int timeoutInSeconds)
throws WriteFailedException {
@@ -76,7 +76,7 @@ public interface JvppReplyConsumer {
/**
* Consumes reply for jvpp call representing create operation
*/
- default <REP extends JVppReply<?>> REP getReplyForCreate(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForCreate(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType,
@Nonnull final DataObject data)
throws WriteFailedException.CreateFailedException {
@@ -86,7 +86,7 @@ public interface JvppReplyConsumer {
/**
* Consumes reply for jvpp call representing create operation
*/
- default <REP extends JVppReply<?>> REP getReplyForCreate(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForCreate(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType,
@Nonnull final DataObject data,
@Nonnegative final int timeoutInSeconds)
@@ -104,7 +104,7 @@ public interface JvppReplyConsumer {
/**
* Consumes reply for jvpp call representing update operation
*/
- default <REP extends JVppReply<?>> REP getReplyForUpdate(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForUpdate(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType,
@Nonnull final DataObject dataBefore,
@Nonnull final DataObject dataAfter)
@@ -115,7 +115,7 @@ public interface JvppReplyConsumer {
/**
* Consumes reply for jvpp call representing update operation
*/
- default <REP extends JVppReply<?>> REP getReplyForUpdate(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForUpdate(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType,
@Nonnull final DataObject dataBefore,
@Nonnull final DataObject dataAfter,
@@ -134,7 +134,7 @@ public interface JvppReplyConsumer {
/**
* Consumes reply for jvpp call representing delete operation
*/
- default <REP extends JVppReply<?>> REP getReplyForDelete(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForDelete(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType)
throws WriteFailedException.DeleteFailedException {
return getReplyForDelete(future, replyType, JvppReplyTimeoutHolder.getTimeout());
@@ -143,7 +143,7 @@ public interface JvppReplyConsumer {
/**
* Consumes reply for jvpp call representing delete operation
*/
- default <REP extends JVppReply<?>> REP getReplyForDelete(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForDelete(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType,
@Nonnegative final int timeoutInSeconds)
throws WriteFailedException.DeleteFailedException {
@@ -156,13 +156,13 @@ public interface JvppReplyConsumer {
}
}
- default <REP extends JVppReply<?>> REP getReplyForRead(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForRead(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType)
throws ReadFailedException {
return getReplyForRead(future, replyType, JvppReplyTimeoutHolder.getTimeout());
}
- default <REP extends JVppReply<?>> REP getReplyForRead(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReplyForRead(@Nonnull Future<R> future,
@Nonnull final InstanceIdentifier<?> replyType,
@Nonnegative final int timeoutInSeconds)
throws ReadFailedException {
@@ -175,12 +175,12 @@ public interface JvppReplyConsumer {
}
}
- default <REP extends JVppReply<?>> REP getReply(@Nonnull Future<REP> future)
+ default <R extends JVppReply<?>> R getReply(@Nonnull Future<R> future)
throws TimeoutException, VppBaseCallException {
return getReply(future, JvppReplyTimeoutHolder.getTimeout());
}
- default <REP extends JVppReply<?>> REP getReply(@Nonnull Future<REP> future,
+ default <R extends JVppReply<?>> R getReply(@Nonnull Future<R> future,
@Nonnegative final int timeoutInSeconds)
throws TimeoutException, VppBaseCallException {
try {
@@ -192,7 +192,7 @@ public interface JvppReplyConsumer {
} catch (ExecutionException e) {
// Execution exception could generally contains any exception
// when using exceptions instead of return codes just rethrow it for processing on corresponding place
- if (e instanceof ExecutionException && (e.getCause() instanceof VppBaseCallException)) {
+ if (e.getCause() instanceof VppBaseCallException) {
throw (VppBaseCallException) (e.getCause());
}
throw new IllegalStateException(e);
@@ -206,6 +206,10 @@ public interface JvppReplyConsumer {
private static final Logger LOG = LoggerFactory.getLogger(JvppReplyTimeoutHolder.class);
private static Optional<Integer> timeout = Optional.empty();
+ private JvppReplyTimeoutHolder() {
+ throw new UnsupportedOperationException("Utility class cannot be instantiated.");
+ }
+
public static void setupTimeout(@Nonnegative final int jvppTimeout) {
if (timeout.isPresent()) {
// do not fail on reconfigure, to not disturb restarts