Record Class BulkActionProfile
java.lang.Object
java.lang.Record
com.evolveum.midpoint.schema.expression.BulkActionProfile
- All Implemented Interfaces:
Serializable
public record BulkActionProfile(@NotNull String action, @NotNull AccessDecision decision)
extends Record
implements Serializable
Specifies limitations on the use of a particular bulk action (e.g. assign, unassign, etc).
- See Also:
-
Constructor Summary
ConstructorDescriptionBulkActionProfile
(@NotNull String action, @NotNull AccessDecision decision) Creates an instance of aBulkActionProfile
record class. -
Method Summary
Modifier and TypeMethodDescription@NotNull String
action()
Returns the value of theaction
record component.@NotNull AccessDecision
decision()
Returns the value of thedecision
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.static BulkActionProfile
of
(@NotNull BulkActionProfileType bean) final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
BulkActionProfile
public BulkActionProfile(@NotNull @NotNull String action, @NotNull @NotNull AccessDecision decision) Creates an instance of aBulkActionProfile
record class.- Parameters:
action
- the value for theaction
record componentdecision
- the value for thedecision
record component
-
-
Method Details
-
of
public static BulkActionProfile of(@NotNull @NotNull BulkActionProfileType bean) throws ConfigurationException - Throws:
ConfigurationException
-
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)
. -
action
Returns the value of theaction
record component.- Returns:
- the value of the
action
record component
-
decision
Returns the value of thedecision
record component.- Returns:
- the value of the
decision
record component
-