Interface ProductType

All Superinterfaces:
AttributeDefinitionContainer, BaseResource, DomainResource<ProductType>, Identifiable<ProductType>, ProductTypeMixin, Referencable<ProductType>, ResourceIdentifiable<ProductType>, Versioned<ProductType>, WithKey

ProductType
Example to create an instance using the builder pattern

     ProductType productType = ProductType.builder()
             .id("{id}")
             .version(0.3)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .name("{name}")
             .description("{description}")
             .build()
 
  • Method Details

    • getId

      @NotNull @NotNull String getId()

      Unique identifier of the ProductType.

      Specified by:
      getId in interface BaseResource
      Specified by:
      getId in interface DomainResource<ProductType>
      Specified by:
      getId in interface Identifiable<ProductType>
      Specified by:
      getId in interface Versioned<ProductType>
      Returns:
      id
    • getVersion

      @NotNull @NotNull Long getVersion()

      Current version of the ProductType.

      Specified by:
      getVersion in interface BaseResource
      Specified by:
      getVersion in interface DomainResource<ProductType>
      Specified by:
      getVersion in interface Versioned<ProductType>
      Returns:
      version
    • getCreatedAt

      @NotNull @NotNull ZonedDateTime getCreatedAt()

      Date and time (UTC) the ProductType was initially created.

      Specified by:
      getCreatedAt in interface BaseResource
      Returns:
      createdAt
    • getLastModifiedAt

      @NotNull @NotNull ZonedDateTime getLastModifiedAt()

      Date and time (UTC) the ProductType was last updated.

      Specified by:
      getLastModifiedAt in interface BaseResource
      Returns:
      lastModifiedAt
    • getLastModifiedBy

      @Valid @Valid LastModifiedBy getLastModifiedBy()

      IDs and references that last modified the ProductType.

      Returns:
      lastModifiedBy
    • getCreatedBy

      @Valid @Valid CreatedBy getCreatedBy()

      IDs and references that created the ProductType.

      Returns:
      createdBy
    • getKey

      String getKey()

      User-defined unique identifier of the ProductType.

      Specified by:
      getKey in interface WithKey
      Returns:
      key
    • getName

      @NotNull @NotNull String getName()

      Name of the ProductType.

      Returns:
      name
    • getDescription

      @NotNull @NotNull String getDescription()

      Description of the ProductType.

      Returns:
      description
    • getAttributes

      @Valid @Valid List<AttributeDefinition> getAttributes()

      Attributes specified for the ProductType.

      Specified by:
      getAttributes in interface AttributeDefinitionContainer
      Returns:
      attributes
    • setId

      void setId(String id)

      Unique identifier of the ProductType.

      Specified by:
      setId in interface BaseResource
      Parameters:
      id - value to be set
    • setVersion

      void setVersion(Long version)

      Current version of the ProductType.

      Specified by:
      setVersion in interface BaseResource
      Parameters:
      version - value to be set
    • setCreatedAt

      void setCreatedAt(ZonedDateTime createdAt)

      Date and time (UTC) the ProductType was initially created.

      Specified by:
      setCreatedAt in interface BaseResource
      Parameters:
      createdAt - value to be set
    • setLastModifiedAt

      void setLastModifiedAt(ZonedDateTime lastModifiedAt)

      Date and time (UTC) the ProductType was last updated.

      Specified by:
      setLastModifiedAt in interface BaseResource
      Parameters:
      lastModifiedAt - value to be set
    • setLastModifiedBy

      void setLastModifiedBy(LastModifiedBy lastModifiedBy)

      IDs and references that last modified the ProductType.

      Parameters:
      lastModifiedBy - value to be set
    • setCreatedBy

      void setCreatedBy(CreatedBy createdBy)

      IDs and references that created the ProductType.

      Parameters:
      createdBy - value to be set
    • setKey

      void setKey(String key)

      User-defined unique identifier of the ProductType.

      Parameters:
      key - value to be set
    • setName

      void setName(String name)

      Name of the ProductType.

      Parameters:
      name - value to be set
    • setDescription

      void setDescription(String description)

      Description of the ProductType.

      Parameters:
      description - value to be set
    • setAttributes

      void setAttributes(AttributeDefinition... attributes)

      Attributes specified for the ProductType.

      Parameters:
      attributes - values to be set
    • setAttributes

      void setAttributes(List<AttributeDefinition> attributes)

      Attributes specified for the ProductType.

      Parameters:
      attributes - values to be set
    • of

      static ProductType of()
      factory method
      Returns:
      instance of ProductType
    • of

      static ProductType of(ProductType template)
      factory method to create a shallow copy ProductType
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

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

      static ProductTypeBuilder builder()
      builder factory method for ProductType
      Returns:
      builder
    • builder

      static ProductTypeBuilder builder(ProductType template)
      create builder for ProductType instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductType

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

      static ReferenceTypeId referenceTypeId()
    • typeReference

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