Split Restconf implementations (draft02 and RFC) - move restconf
[netconf.git] / restconf / restconf-common / src / main / java / org / opendaylight / restconf / common / patch / PatchEntity.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
9 package org.opendaylight.restconf.common.patch;
10
11 import com.google.common.base.Preconditions;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
13 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
14
15 public class PatchEntity {
16
17     private final PatchEditOperation operation;
18     private final String editId;
19     private final YangInstanceIdentifier targetNode;
20     private final NormalizedNode<?,?> node;
21
22     /**
23      * Constructor to create PatchEntity for Patch operations which require value leaf representing data to be present.
24      * @param editId Id of Patch edit
25      * @param operation Patch edit operation
26      * @param targetNode Target node for Patch edit operation
27      * @param node Data defined by value leaf used by edit operation
28      */
29     public PatchEntity(final String editId, final PatchEditOperation operation, final YangInstanceIdentifier targetNode,
30                        final NormalizedNode<?, ?> node) {
31         this.editId = Preconditions.checkNotNull(editId);
32         this.operation = Preconditions.checkNotNull(operation);
33         this.targetNode = Preconditions.checkNotNull(targetNode);
34         this.node = Preconditions.checkNotNull(node);
35     }
36
37     /**
38      * Constructor to create PatchEntity for Patch operations which do not allow value leaf representing data to be
39      * present. <code>node</code> is set to <code>null</code> meaning that data are not allowed for edit operation.
40      * @param editId Id of Patch edit
41      * @param operation Patch edit operation
42      * @param targetNode Target node for Patch edit operation
43      */
44     public PatchEntity(final String editId, final PatchEditOperation operation,
45             final YangInstanceIdentifier targetNode) {
46         this.editId = Preconditions.checkNotNull(editId);
47         this.operation = Preconditions.checkNotNull(operation);
48         this.targetNode = Preconditions.checkNotNull(targetNode);
49         this.node = null;
50     }
51
52     public PatchEditOperation getOperation() {
53         return operation;
54     }
55
56     public String getEditId() {
57         return editId;
58     }
59
60     public YangInstanceIdentifier getTargetNode() {
61         return targetNode;
62     }
63
64     public NormalizedNode<?, ?> getNode() {
65         return node;
66     }
67
68 }