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 ImportUnresolvedEventData
deepCopy
(ImportUnresolvedEventData template) factory method to create a deep copy of ImportUnresolvedEventData@NotNull String
getId()
Theid
of the Import Operation with theunresolved
state.@NotNull String
Thekey
of the Import Container.@NotNull Integer
Theversion
of the Import Operation with theunresolved
state.static ImportUnresolvedEventData
of()
factory methodstatic ImportUnresolvedEventData
of
(ImportUnresolvedEventData template) factory method to create a shallow copy ImportUnresolvedEventDatavoid
Theid
of the Import Operation with theunresolved
state.void
setImportContainerKey
(String importContainerKey) Thekey
of the Import Container.void
setVersion
(Integer version) Theversion
of the Import Operation with theunresolved
state.static com.fasterxml.jackson.core.type.TypeReference<ImportUnresolvedEventData>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getId
The
id
of the Import Operation with theunresolved
state.- Returns:
- id
-
getVersion
The
version
of the Import Operation with theunresolved
state.- Returns:
- version
-
getImportContainerKey
The
key
of the Import Container.- Returns:
- importContainerKey
-
setId
The
id
of the Import Operation with theunresolved
state.- Parameters:
id
- value to be set
-
setVersion
The
version
of the Import Operation with theunresolved
state.- Parameters:
version
- value to be set
-
setImportContainerKey
The
key
of 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
-