All Known Implementing Classes:
CatalogInfo, FunctionInfo, SchemaInfo, TableInfo, VolumeInfo

public interface ElementBase
Common properties of an element returned from UC.
  • Method Summary

    Modifier and Type
    Method
    Description
    Return a comment describing the element within its name space.
    long
    Return the time that the element was created.
    Return the unique name of the element within its name space.
    long
    Return the time that the element was last updated.
    void
    setComment(String comment)
    Set up a comment describing the element within its name space.
    void
    setCreated_at(long created_at)
    Set up the time that the element was created.
    void
    Set up the unique name of the element within its name space.
    void
    setUpdated_at(long updated_at)
    Set up the time that the element was last updated.
  • Method Details

    • getName

      String getName()
      Return the unique name of the element within its name space.
      Returns:
      string
    • setName

      void setName(String name)
      Set up the unique name of the element within its name space.
      Parameters:
      name - string name
    • getComment

      String getComment()
      Return a comment describing the element within its name space.
      Returns:
      text
    • setComment

      void setComment(String comment)
      Set up a comment describing the element within its name space.
      Parameters:
      comment - text
    • getCreated_at

      long getCreated_at()
      Return the time that the element was created.
      Returns:
      date/time as long
    • setCreated_at

      void setCreated_at(long created_at)
      Set up the time that the element was created.
      Parameters:
      created_at - date/time as long
    • getUpdated_at

      long getUpdated_at()
      Return the time that the element was last updated.
      Returns:
      date/time as long
    • setUpdated_at

      void setUpdated_at(long updated_at)
      Set up the time that the element was last updated.
      Parameters:
      updated_at - date/time as long