c2a24b6000a55c66ff2fcbbfee499ede3bd5ac21
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / restconf / jersey / providers / AbstractToPatchBodyReader.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.restconf.jersey.providers;
9
10 import org.opendaylight.restconf.common.context.InstanceIdentifierContext;
11 import org.opendaylight.restconf.common.patch.PatchContext;
12
13 /**
14  * Common superclass for readers producing {@link PatchContext}.
15  *
16  * @deprecated move to splitted module restconf-nb-rfc8040
17  * @author Robert Varga
18  */
19 @Deprecated
20 abstract class AbstractToPatchBodyReader extends AbstractIdentifierAwareJaxRsProvider<PatchContext> {
21
22     @Override
23     protected final PatchContext emptyBody(final InstanceIdentifierContext<?> path) {
24         return new PatchContext(path, null, null);
25     }
26 }