Interface IConfigurationAction


public interface IConfigurationAction
Configuration Action interface. Configuration Actions are called by configurations when processing configuration fields, and, for a determined type, provide getters and setters for the underlying storage mechanism, abstracting away storage concerns from the core logic.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(Field field)
    Returns, for a provided field, the value stored by the configuration action's storage mechanism.
    Class<?>[]
    Returns an array of classes (types) that this configuration action can handle.
    void
    set(Field field, Object value)
    Sets a provided field's value to the configuration action's storage mechanism.
    void
    setDefault(Field field, Object value)
    Sets a provided field's default value to the configuration action's storage mechanism.
  • Method Details

    • getTypes

      Class<?>[] getTypes()
      Returns an array of classes (types) that this configuration action can handle.
      Returns:
      Supported types
    • get

      Object get(Field field)
      Returns, for a provided field, the value stored by the configuration action's storage mechanism.
      Parameters:
      field - Requested field
      Returns:
      Field's stored value
    • set

      void set(Field field, Object value)
      Sets a provided field's value to the configuration action's storage mechanism.
      Parameters:
      field - Requested field
      value - Field's value to store
    • setDefault

      void setDefault(Field field, Object value)
      Sets a provided field's default value to the configuration action's storage mechanism.
      Parameters:
      field - Requested field
      value - Field's default value to store