Class GetMappingByMappedResourceRequest
- Object
-
- GetMappingByMappedResourceRequest
-
- All Implemented Interfaces:
Serializable
public class GetMappingByMappedResourceRequest extends Object implements Serializable
The criteria for searching the mapping identified by its external system IDs and mapped resource ID.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GetMappingByMappedResourceRequest.Builder
-
Constructor Summary
Constructors Constructor Description GetMappingByMappedResourceRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GetMappingByMappedResourceRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull String
getExternalSystemId()
The ID of the external system that the mapped resource belongs to.@NotNull UUID
getMappedResourceId()
The ID of the mapped resource.int
hashCode()
void
setExternalSystemId(@NotNull String externalSystemId)
The ID of the external system that the mapped resource belongs to.void
setMappedResourceId(@NotNull UUID mappedResourceId)
The ID of the mapped resource.String
toString()
-
-
-
Method Detail
-
builder
public static GetMappingByMappedResourceRequest.Builder builder()
-
getExternalSystemId
@NotNull public @NotNull String getExternalSystemId()
The ID of the external system that the mapped resource belongs to.
-
getMappedResourceId
@NotNull public @NotNull UUID getMappedResourceId()
The ID of the mapped resource.
-
setExternalSystemId
public void setExternalSystemId(@NotNull @NotNull String externalSystemId)
The ID of the external system that the mapped resource belongs to.
-
setMappedResourceId
public void setMappedResourceId(@NotNull @NotNull UUID mappedResourceId)
The ID of the mapped resource.
-
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
-
-