All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.autores.handling.CfgVisibility Maven / Gradle / Ivy

There is a newer version: 11.0.35-beta
Show newest version
// Copyright 2023 https://github.com/autores-uk/autores/blob/main/LICENSE.txt
// SPDX-License-Identifier: Apache-2.0
package uk.autores.handling;

/** "visibility": set to "public" to generate public instead of package visible artefacts. */
public final class CfgVisibility {

    /** Key */
    public static final String VISIBILITY = "visibility";

    /** Value */
    public static final String PUBLIC = "public";

    /**
     * Config definition.
     * @see ConfigDef
     * @see ResourceFiles#config()
     */
    public static final ConfigDef DEF= new ConfigDef(VISIBILITY, PUBLIC::equals);

    private CfgVisibility() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy