X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=singleton-service%2Fmdsal-singleton-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fmdsal%2Fsingleton%2Fimpl%2FServiceRegistration.java;fp=singleton-service%2Fmdsal-singleton-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fmdsal%2Fsingleton%2Fimpl%2FServiceRegistration.java;h=d4070207f05803d47c11f83a878c17f214d69c0e;hb=3ea5c72d92876e02e47f01827f3f8ac8d4fd09fb;hp=0000000000000000000000000000000000000000;hpb=56c28b25b30222ade6dde8655779f565bb99a4f5;p=mdsal.git 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 index 0000000000..d4070207f0 --- /dev/null +++ b/singleton-service/mdsal-singleton-impl/src/main/java/org/opendaylight/mdsal/singleton/impl/ServiceRegistration.java @@ -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 { + ServiceRegistration(final ClusterSingletonService instance) { + super(instance); + } +}