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

com.laserfiche.api.client.httphandlers.HeaderKeyValue Maven / Gradle / Ivy

Go to download

Java implementation of various foundational APIs for Laserfiche, including authorization APIs such as OAuth 2.0 flows for secure and easy access to Laserfiche APIs.

The newest version!
// Copyright (c) Laserfiche.
// Licensed under the MIT License. See LICENSE in the project root for license information.
package com.laserfiche.api.client.httphandlers;

/**
 * Represents an HTTP header.
 */
public interface HeaderKeyValue {
    /**
     * Returns the name of the HTTP header.
     */
    String headerName();

    /**
     * Returns the value of the HTTP header.
     */
    String header();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy