Convert mdsal-singleton-common-api to a JPMS module
[mdsal.git] / singleton-service / mdsal-singleton-common-api / src / main / java / org / opendaylight / mdsal / singleton / common / api / ClusterSingletonService.java
index 2329f8be575a86664fbfe318f4e78eced31c047d..58368c3618b52f014b407bfef3443fb80244a8ea 100644 (file)
@@ -5,7 +5,6 @@
  * 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.mdsal.singleton.common.api;
 
 import com.google.common.util.concurrent.ListenableFuture;
@@ -32,6 +31,5 @@ public interface ClusterSingletonService extends Identifiable<ServiceGroupIdenti
      *
      * @return a ListenableFuture that is completed when the underlying instance close operation is complete.
      */
-    ListenableFuture<Void> closeServiceInstance();
-
+    ListenableFuture<? extends Object> closeServiceInstance();
 }