Interface InheritedAssociate
public interface InheritedAssociate
InheritedAssociate
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
InheritedAssociate inheritedAssociate = InheritedAssociate.builder()
.plusAssociateRoleAssignments(associateRoleAssignmentsBuilder -> associateRoleAssignmentsBuilder)
.customer(customerBuilder -> customerBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic InheritedAssociateBuilderbuilder()builder factory method for InheritedAssociatestatic InheritedAssociateBuilderbuilder(InheritedAssociate template) create builder for InheritedAssociate instancecopyDeep()static InheritedAssociatedeepCopy(InheritedAssociate template) factory method to create a deep copy of InheritedAssociate@NotNull @Valid List<InheritedAssociateRoleAssignment>@NotNull @Valid Referencestatic InheritedAssociateof()factory methodstatic InheritedAssociateof(InheritedAssociate template) factory method to create a shallow copy InheritedAssociatevoidsetAssociateRoleAssignments(InheritedAssociateRoleAssignment... associateRoleAssignments) set associateRoleAssignmentsvoidsetAssociateRoleAssignments(List<InheritedAssociateRoleAssignment> associateRoleAssignments) set associateRoleAssignmentsvoidsetCustomer(Reference customer) set customerstatic com.fasterxml.jackson.core.type.TypeReference<InheritedAssociate>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithInheritedAssociate(Function<InheritedAssociate, T> helper) accessor map function
-
Method Details
-
getAssociateRoleAssignments
@NotNull @Valid @NotNull @Valid List<InheritedAssociateRoleAssignment> getAssociateRoleAssignments()- Returns:
- associateRoleAssignments
-
getCustomer
- Returns:
- customer
-
setAssociateRoleAssignments
set associateRoleAssignments- Parameters:
associateRoleAssignments- values to be set
-
setAssociateRoleAssignments
set associateRoleAssignments- Parameters:
associateRoleAssignments- values to be set
-
setCustomer
set customer- Parameters:
customer- value to be set
-
of
factory method- Returns:
- instance of InheritedAssociate
-
of
factory method to create a shallow copy InheritedAssociate- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
InheritedAssociate copyDeep() -
deepCopy
factory method to create a deep copy of InheritedAssociate- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for InheritedAssociate- Returns:
- builder
-
builder
create builder for InheritedAssociate instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withInheritedAssociate
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-