Remove yang-test
[controller.git] / opendaylight / config / config-manager / src / main / java / org / opendaylight / controller / config / manager / impl / ConfigTransactionControllerImplMXBean.java
index b35c1dc7d05585bdf95b306441cbdb4a0f85145e..dd506af74fd007958f24a74227c2cd020bbded09 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013, 2017 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,
@@ -12,17 +12,19 @@ import org.opendaylight.controller.config.api.ConfigTransactionController;
 /**
  * Exposes optimistic locking details about transaction.
  */
-public interface ConfigTransactionControllerImplMXBean extends
-        ConfigTransactionController {
+public interface ConfigTransactionControllerImplMXBean extends ConfigTransactionController {
 
     /**
      * Get version of config registry when this transaction was created.
+     *
+     * @return parent version
      */
     long getParentVersion();
 
     /**
      * Get version of current transaction.
+     *
+     * @return version
      */
     long getVersion();
-
 }