Record Class WorkDefinitionFactory.WorkDefinitionInfo
java.lang.Object
java.lang.Record
com.evolveum.midpoint.repo.common.activity.definition.WorkDefinitionFactory.WorkDefinitionInfo
- Enclosing class:
- WorkDefinitionFactory
public static record WorkDefinitionFactory.WorkDefinitionInfo(@NotNull WorkDefinitionBean source, @NotNull QName activityTypeName, @NotNull ConfigurationItemOrigin origin)
extends Record
These parameters will be probably modified in the future, so let's avoid reworking all the constructors,
and centralize the knowledge here.
-
Constructor Summary
ConstructorsConstructorDescriptionWorkDefinitionInfo(@NotNull WorkDefinitionBean source, @NotNull QName activityTypeName, @NotNull ConfigurationItemOrigin origin) Creates an instance of aWorkDefinitionInforecord class. -
Method Summary
Modifier and TypeMethodDescription@NotNull QNameReturns the value of theactivityTypeNamerecord component.final booleanIndicates whether some other object is "equal to" this one.@NotNull AbstractWorkDefinitionTypegetBean()final inthashCode()Returns a hash code value for this object.@NotNull ConfigurationItemOriginorigin()Returns the value of theoriginrecord component.@NotNull WorkDefinitionBeansource()Returns the value of thesourcerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
WorkDefinitionInfo
public WorkDefinitionInfo(@NotNull @NotNull WorkDefinitionBean source, @NotNull @NotNull QName activityTypeName, @NotNull @NotNull ConfigurationItemOrigin origin) Creates an instance of aWorkDefinitionInforecord class.- Parameters:
source- the value for thesourcerecord componentactivityTypeName- the value for theactivityTypeNamerecord componentorigin- the value for theoriginrecord component
-
-
Method Details
-
getBean
-
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). -
source
Returns the value of thesourcerecord component.- Returns:
- the value of the
sourcerecord component
-
activityTypeName
Returns the value of theactivityTypeNamerecord component.- Returns:
- the value of the
activityTypeNamerecord component
-
origin
Returns the value of theoriginrecord component.- Returns:
- the value of the
originrecord component
-