Interface StateSetDescriptionAction

All Superinterfaces:
ResourceUpdateAction<StateUpdateAction>, StateUpdateAction

public interface StateSetDescriptionAction extends StateUpdateAction
StateSetDescriptionAction
Example to create an instance using the builder pattern

     StateSetDescriptionAction stateSetDescriptionAction = StateSetDescriptionAction.builder()
             .description(descriptionBuilder -> descriptionBuilder)
             .build()
 
  • Field Details

    • SET_DESCRIPTION

      static final String SET_DESCRIPTION
      discriminator value for StateSetDescriptionAction
      See Also:
  • Method Details

    • getDescription

      @NotNull @Valid @NotNull @Valid LocalizedString getDescription()

      Value to set. If empty, any existing value will be removed.

      Returns:
      description
    • setDescription

      void setDescription(LocalizedString description)

      Value to set. If empty, any existing value will be removed.

      Parameters:
      description - value to be set
    • of

      factory method
      Returns:
      instance of StateSetDescriptionAction
    • of

      factory method to create a shallow copy StateSetDescriptionAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of StateSetDescriptionAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for StateSetDescriptionAction
      Returns:
      builder
    • builder

      create builder for StateSetDescriptionAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withStateSetDescriptionAction

      default <T> T withStateSetDescriptionAction(Function<StateSetDescriptionAction,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<StateSetDescriptionAction> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference