Interface INote


public interface INote
A note
Since:
17.05.2006
API:
This is a public API.
  • Method Details

    • getWritter

      IUser getWritter()
      Gets the user who wrote the note. The method may return null if the user was deleted since the note was written. Use method getWritterName() to evaluate the name of the writter even if the user was deleted.
      Returns:
      writer or null
      Throws:
      PersistencyException - if persistency access fails
      API:
      This public API is available in Java.
    • getWritterName

      String getWritterName()
      Gets the name of the user who wrote the node. Method never returns null even if the user who wrote the note was deleted.
      Returns:
      name of the writter
      Throws:
      PersistencyException - if persistency access fails
      API:
      This public API is available in Java.
    • getCreationTimestamp

      Date getCreationTimestamp()
      Gets the creation timestamp
      Returns:
      creation timestamp
      Throws:
      PersistencyException - if persistency access fails
      API:
      This public API is available in Java.
    • getMessage

      String getMessage()
      Gets the message of the note
      Returns:
      message
      Throws:
      PersistencyException - if persistency access fails
      API:
      This public API is available in Java.
    • getId

      long getId()
      Gets the identifier of the note
      Returns:
      identifier
      API:
      This public API is available in Java.