Annotate all serialVersionUID with @Serial
[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.Serial;
11 import java.io.Serializable;
12 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
14
15 public class RemoveEditConfigRequest implements Serializable {
16     @Serial
17     private static final long serialVersionUID = 1L;
18
19     private final LogicalDatastoreType store;
20     private final YangInstanceIdentifier path;
21
22     public RemoveEditConfigRequest(final LogicalDatastoreType store, final YangInstanceIdentifier path) {
23         this.store = store;
24         this.path = path;
25     }
26
27     public LogicalDatastoreType getStore() {
28         return store;
29     }
30
31     public YangInstanceIdentifier getPath() {
32         return path;
33     }
34 }