Merge "Removed `which` dependency, now using proper shell builtin."
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / sal / binding / spi / DelegateProxy.java
index 085228c9669e84667eb9ef5819ea6c17865a4a91..d22335e66e1cf1d0346272f0a4070b8e57b6fb2f 100644 (file)
@@ -1,7 +1,14 @@
+/*
+ * Copyright (c) 2013 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.spi;
 
 public interface DelegateProxy<T> {
-    
+
     void setDelegate(T delegate);
     T getDelegate();
 }