summaryrefslogtreecommitdiffstats
path: root/so-cnf-adapter-application/src/main/java/org/onap/so/adapters/cnf/AaiConfiguration.java
blob: 49f95a64d83ec512d94475cab0d4d50692abe5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.onap.so.adapters.cnf;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;

@Configuration
public class AaiConfiguration {

    @Value("${aai.enabled:false}")
    private boolean enabled;

    public boolean isEnabled() {
        return enabled;
    }
}