Implementation:Treeverse LakeFS Java SDK Model ErrorNoACL
Appearance
| 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
- Repository: Treeverse_LakeFS
- File: clients/java/src/main/java/io/lakefs/clients/sdk/model/ErrorNoACL.java
- Lines: 1-320
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