From: Robert Varga Date: Wed, 18 Aug 2021 20:13:28 +0000 (+0200) Subject: Fixup DataCenterControl javadocs X-Git-Tag: v4.0.2~8 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=b26108cffa7ec84f2899a4cb9a6dd7cdffd5fcc8;ds=sidebyside Fixup DataCenterControl javadocs Add a @return and improve phrasing a bit. Change-Id: Ic9d4cca1a98d2618a9765f34bebc0f5d98657b34 Signed-off-by: Robert Varga --- diff --git a/opendaylight/md-sal/eos-dom-akka/src/main/java/org/opendaylight/controller/eos/akka/DataCenterControl.java b/opendaylight/md-sal/eos-dom-akka/src/main/java/org/opendaylight/controller/eos/akka/DataCenterControl.java index cb9cff97ad..568fbd7b68 100644 --- a/opendaylight/md-sal/eos-dom-akka/src/main/java/org/opendaylight/controller/eos/akka/DataCenterControl.java +++ b/opendaylight/md-sal/eos-dom-akka/src/main/java/org/opendaylight/controller/eos/akka/DataCenterControl.java @@ -13,7 +13,7 @@ import org.eclipse.jdt.annotation.NonNull; import org.opendaylight.yangtools.yang.common.Empty; /** - * Service used to bring up/down the NativeEos service in individual datacenters. + * Service used to bring up/down the Entity Ownership Service service in individual datacenters. * Active datacenter in native eos terms means that the candidates from this datacenter can become owners of entities. * Additionally the singleton component makings ownership decisions, runs only in an active datacenter. * @@ -26,12 +26,14 @@ import org.opendaylight.yangtools.yang.common.Empty; @Beta public interface DataCenterControl { /** - * Activates the native eos service in the datacenter that this method is called. + * Activates the Entity Ownership Service in the datacenter that this method is called. + * + * @return Completion future */ @NonNull ListenableFuture activateDataCenter(); /** - * Deactivates the native eos service in the datacenter that this method is called. + * Deactivates the Entity Ownership Service in the datacenter that this method is called. * * @return Completion future */