From: Robert Varga Date: Thu, 19 Apr 2018 20:37:01 +0000 (+0200) Subject: Document LogicalDatastoreType X-Git-Tag: release/fluorine~231 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=8448b95a6eebf87d7b82a9b9bf05dca320700e17;p=mdsal.git Document LogicalDatastoreType This adds some sorely-needed javadocs. Change-Id: Ief1797b7f63c6b85e53ee0e485453b0dbb07b95c Signed-off-by: Robert Varga --- diff --git a/common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/LogicalDatastoreType.java b/common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/LogicalDatastoreType.java index a44eafe127..31016717bc 100644 --- a/common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/LogicalDatastoreType.java +++ b/common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/LogicalDatastoreType.java @@ -7,23 +7,41 @@ */ package org.opendaylight.mdsal.common.api; +/** + * The concept of a logical data store, similar to RFC8342. + */ +// FIXME: 3.0.0: turn this into an interface so it can be externally-defined? +// FIXME: 3.0.0: note that mount points can have different types and policies, which can potentially be mapped public enum LogicalDatastoreType { - /** - * Logical atastore representing operational state of the system - * and it's components - * This datastore is used to describe operational state of - * the system and it's operation related data. + * Logical datastore representing operational state of the system and it's components. This datastore is used + * to describe operational state of the system and it's operation related data. * + *

+ * It is defined to: + *

*/ OPERATIONAL, /** - * Logical Datastore representing configuration state of the system - * and it's components. - * This datastore is used to describe intended state of - * the system and intended operation mode. + * Logical Datastore representing configuration state of the system and it's components. This datastore is used + * to describe intended state of the system and intended operation mode. * + *

+ * It is defined to: + *

*/ CONFIGURATION - }