Class ModuleConfig

java.lang.Object
de.bytestore.hostinger.modules.entity.module.ModuleConfig

@Entity(name="host_ModulesStorage") public class ModuleConfig extends Object
Represents the configuration of a module within the system. This class is used to store and manage key-value pairs related to a module's configuration. Each configuration entry is identified by a unique ID and includes metadata for auditing purposes, such as information about the creator and the last modifier. Fields: - id: Unique identifier of the configuration entry. - key: The key identifying a particular configuration setting. - value: The value associated with the key. This field supports large text due to its use of the LOB annotation. - lastModifiedBy: Username of the user who last modified the configuration entry. - lastModifiedDate: Timestamp indicating the last modification date of the entry. - createdBy: Username of the user who created the configuration entry. - createdDate: Timestamp indicating the creation date of the entry.
  • Constructor Details

    • ModuleConfig

      public ModuleConfig()