Remove explicit default super-constructor calls
[controller.git] / opendaylight / md-sal / sal-connector-api / src / main / java / org / opendaylight / controller / sal / connector / api / BindingAwareRpcRouter.java
index 11df1ff9c60a9d67dc7434a7dbffdeda8a7cd035..17221bc0af4fe1894022d6db05af3400d8c0aeb9 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.controller.sal.connector.api;
 
 import java.util.concurrent.Future;
@@ -7,7 +14,7 @@ import org.opendaylight.yangtools.concepts.Immutable;
 public interface BindingAwareRpcRouter extends RpcRouter<String, String, String, byte[]> {
 
     @Override
-    public Future<org.opendaylight.controller.sal.connector.api.RpcRouter.RpcReply<byte[]>> sendRpc(
+    Future<org.opendaylight.controller.sal.connector.api.RpcRouter.RpcReply<byte[]>> sendRpc(
             RpcRequest<String, String, String, byte[]> input);
 
     class BindingAwareRequest implements RpcRequest<String, String, String, byte[]>, Immutable {
@@ -16,7 +23,6 @@ public interface BindingAwareRpcRouter extends RpcRouter<String, String, String,
         private final byte[] payload;
 
         public BindingAwareRequest(BindingAwareRouteIdentifier routingInformation, byte[] payload) {
-            super();
             this.routingInformation = routingInformation;
             this.payload = payload;
         }
@@ -38,7 +44,6 @@ public interface BindingAwareRpcRouter extends RpcRouter<String, String, String,
         private final String content;
 
         public BindingAwareRouteIdentifier(String type, String route, String content) {
-            super();
             this.type = type;
             this.route = route;
             this.content = content;
@@ -46,8 +51,8 @@ public interface BindingAwareRpcRouter extends RpcRouter<String, String, String,
 
         /**
          * Java class name of Rpc Context
-         * 
-         * 
+         *
+         *
          */
         @Override
         public String getContext() {
@@ -56,7 +61,7 @@ public interface BindingAwareRpcRouter extends RpcRouter<String, String, String,
 
         /**
          * String representation of route e.g. node-id
-         * 
+         *
          */
         @Override
         public String getRoute() {
@@ -65,7 +70,7 @@ public interface BindingAwareRpcRouter extends RpcRouter<String, String, String,
 
         /**
          * Java class name of Rpc Type e.g org.opendaylight.AddFlowInput
-         * 
+         *
          */
         @Override
         public String getType() {