Bug 5528 - RPC invoke impl - prepare impl of interface
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / restful / services / impl / RestconfInvokeOperationsServiceImpl.java
1 /*
2  * Copyright (c) 2016 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.restconf.restful.services.impl;
9
10 import javax.ws.rs.core.UriInfo;
11 import org.opendaylight.netconf.sal.restconf.impl.NormalizedNodeContext;
12 import org.opendaylight.restconf.restful.services.api.RestconfInvokeOperationsService;
13
14 public class RestconfInvokeOperationsServiceImpl implements RestconfInvokeOperationsService {
15
16     @Override
17     public NormalizedNodeContext invokeRpc(final String identifier, final NormalizedNodeContext payload, final UriInfo uriInfo) {
18         throw new UnsupportedOperationException("Not yet impemented.");
19     }
20 }