Interface CategoryResourceIdentifier

All Superinterfaces:
Identifiable<Category>, ResourceIdentifier, WithKey

public interface CategoryResourceIdentifier extends ResourceIdentifier, Identifiable<Category>

ResourceIdentifier to a Category. Either id or key is required. If both are set, an InvalidJsonInput error is returned.


Example to create an instance using the builder pattern

     CategoryResourceIdentifier categoryResourceIdentifier = CategoryResourceIdentifier.builder()
             .build()
 
  • Field Details

  • Method Details

    • getId

      String getId()

      Unique identifier of the referenced Category. Required if key is absent.

      Specified by:
      getId in interface Identifiable<Category>
      Specified by:
      getId in interface ResourceIdentifier
      Returns:
      id
    • getKey

      String getKey()

      User-defined unique identifier of the referenced Category. Required if id is absent.

      Specified by:
      getKey in interface ResourceIdentifier
      Specified by:
      getKey in interface WithKey
      Returns:
      key
    • setId

      void setId(String id)

      Unique identifier of the referenced Category. Required if key is absent.

      Specified by:
      setId in interface ResourceIdentifier
      Parameters:
      id - value to be set
    • setKey

      void setKey(String key)

      User-defined unique identifier of the referenced Category. Required if id is absent.

      Specified by:
      setKey in interface ResourceIdentifier
      Parameters:
      key - value to be set
    • of

      factory method
      Returns:
      instance of CategoryResourceIdentifier
    • of

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

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

      builder factory method for CategoryResourceIdentifier
      Returns:
      builder
    • builder

      create builder for CategoryResourceIdentifier instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withCategoryResourceIdentifier

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