Fix action invocation and registration
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / RpcProviderService.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.mdsal.binding.api;
9
10 import java.util.Set;
11 import org.opendaylight.yangtools.concepts.ObjectRegistration;
12 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
13 import org.opendaylight.yangtools.yang.binding.RpcService;
14
15 /**
16  * Provides ability to registered Remote Procedure Call (RPC) service implementations. The RPCs are
17  * defined in YANG models.
18  *
19  */
20 public interface RpcProviderService extends BindingService {
21
22     <S extends RpcService, T extends S> ObjectRegistration<T> registerRpcImplementation(Class<S> type,
23             T implementation);
24
25
26     <S extends RpcService, T extends S> ObjectRegistration<T> registerRpcImplementation(Class<S> type,
27             T implementation, Set<InstanceIdentifier<?>> paths);
28
29 }