Interface ChannelChangeKeyAction

All Superinterfaces:
ChannelUpdateAction, ResourceUpdateAction<ChannelUpdateAction>

public interface ChannelChangeKeyAction extends ChannelUpdateAction
ChannelChangeKeyAction
Example to create an instance using the builder pattern

     ChannelChangeKeyAction channelChangeKeyAction = ChannelChangeKeyAction.builder()
             .key("{key}")
             .build()
 
  • Field Details

  • Method Details

    • getKey

      @NotNull @NotNull String getKey()

      New value to set. Must not be empty.

      Returns:
      key
    • setKey

      void setKey(String key)

      New value to set. Must not be empty.

      Parameters:
      key - value to be set
    • of

      factory method
      Returns:
      instance of ChannelChangeKeyAction
    • of

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

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

      builder factory method for ChannelChangeKeyAction
      Returns:
      builder
    • builder

      create builder for ChannelChangeKeyAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withChannelChangeKeyAction

      default <T> T withChannelChangeKeyAction(Function<ChannelChangeKeyAction,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<ChannelChangeKeyAction> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference