Fix checkstyle violations in sal-binding-api
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / rpc / RpcRoutingContext.java
index db93766c3ccd8acab9fff0e19c6b43aeb8cc5add..4d42ff2bfc057ce53fd40cc38820eb3ac6d024f6 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.binding.api.rpc;
 
 import org.opendaylight.yangtools.yang.binding.BaseIdentity;
@@ -6,5 +13,6 @@ import org.opendaylight.yangtools.yang.binding.RpcService;
 public interface RpcRoutingContext<C extends BaseIdentity,S extends RpcService> {
 
     Class<C> getContextType();
+
     Class<S> getServiceType();
 }