aboutsummaryrefslogtreecommitdiffstats
path: root/vid-ext-services-simulator/src/main/java/org/onap/simulator/model/Misc.java
blob: f5750dd785bfccbd81763629baf89c53396f1495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package org.onap.simulator.model;

public class Misc {
    private Integer numberOfTimes;
    private boolean replace = true;

    public Integer getNumberOfTimes() {
        return numberOfTimes;
    }

    public void setNumberOfTimes(Integer numberOfTimes) {
        this.numberOfTimes = numberOfTimes;
    }

    public boolean getReplace() {
        return replace;
    }

    public void setReplace(Boolean replace) {
        this.replace = replace;
    }

    @Override
    public String toString() {
        return "Misc{" +
                "numberOfTimes='" + numberOfTimes + '\'' +
                ", replace='" + replace + '\'' +
                '}';
    }
}