Interface Associate
public interface Associate
Associate
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
Associate associate = Associate.builder()
.plusAssociateRoleAssignments(associateRoleAssignmentsBuilder -> associateRoleAssignmentsBuilder)
.customer(customerBuilder -> customerBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic AssociateBuilderbuilder()builder factory method for Associatestatic AssociateBuildercreate builder for Associate instancecopyDeep()static Associatefactory method to create a deep copy of Associate@NotNull @Valid List<AssociateRoleAssignment>@NotNull @Valid Referencestatic Associateof()factory methodstatic Associatefactory method to create a shallow copy AssociatevoidsetAssociateRoleAssignments(AssociateRoleAssignment... associateRoleAssignments) set associateRoleAssignmentsvoidsetAssociateRoleAssignments(List<AssociateRoleAssignment> associateRoleAssignments) set associateRoleAssignmentsvoidsetCustomer(Reference customer) set customerstatic com.fasterxml.jackson.core.type.TypeReference<Associate>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithAssociate(Function<Associate, T> helper) accessor map function
-
Method Details
-
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 Associate
-
of
factory method to create a shallow copy Associate- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
Associate copyDeep() -
deepCopy
factory method to create a deep copy of Associate- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for Associate- Returns:
- builder
-
builder
create builder for Associate instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withAssociate
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
-