Interface ImportUnresolvedEventData
public interface ImportUnresolvedEventData
The data of the Import Unresolved Event.
Example to create an instance using the builder pattern
ImportUnresolvedEventData importUnresolvedEventData = ImportUnresolvedEventData.builder()
.id("{id}")
.version(1)
.importContainerKey("{importContainerKey}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ImportUnresolvedEventDatabuilder(ImportUnresolvedEventData template) create builder for ImportUnresolvedEventData instancecopyDeep()static ImportUnresolvedEventDatadeepCopy(ImportUnresolvedEventData template) factory method to create a deep copy of ImportUnresolvedEventData@NotNull StringgetId()Theidof the Import Operation with theunresolvedstate.@NotNull StringThekeyof the Import Container.@NotNull IntegerTheversionof the Import Operation with theunresolvedstate.static ImportUnresolvedEventDataof()factory methodstatic ImportUnresolvedEventDataof(ImportUnresolvedEventData template) factory method to create a shallow copy ImportUnresolvedEventDatavoidTheidof the Import Operation with theunresolvedstate.voidsetImportContainerKey(String importContainerKey) Thekeyof the Import Container.voidsetVersion(Integer version) Theversionof the Import Operation with theunresolvedstate.static com.fasterxml.jackson.core.type.TypeReference<ImportUnresolvedEventData>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map function
-
Method Details
-
getId
The
idof the Import Operation with theunresolvedstate.- Returns:
- id
-
getVersion
The
versionof the Import Operation with theunresolvedstate.- Returns:
- version
-
getImportContainerKey
The
keyof the Import Container.- Returns:
- importContainerKey
-
setId
The
idof the Import Operation with theunresolvedstate.- Parameters:
id- value to be set
-
setVersion
The
versionof the Import Operation with theunresolvedstate.- Parameters:
version- value to be set
-
setImportContainerKey
The
keyof the Import Container.- Parameters:
importContainerKey- value to be set
-
of
factory method- Returns:
- instance of ImportUnresolvedEventData
-
of
factory method to create a shallow copy ImportUnresolvedEventData- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ImportUnresolvedEventData copyDeep() -
deepCopy
factory method to create a deep copy of ImportUnresolvedEventData- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ImportUnresolvedEventData- Returns:
- builder
-
builder
create builder for ImportUnresolvedEventData instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withImportUnresolvedEventData
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
-