b6edb264e128b269c17cf8ed20509ba3236cb59b
[netconf.git] / apps / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / messages / netconf / CreateEditConfigRequest.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 org.opendaylight.mdsal.common.api.LogicalDatastoreType;
11 import org.opendaylight.netconf.api.EffectiveOperation;
12 import org.opendaylight.netconf.topology.singleton.messages.NormalizedNodeMessage;
13
14 public class CreateEditConfigRequest extends EditConfigRequest {
15     private static final long serialVersionUID = 1L;
16
17     public CreateEditConfigRequest(LogicalDatastoreType store, NormalizedNodeMessage data,
18                                    EffectiveOperation defaultOperation) {
19         super(store, data, defaultOperation);
20     }
21 }