Class LoadTableResponse
- java.lang.Object
-
- org.apache.iceberg.rest.responses.LoadTableResponse
-
- All Implemented Interfaces:
RESTMessage
,RESTResponse
public class LoadTableResponse extends java.lang.Object implements RESTResponse
A REST response that is used when a table is successfully loaded.This class is used whenever the response to a request is a table's requested metadata and the associated location of its metadata, to reduce code duplication. This includes using this class as the response for
CreateTableRequest
, including when that request is used to commit an already staged table creation as part of a transaction.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LoadTableResponse.Builder
-
Constructor Summary
Constructors Constructor Description LoadTableResponse()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LoadTableResponse.Builder
builder()
java.util.Map<java.lang.String,java.lang.String>
config()
java.lang.String
metadataLocation()
TableMetadata
tableMetadata()
java.lang.String
toString()
void
validate()
Ensures that a constructed instance of a REST message is valid according to the REST spec.
-
-
-
Method Detail
-
validate
public void validate()
Description copied from interface:RESTMessage
Ensures that a constructed instance of a REST message is valid according to the REST spec.This is needed when parsing data that comes from external sources and the object might have been constructed without all the required fields present.
- Specified by:
validate
in interfaceRESTMessage
-
metadataLocation
public java.lang.String metadataLocation()
-
tableMetadata
public TableMetadata tableMetadata()
-
config
public java.util.Map<java.lang.String,java.lang.String> config()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
builder
public static LoadTableResponse.Builder builder()
-
-