Record Class ReconciliationSitesListing
java.lang.Object
java.lang.Record
io.clonecloudstore.reconciliator.model.ReconciliationSitesListing
-
Constructor Summary
ConstructorsConstructorDescriptionReconciliationSitesListing
(String id, String requestId, String bucket, String name, List<SingleSiteObject> local) Creates an instance of aReconciliationSitesListing
record class. -
Method Summary
Modifier and TypeMethodDescriptionbucket()
Returns the value of thebucket
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.local()
Returns the value of thelocal
record component.name()
Returns the value of thename
record component.Returns the value of therequestId
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ReconciliationSitesListing
public ReconciliationSitesListing(String id, String requestId, String bucket, String name, List<SingleSiteObject> local) Creates an instance of aReconciliationSitesListing
record class.- Parameters:
id
- the value for theid
record componentrequestId
- the value for therequestId
record componentbucket
- the value for thebucket
record componentname
- the value for thename
record componentlocal
- the value for thelocal
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
requestId
Returns the value of therequestId
record component.- Returns:
- the value of the
requestId
record component
-
bucket
Returns the value of thebucket
record component.- Returns:
- the value of the
bucket
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
local
Returns the value of thelocal
record component.- Returns:
- the value of the
local
record component
-