Interface TextModuleNode

All Superinterfaces:
Comparable<com.novomind.ecom.common.api.persistence.Entity>, com.novomind.ecom.common.api.persistence.Entity, com.novomind.ecom.common.api.attribute.Named, com.novomind.ecom.common.api.persistence.WithId
All Known Subinterfaces:
TextModule, TextModuleFirstLevelGroup, TextModuleGroup, TextModuleSecondLevelGroup

public interface TextModuleNode extends com.novomind.ecom.common.api.attribute.Named, com.novomind.ecom.common.api.persistence.Entity
Represents a TextModule node object.
Since:
10.0.206
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the date this textmodule node was created.
    Returns the optional user who created this textmodule node.
    Returns the external id of this textmodule node or null.
    Returns the date this textmodule node was last changed.
    Returns the optional last user who changed this textmodule node.

    Methods inherited from interface com.novomind.ecom.common.api.persistence.Entity

    compareTo, isDeleted, isNotDeleted

    Methods inherited from interface com.novomind.ecom.common.api.attribute.Named

    getName

    Methods inherited from interface com.novomind.ecom.common.api.persistence.WithId

    getId
  • Method Details

    • getCreatedDate

      Date getCreatedDate()
      Returns the date this textmodule node was created.
      Returns:
      the date this textmodule node was created
      Since:
      10.0.206
    • getLastChangedDate

      Date getLastChangedDate()
      Returns the date this textmodule node was last changed.
      Returns:
      the date this textmodule node was last changed
      Since:
      10.0.206
    • getCreatedUser

      Optional<User> getCreatedUser()
      Returns the optional user who created this textmodule node.
      Returns:
      the optional user who created this textmodule node
      Since:
      10.0.206
    • getLastChangedUser

      Optional<User> getLastChangedUser()
      Returns the optional last user who changed this textmodule node.
      Returns:
      the optional last user who changed this textmodule node
      Since:
      10.0.206
    • getExternalId

      String getExternalId()
      Returns the external id of this textmodule node or null.

      The external id may be used to associate the textmodule node with external data. It is not used by the novomind iAGENT system internally.

      Returns:
      the external id as string, or null if not set
      Since:
      13.14