Package org.aeonbits.owner.KrauseningConfig

Examples of org.aeonbits.owner.KrauseningConfig.KrauseningMergePolicy


      throw new IllegalArgumentException("No @KrauseningSources were defined on " + clazz.getCanonicalName());
    }

    this.krauseningPropertyFileNames = Arrays.asList(krauseningSources.value());

    KrauseningMergePolicy mergePolicy = clazz.getAnnotation(KrauseningMergePolicy.class);
    this.mergePolicyType = mergePolicy != null ? mergePolicy.value()
        : KrauseningMergePolicyType.FAIL_ON_DUPLICATE_PROPERTY_KEY;

    this.ownerPropertySourcesSpecified = clazz.getAnnotation(Sources.class) != null;

    HotReload krauseningHotReload = clazz.getAnnotation(HotReload.class);
View Full Code Here

TOP

Related Classes of org.aeonbits.owner.KrauseningConfig.KrauseningMergePolicy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.