Interface INote


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

      • getWritter

        IUser getWritter()
                  throws PersistencyException
        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 IvyScript and Java. It has the visibility ADVANCED.
      • getWritterName

        String getWritterName()
                       throws PersistencyException
        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 IvyScript and Java. It has the visibility ADVANCED.
      • getCreationTimestamp

        Date getCreationTimestamp()
                           throws PersistencyException
        Gets the creation timestamp
        Returns:
        creation timestamp
        Throws:
        PersistencyException - if persistency access fails
        API:
        This public API is available in IvyScript and Java. It has the visibility ADVANCED.
      • getMessage

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

        long getId()
        Gets the identifier of the note
        Returns:
        identifier
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.