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 StringgetId()Theidof the Import Operation with therejectedstate.of()factory methodof(ImportOperationRejectedEventData template) factory method to create a shallow copy ImportOperationRejectedEventDatavoidTheidof the Import Operation with therejectedstate.static com.fasterxml.jackson.core.type.TypeReference<ImportOperationRejectedEventData>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map function
-
Method Details
-
getId
The
idof the Import Operation with therejectedstate.- Returns:
- id
-
setId
The
idof the Import Operation with therejectedstate.- 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
-