Package callofproject.dev.project.dto
Record Class ProjectParticipantRequestDTO
java.lang.Object
java.lang.Record
callofproject.dev.project.dto.ProjectParticipantRequestDTO
public record ProjectParticipantRequestDTO(UUID userId, UUID projectId, UUID requestId)
extends Record
ProjectParticipantRequestDTO
-
Constructor Summary
ConstructorsConstructorDescriptionProjectParticipantRequestDTO(UUID userId, UUID projectId, UUID requestId) Creates an instance of aProjectParticipantRequestDTOrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theprojectIdrecord component.Returns the value of therequestIdrecord component.final StringtoString()Returns a string representation of this record class.userId()Returns the value of theuserIdrecord component.
-
Constructor Details
-
ProjectParticipantRequestDTO
Creates an instance of aProjectParticipantRequestDTOrecord class.- Parameters:
userId- the value for theuserIdrecord componentprojectId- the value for theprojectIdrecord componentrequestId- the value for therequestIdrecord 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). -
userId
Returns the value of theuserIdrecord component.- Returns:
- the value of the
userIdrecord component
-
projectId
Returns the value of theprojectIdrecord component.- Returns:
- the value of the
projectIdrecord component
-
requestId
Returns the value of therequestIdrecord component.- Returns:
- the value of the
requestIdrecord component
-