Class SchemaDTO

java.lang.Object
org.apache.gravitino.dto.SchemaDTO
All Implemented Interfaces:
Auditable, Schema

public class SchemaDTO extends Object implements Schema
Represents a Schema DTO (Data Transfer Object).
  • Method Details

    • name

      public String name()
      Specified by:
      name in interface Schema
      Returns:
      The name of the schema.
    • comment

      public String comment()
      Specified by:
      comment in interface Schema
      Returns:
      The comment associated with the schema.
    • properties

      public Map<String,String> properties()
      Specified by:
      properties in interface Schema
      Returns:
      The properties associated with the schema.
    • auditInfo

      public AuditDTO auditInfo()
      Specified by:
      auditInfo in interface Auditable
      Returns:
      The audit information for the schema.
    • builder

      public static SchemaDTO.Builder builder()
      Returns:
      the builder for creating a new instance of SchemaDTO.