Mass-migrate to java.util.Optional
[mdsal.git] / entityownership / mdsal-eos-common-api / src / main / java / org / opendaylight / mdsal / eos / common / api / GenericEntityOwnershipService.java
index ae56cd1e4e8cfd6b49a013c27aebb308f8130ef7..e7be6767214a4e0c70f9efda82554be9ebd5a3be 100644 (file)
@@ -7,7 +7,7 @@
  */
 package org.opendaylight.mdsal.eos.common.api;
 
-import com.google.common.base.Optional;
+import java.util.Optional;
 import javax.annotation.Nonnull;
 import org.opendaylight.yangtools.concepts.Path;
 
@@ -34,6 +34,7 @@ public interface GenericEntityOwnershipService<P extends Path<P>, E extends Gene
      * Registers a candidate for ownership of the given entity. Only one such request can be made per entity
      * per process. If multiple requests for registering a candidate for a given entity are received in the
      * current process a CandidateAlreadyRegisteredException will be thrown.
+     *
      * <p>
      * The registration is performed asynchronously and any registered entity ownership listener is
      * notified of ownership status changes for the entity.