Record Class AccessCertificationCaseId
java.lang.Object
java.lang.Record
com.evolveum.midpoint.schema.util.AccessCertificationCaseId
- All Implemented Interfaces:
- Serializable
public record AccessCertificationCaseId(@NotNull String campaignOid, long caseId)
extends Record
implements Serializable
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionAccessCertificationCaseId(@NotNull String campaignOid, long caseId) Creates an instance of aAccessCertificationCaseIdrecord class.
- 
Method SummaryModifier and TypeMethodDescription@NotNull ItemPath@NotNull StringReturns the value of thecampaignOidrecord component.longcaseId()Returns the value of thecaseIdrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static AccessCertificationCaseIdof(@NotNull AccessCertificationCaseType aCase) static Set<AccessCertificationCaseId>of(@NotNull Collection<AccessCertificationCaseType> cases) queryFor()toString()Returns a string representation of this record class.
- 
Constructor Details- 
AccessCertificationCaseIdCreates an instance of aAccessCertificationCaseIdrecord class.- Parameters:
- campaignOid- the value for the- campaignOidrecord component
- caseId- the value for the- caseIdrecord component
 
 
- 
- 
Method Details- 
of
- 
ofpublic static Set<AccessCertificationCaseId> of(@NotNull @NotNull Collection<AccessCertificationCaseType> cases) 
- 
toStringReturns 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.
- 
asItemPath
- 
queryFor
- 
hashCodepublic 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.
- 
equalsIndicates 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
campaignOidReturns the value of thecampaignOidrecord component.- Returns:
- the value of the campaignOidrecord component
 
- 
caseIdpublic long caseId()Returns the value of thecaseIdrecord component.- Returns:
- the value of the caseIdrecord component
 
 
-