aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/tosca/parser/config/Configuration.java
blob: 7135b6b48ccb596d09d6932d96bdf20a45439537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.sdc.tosca.parser.config;

import org.onap.sdc.tosca.parser.api.ConformanceLevel;

public class Configuration {

    private ConformanceLevel conformanceLevel;

    public ConformanceLevel getConformanceLevel() {
        return conformanceLevel;
    }

    public void setConformanceLevel(ConformanceLevel conformanceLevel) {
        this.conformanceLevel = conformanceLevel;
    }
}