fc3fdb9cc93a59ad5dee8d2bb51b4a1cd5ebf1b8
[netconf.git] / apps / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / messages / netconf / RemoveEditConfigRequest.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, 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.netconf.topology.singleton.messages.netconf;
9
10 import java.io.Serializable;
11 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
13
14 public class RemoveEditConfigRequest implements Serializable {
15     private static final long serialVersionUID = 1L;
16
17     private final LogicalDatastoreType store;
18     private final YangInstanceIdentifier path;
19
20     public RemoveEditConfigRequest(final LogicalDatastoreType store, final YangInstanceIdentifier path) {
21         this.store = store;
22         this.path = path;
23     }
24
25     public LogicalDatastoreType getStore() {
26         return store;
27     }
28
29     public YangInstanceIdentifier getPath() {
30         return path;
31     }
32 }