Modernize test suite
[netconf.git] / netconf / tools / netconf-testtool / src / main / java / org / opendaylight / netconf / test / tool / model / Payload.java
1 /*
2  * Copyright (c) 2021 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.test.tool.model;
9
10 public class Payload {
11     private Topology topology;
12
13     public Payload() {
14
15     }
16
17     public Payload(final Topology topology) {
18         this.topology = topology;
19     }
20
21     public Topology getTopology() {
22         return topology;
23     }
24
25     public void setTopology(Topology topology) {
26         this.topology = topology;
27     }
28 }