d7f955c3197c31834db4c92131397fa2f57173b5
[netconf.git] /
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 }