Record Class GuiProfiledPrincipal.LoginGuiProfileInputs
java.lang.Object
java.lang.Record
com.evolveum.midpoint.model.api.authentication.GuiProfiledPrincipal.LoginGuiProfileInputs
- All Implemented Interfaces:
Serializable
- Enclosing class:
- GuiProfiledPrincipal
public static record GuiProfiledPrincipal.LoginGuiProfileInputs(List<AdminGuiConfigurationType> adminGuiConfigurations, Set<String> profileDependencies)
extends Record
implements Serializable
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLoginGuiProfileInputs(@NotNull List<AdminGuiConfigurationType> adminGuiConfigurations, @NotNull Set<String> profileDependencies) Creates an instance of aLoginGuiProfileInputsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theadminGuiConfigurationsrecord 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 theprofileDependenciesrecord component.@NotNull StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LoginGuiProfileInputs
public LoginGuiProfileInputs(@NotNull @NotNull List<AdminGuiConfigurationType> adminGuiConfigurations, @NotNull @NotNull Set<String> profileDependencies) Creates an instance of aLoginGuiProfileInputsrecord class.- Parameters:
adminGuiConfigurations- the value for theadminGuiConfigurationsrecord componentprofileDependencies- the value for theprofileDependenciesrecord 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). -
adminGuiConfigurations
Returns the value of theadminGuiConfigurationsrecord component.- Returns:
- the value of the
adminGuiConfigurationsrecord component
-
profileDependencies
Returns the value of theprofileDependenciesrecord component.- Returns:
- the value of the
profileDependenciesrecord component
-