Package org.apache.syncope.core.logic
Record Class AbstractTransactionalLogic.ProvisioningInfo
java.lang.Object
java.lang.Record
org.apache.syncope.core.logic.AbstractTransactionalLogic.ProvisioningInfo
- Enclosing class:
AbstractTransactionalLogic<T extends EntityTO>
protected static record AbstractTransactionalLogic.ProvisioningInfo(AnyType anyType, ExternalResource resource, Provision provision)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedProvisioningInfo(AnyType anyType, ExternalResource resource, Provision provision) Creates an instance of aProvisioningInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionanyType()Returns the value of theanyTyperecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theprovisionrecord component.resource()Returns the value of theresourcerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ProvisioningInfo
Creates an instance of aProvisioningInforecord class.- Parameters:
anyType- the value for theanyTyperecord componentresource- the value for theresourcerecord componentprovision- the value for theprovisionrecord 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). -
anyType
Returns the value of theanyTyperecord component.- Returns:
- the value of the
anyTyperecord component
-
resource
Returns the value of theresourcerecord component.- Returns:
- the value of the
resourcerecord component
-
provision
Returns the value of theprovisionrecord component.- Returns:
- the value of the
provisionrecord component
-