com.laserfiche.api.client.httphandlers.HeaderKeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lf-api-client-core Show documentation
Show all versions of lf-api-client-core Show documentation
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