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 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