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

io.apimatic.coreinterfaces.http.LoggingPolicy 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;

/**
 * Logging policy
 */
public interface LoggingPolicy {
    /**
     * Include Headers in logging
     */
    LoggingPolicy INCLUDE = HeaderLoggingPolicyLevel.INCLUDE;

    /**
     * Exclude Headers in logging
     */
    LoggingPolicy EXCLUDE = HeaderLoggingPolicyLevel.EXCLUDE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy