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

io.apimatic.coreinterfaces.http.HeaderLoggingPolicyLevel Maven / Gradle / Ivy

Go to download

An abstract layer of the functionalities provided by apimatic-core-library, okhttp-client-adapter and APIMatic SDKs.

There is a newer version: 0.3.1
Show newest version
package io.apimatic.coreinterfaces.http;


/**
 * HeaderLoggingPolicy enum to use with headerLoggingPolicy It is either used to exclude or include
 * headers provided in header filters, for various security reasons.
 */
public enum HeaderLoggingPolicyLevel implements LoggingPolicy {
    /**
     * Policy that only include the headerFilters as headers. So all the headers that are not
     * provided in header filters will be excluded.
     */
    INCLUDE,

    /**
     * Policy that only exclude the headerFilters from headers. So all the headers that are not
     * provided in header filters will be included.
     */
    EXCLUDE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy