Interface ImportOperationRejectedEventData
public interface ImportOperationRejectedEventData
The data
of the Import Operation Rejected Event.
Example to create an instance using the builder pattern
ImportOperationRejectedEventData importOperationRejectedEventData = ImportOperationRejectedEventData.builder()
.id("{id}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ImportOperationRejectedEventDatabuilder
(ImportOperationRejectedEventData template) create builder for ImportOperationRejectedEventData instancecopyDeep()
deepCopy
(ImportOperationRejectedEventData template) factory method to create a deep copy of ImportOperationRejectedEventData@NotNull String
getId()
Theid
of the Import Operation with therejected
state.of()
factory methodof
(ImportOperationRejectedEventData template) factory method to create a shallow copy ImportOperationRejectedEventDatavoid
Theid
of the Import Operation with therejected
state.static com.fasterxml.jackson.core.type.TypeReference<ImportOperationRejectedEventData>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getId
The
id
of the Import Operation with therejected
state.- Returns:
- id
-
setId
The
id
of the Import Operation with therejected
state.- Parameters:
id
- value to be set
-
of
factory method- Returns:
- instance of ImportOperationRejectedEventData
-
of
factory method to create a shallow copy ImportOperationRejectedEventData- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
copyDeep
ImportOperationRejectedEventData copyDeep() -
deepCopy
@Nullable static ImportOperationRejectedEventData deepCopy(@Nullable ImportOperationRejectedEventData template) factory method to create a deep copy of ImportOperationRejectedEventData- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ImportOperationRejectedEventData- Returns:
- builder
-
builder
create builder for ImportOperationRejectedEventData instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withImportOperationRejectedEventData
default <T> T withImportOperationRejectedEventData(Function<ImportOperationRejectedEventData, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<ImportOperationRejectedEventData> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-