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

io.apimatic.coreinterfaces.authentication.Authentication Maven / Gradle / Ivy

package io.apimatic.coreinterfaces.authentication;

import io.apimatic.coreinterfaces.http.request.Request;

/**
 * To setup methods for authentication
 *
 */
public interface Authentication {

    /**
     * Apply the authentication on the httpRequest
     * 
     * @param httpRequest the request on which authentication is being applied
     * @return the authenticated request
     */
    Request apply(Request httpRequest);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy