Interface IProperty

  • All Known Implementing Classes:
    Property

    public interface IProperty
    Provides storage of property values for use by applications that wish to persistently store their configuration settings and other property data in the server.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Date getModified()
      Gets the modified date.
      java.lang.String getModifiedBy()
      Gets the modified by user.
      java.lang.String getName()
      Gets the name of the property.
      java.lang.String getSequence()
      Gets the sequence number of the property.
      long getTime()
      Gets the time in milliseconds.
      java.lang.String getValue()
      Gets the value of the property.
    • Method Detail

      • getName

        java.lang.String getName()
        Gets the name of the property.
        Returns:
        the name
      • getSequence

        java.lang.String getSequence()
        Gets the sequence number of the property.
        Returns:
        the sequence number
      • getValue

        java.lang.String getValue()
        Gets the value of the property.
        Returns:
        the value
      • getTime

        long getTime()
        Gets the time in milliseconds.
        Returns:
        the time in milliseconds
      • getModified

        java.util.Date getModified()
        Gets the modified date.
        Returns:
        the modified date
      • getModifiedBy

        java.lang.String getModifiedBy()
        Gets the modified by user.
        Returns:
        the modified by user