Interface ExtensionSetExpansionPathsAction

All Superinterfaces:
ExtensionUpdateAction, ResourceUpdateAction<ExtensionUpdateAction>

public interface ExtensionSetExpansionPathsAction extends ExtensionUpdateAction
ExtensionSetExpansionPathsAction
Example to create an instance using the builder pattern

     ExtensionSetExpansionPathsAction extensionSetExpansionPathsAction = ExtensionSetExpansionPathsAction.builder()
             .plusExpansionPaths(expansionPathsBuilder -> expansionPathsBuilder)
             .build()
 
  • Field Details

    • SET_EXPANSION_PATHS

      static final String SET_EXPANSION_PATHS
      discriminator value for ExtensionSetExpansionPathsAction
      See Also:
  • Method Details

    • getExpansionPaths

      @NotNull @NotNull List<String> getExpansionPaths()

      Expansion paths used for reference expansion of the payload.

      Be aware of the limits of this feature and its performance impact.

      Returns:
      expansionPaths
    • setExpansionPaths

      void setExpansionPaths(String... expansionPaths)

      Expansion paths used for reference expansion of the payload.

      Be aware of the limits of this feature and its performance impact.

      Parameters:
      expansionPaths - values to be set
    • setExpansionPaths

      void setExpansionPaths(List<String> expansionPaths)

      Expansion paths used for reference expansion of the payload.

      Be aware of the limits of this feature and its performance impact.

      Parameters:
      expansionPaths - values to be set
    • of

      factory method
      Returns:
      instance of ExtensionSetExpansionPathsAction
    • of

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

      Specified by:
      copyDeep in interface ExtensionUpdateAction
    • deepCopy

      @Nullable static ExtensionSetExpansionPathsAction deepCopy(@Nullable ExtensionSetExpansionPathsAction template)
      factory method to create a deep copy of ExtensionSetExpansionPathsAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for ExtensionSetExpansionPathsAction
      Returns:
      builder
    • builder

      create builder for ExtensionSetExpansionPathsAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withExtensionSetExpansionPathsAction

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