BUG 2854 : Do not add empty read write transactions to the replicable journal
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / config / yang / md / sal / dom / statistics / DomBrokerRuntimeMXBeanImpl.java
index bc13979d6785052d7c0ec4010fe4d26e05ddc7c1..666378ddb355912e08888c355e0cda3ed2770993 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.config.yang.md.sal.dom.statistics;
 
 import org.opendaylight.controller.config.yang.md.sal.dom.impl.Data;
@@ -5,15 +12,16 @@ import org.opendaylight.controller.config.yang.md.sal.dom.impl.DomBrokerImplRunt
 import org.opendaylight.controller.config.yang.md.sal.dom.impl.Transactions;
 import org.opendaylight.controller.sal.dom.broker.DataBrokerImpl;
 
+@Deprecated
 public class DomBrokerRuntimeMXBeanImpl implements
         DomBrokerImplRuntimeMXBean {
-    
+
     private final DataBrokerImpl dataService;
     private final Transactions transactions = new Transactions();
     private final Data data = new Data();
-    
+
     public DomBrokerRuntimeMXBeanImpl(DataBrokerImpl dataService) {
-        this.dataService = dataService; 
+        this.dataService = dataService;
     }
 
     public Transactions getTransactions() {