Fix netconf operation serialization in nc
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / sal / binding / impl / forward / DomForwardedBroker.java
index c7dbcd4f5cf13f8db792aa9d99b9ba282d476491..db98b456f05c9060f04f8154eecf1e6fc5cf35ad 100644 (file)
@@ -1,14 +1,21 @@
+/*
+ * 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.impl.forward;
 
 import org.opendaylight.controller.sal.binding.impl.connect.dom.BindingIndependentConnector;
 import org.opendaylight.controller.sal.core.api.Broker.ProviderSession;
 
-interface DomForwardedBroker {
+public interface DomForwardedBroker {
 
     public BindingIndependentConnector getConnector();
-    
+
     public void setConnector(BindingIndependentConnector connector);
-    
+
     public void setDomProviderContext(ProviderSession domProviderContext);
 
     public ProviderSession getDomProviderContext();