Merge "ArpHandler to ignore ip packet sent to default GW"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / restconf / impl / InstanceIdWithSchemaNode.java
1 package org.opendaylight.controller.sal.restconf.impl;
2
3 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
4 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
5
6 public class InstanceIdWithSchemaNode {
7
8     private final InstanceIdentifier instanceIdentifier;
9     private final DataSchemaNode schemaNode;
10     private final InstanceIdentifier mountPoint;
11
12     public InstanceIdWithSchemaNode(InstanceIdentifier instanceIdentifier, DataSchemaNode schemaNode, InstanceIdentifier mountPoint) {
13         this.instanceIdentifier = instanceIdentifier;
14         this.schemaNode = schemaNode;
15         this.mountPoint = mountPoint;
16     }
17
18     public InstanceIdentifier getInstanceIdentifier() {
19         return instanceIdentifier;
20     }
21
22     public DataSchemaNode getSchemaNode() {
23         return schemaNode;
24     }
25
26     public InstanceIdentifier getMountPoint() {
27         return mountPoint;
28     }
29
30 }