Class ChangeMappingRequest
- Object
-
- ChangeMappingRequest
-
- All Implemented Interfaces:
Serializable
public class ChangeMappingRequest extends Object implements Serializable
The properties of the mapping to be changed, for the mapping identified by its ID.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ChangeMappingRequest.Builder
-
Constructor Summary
Constructors Constructor Description ChangeMappingRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChangeMappingRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getDescription()
The description of the mapped resource.String
getExternalEntityId()
The external ID of the mapped resource.String
getExternalEntityUrl()
The external URL of the mapped resource.String
getExternalSystemId()
The ID of the external system that the mapped resource belongs to.@NotNull UUID
getId()
Required. The ID of the mapping to be changed.Long
getLastSyncDate()
The timestamp (in UTC time standard) of the last synchronization of mapped resource.UUID
getMappedResourceId()
The ID of the mapped resource.SyncAction
getSyncAction()
The type of the action performed during last successful synchronization.int
hashCode()
void
setDescription(String description)
The description of the mapped resource.void
setExternalEntityId(String externalEntityId)
The external ID of the mapped resource.void
setExternalEntityUrl(String externalEntityUrl)
The external URL of the mapped resource.void
setExternalSystemId(String externalSystemId)
The ID of the external system that the mapped resource belongs to.void
setId(@NotNull UUID id)
Required. The ID of the mapping to be changed.void
setLastSyncDate(Long lastSyncDate)
The timestamp (in UTC time standard) of the last synchronization of mapped resource.void
setMappedResourceId(UUID mappedResourceId)
The ID of the mapped resource.void
setSyncAction(SyncAction syncAction)
The type of the action performed during last successful synchronization.String
toString()
-
-
-
Method Detail
-
builder
public static ChangeMappingRequest.Builder builder()
-
getId
@NotNull public @NotNull UUID getId()
Required. The ID of the mapping to be changed. Silently ignored if the ID is provided as path parameter of the request.
-
getExternalSystemId
public String getExternalSystemId()
The ID of the external system that the mapped resource belongs to.
-
getExternalEntityId
public String getExternalEntityId()
The external ID of the mapped resource.
-
getExternalEntityUrl
public String getExternalEntityUrl()
The external URL of the mapped resource.
-
getDescription
public String getDescription()
The description of the mapped resource.
-
getMappedResourceId
public UUID getMappedResourceId()
The ID of the mapped resource.
-
getLastSyncDate
public Long getLastSyncDate()
The timestamp (in UTC time standard) of the last synchronization of mapped resource.
-
getSyncAction
public SyncAction getSyncAction()
The type of the action performed during last successful synchronization.
-
setId
public void setId(@NotNull @NotNull UUID id)
Required. The ID of the mapping to be changed. Silently ignored if the ID is provided as path parameter of the request.
-
setExternalSystemId
public void setExternalSystemId(String externalSystemId)
The ID of the external system that the mapped resource belongs to.
-
setExternalEntityId
public void setExternalEntityId(String externalEntityId)
The external ID of the mapped resource.
-
setExternalEntityUrl
public void setExternalEntityUrl(String externalEntityUrl)
The external URL of the mapped resource.
-
setDescription
public void setDescription(String description)
The description of the mapped resource.
-
setMappedResourceId
public void setMappedResourceId(UUID mappedResourceId)
The ID of the mapped resource.
-
setLastSyncDate
public void setLastSyncDate(Long lastSyncDate)
The timestamp (in UTC time standard) of the last synchronization of mapped resource.
-
setSyncAction
public void setSyncAction(SyncAction syncAction)
The type of the action performed during last successful synchronization.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-