Class CardConfig

java.lang.Object
de.bytestore.hostinger.entity.CardConfig

@Entity(name="host_CardConfig") public class CardConfig extends Object
Represents the configuration data for a card entity in the system. This class is a Jmix entity tied to the "HOST_CARD_CONFIG" database table. It is used to store key-value pairs associated with a specific card configuration. Annotations: - @JmixEntity: Indicates that this is a Jmix entity. - @InstanceName: Specifies the property to use as the instance name in the UI. - @Table: Maps the entity to the "HOST_CARD_CONFIG" table with its defined columns. - @Entity: Marks it as a JPA-managed entity. Fields: - id: The unique identifier for the card configuration. - key: The configuration key. - card: The name or identifier of the card this configuration is associated with. - value: The configuration value. Methods: - Getters and setters for the id, key, card, and value fields to manipulate and retrieve the entity's data.
  • Constructor Details

    • CardConfig

      public CardConfig()
  • Method Details

    • getCard

      public String getCard()
    • setCard

      public void setCard(String card)
    • getKey

      public String getKey()
    • setKey

      public void setKey(String key)
    • getValue

      public String getValue()
    • setValue

      public void setValue(String value)
    • setId

      public void setId(UUID id)
    • getId

      public UUID getId()