aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/pnfsimulator/src/main/java/org/onap/pnfsimulator/netconfmonitor/netconf/NetconfConfigurationCache.java
blob: 852346db27bc7a177c82bf5394abbdb9416d661d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.onap.pnfsimulator.netconfmonitor.netconf;

public class NetconfConfigurationCache {

    private String configuration = "";

    public String getConfiguration() {
        return configuration;
    }

    public void update(String configuration) {
        this.configuration = configuration;
    }
}