273116725d7fd514fe3ffbe96047678ec025ef58
[mdsal.git] / singleton-service / mdsal-singleton-dom-impl / src / main / java / org / opendaylight / mdsal / singleton / dom / impl / ServiceRegistration.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.singleton.dom.impl;
9
10 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonService;
11 import org.opendaylight.yangtools.concepts.AbstractObjectRegistration;
12
13 abstract class ServiceRegistration extends AbstractObjectRegistration<ClusterSingletonService> {
14     ServiceRegistration(final ClusterSingletonService instance) {
15         super(instance);
16     }
17 }