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

org.owasp.esapi.configuration.consts.EsapiConfigurationType Maven / Gradle / Ivy

package org.owasp.esapi.configuration.consts;


/**
 * Supported esapi configuration file types.
 *
 * @since 2.2
 */
public enum EsapiConfigurationType {
    PROPERTIES("properties"), XML("xml");

    String typeName;

    EsapiConfigurationType(String typeName) {
        this.typeName = typeName;
    }

    public String getTypeName() {
        return typeName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy