Merge "Removing { } from NormalizedNodeJsonBodyWriter"
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / md / sal / dom / spi / AbstractDOMRpcProviderService.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. 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.controller.md.sal.dom.spi;
9
10 import com.google.common.collect.ImmutableSet;
11 import org.opendaylight.controller.md.sal.dom.api.DOMRpcIdentifier;
12 import org.opendaylight.controller.md.sal.dom.api.DOMRpcImplementation;
13 import org.opendaylight.controller.md.sal.dom.api.DOMRpcImplementationRegistration;
14 import org.opendaylight.controller.md.sal.dom.api.DOMRpcProviderService;
15
16 /**
17  * Convenience abstract base class for {@link DOMRpcProviderService} implementations.
18  */
19 public abstract class AbstractDOMRpcProviderService implements DOMRpcProviderService {
20     @Override
21     public final <T extends DOMRpcImplementation> DOMRpcImplementationRegistration<T> registerRpcImplementation(final T implementation, final DOMRpcIdentifier... types) {
22         return registerRpcImplementation(implementation, ImmutableSet.copyOf(types));
23     }
24 }