Jump to content

Connect SuperML | Leeroopedia MCP: Equip your AI agents with best practices, code verification, and debugging knowledge. Powered by Leeroo — building Organizational Superintelligence. Contact us at founders@leeroo.com.

Implementation:Treeverse LakeFS Java SDK Model ErrorNoACL

From Leeroopedia
Revision as of 16:58, 16 February 2026 by Admin (talk | contribs) (Auto-imported from implementations/Treeverse_LakeFS_Java_SDK_Model_ErrorNoACL.md)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Knowledge Sources
Domains Java_SDK, Data_Model
Last Updated 2026-02-08 00:00 GMT

Overview

Concrete data transfer object representing an error response indicating ACL is not supported in the lakeFS Java SDK.

Description

The ErrorNoACL class is an auto-generated model object produced by OpenAPI Generator from the lakeFS API specification. It provides type-safe access to error fields indicating that ACL operations are not available through getter/setter methods and supports JSON serialization via Gson.

Usage

Use this model when handling error responses where ACL functionality is not configured or available through the lakeFS Java SDK API classes.

Code Reference

Source Location

Signature

public class ErrorNoACL {
    // Fields with @SerializedName annotations
    // Getter/setter methods
    // equals, hashCode, toString
    // JSON type adapter
}

Import

import io.lakefs.clients.sdk.model.ErrorNoACL;

I/O Contract

Inputs

Name Type Required Description
message String Yes Short message explaining the error
noAcl Boolean Yes Flag indicating that ACL is not supported

Outputs

Name Type Description
JSON String Serialized JSON representation

Usage Examples

Creating an Instance

import io.lakefs.clients.sdk.model.ErrorNoACL;

ErrorNoACL obj = new ErrorNoACL();
obj.setMessage("ACL is not supported in this configuration");
obj.setNoAcl(true);

Principle

Related Pages

Page Connections

Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment