Interface ConfigurationProperty

All Known Subinterfaces:
ConfigurationPropertyEntity
All Known Implementing Classes:
ConfigurationPropertyEntityImpl

public interface ConfigurationProperty
Author:
Filip Hrisafov
  • Method Details

    • getId

      String getId()
      The technical id of the property.
    • getNamespace

      String getNamespace()
      The namespace of the property.
    • getName

      String getName()
      The name of the property
    • getDescription

      String getDescription()
      The description for the property
    • getTenantId

      String getTenantId()
      The tenant for the property.
    • getLastUpdaterId

      String getLastUpdaterId()
    • getLastUpdateTime

      Date getLastUpdateTime()
    • getTextValue

      String getTextValue()
    • getIntValue

      default Integer getIntValue()
    • getLongValue

      default Long getLongValue()
    • getBooleanValue

      default Boolean getBooleanValue()
    • mapValue

      default <V> V mapValue(Function<String,V> valueMapper)