com.laserfiche.api.client.httphandlers.Response 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 response.
*/
public interface Response {
/**
* Status code.
*/
short status();
/**
* The corresponding request object.
*/
Request request();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy