Rename singleton service components
[mdsal.git] / singleton-service / mdsal-singleton-impl / src / main / java / org / opendaylight / mdsal / singleton / impl / ServiceRegistration.java
diff --git a/singleton-service/mdsal-singleton-impl/src/main/java/org/opendaylight/mdsal/singleton/impl/ServiceRegistration.java b/singleton-service/mdsal-singleton-impl/src/main/java/org/opendaylight/mdsal/singleton/impl/ServiceRegistration.java
new file mode 100644 (file)
index 0000000..d407020
--- /dev/null
@@ -0,0 +1,17 @@
+/*
+ * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.mdsal.singleton.impl;
+
+import org.opendaylight.mdsal.singleton.api.ClusterSingletonService;
+import org.opendaylight.yangtools.concepts.AbstractObjectRegistration;
+
+abstract class ServiceRegistration extends AbstractObjectRegistration<ClusterSingletonService> {
+    ServiceRegistration(final ClusterSingletonService instance) {
+        super(instance);
+    }
+}