Class SchemaLogEntryEntity

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String id  
      protected java.util.Date timestamp  
      protected java.lang.String version  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getId()
      A unique identifier of a schema log entry.
      java.lang.Object getPersistentState()
      Returns a representation of the object, as would be stored in the database.
      java.util.Date getTimestamp()
      The creation date of this schema log entry.
      java.lang.String getVersion()
      The schema version.
      void setId​(java.lang.String id)  
      void setTimestamp​(java.util.Date timestamp)  
      void setVersion​(java.lang.String version)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • id

        protected java.lang.String id
      • timestamp

        protected java.util.Date timestamp
      • version

        protected java.lang.String version
    • Constructor Detail

      • SchemaLogEntryEntity

        public SchemaLogEntryEntity()
    • Method Detail

      • getTimestamp

        public java.util.Date getTimestamp()
        Description copied from interface: SchemaLogEntry
        The creation date of this schema log entry.
        Specified by:
        getTimestamp in interface SchemaLogEntry
      • setTimestamp

        public void setTimestamp​(java.util.Date timestamp)
      • setVersion

        public void setVersion​(java.lang.String version)
      • setId

        public void setId​(java.lang.String id)
        Specified by:
        setId in interface DbEntity
      • getPersistentState

        public java.lang.Object getPersistentState()
        Description copied from interface: DbEntity
        Returns a representation of the object, as would be stored in the database. Used when deciding if updates have occurred to the object or not since it was last loaded.
        Specified by:
        getPersistentState in interface DbEntity
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object