Record Class ExtendableLoginPageAdapter.ProcessInfo<B,F extends GeneratingFilterFillDataFrom<B>>
java.lang.Object
java.lang.Record
software.xdev.spring.security.web.authentication.ui.extendable.ExtendableLoginPageAdapter.ProcessInfo<B,F>
- Enclosing class:
- ExtendableLoginPageAdapter<SELF extends ExtendableLoginPageAdapter<SELF,
SHARED_FILTER, LOGIN_FILTER, LOGOUT_FILTER, H>, SHARED_FILTER extends ExtendableDefaultPageGeneratingFilter, LOGIN_FILTER extends ExtendableDefaultLoginPageGeneratingFilter, LOGOUT_FILTER extends ExtendableDefaultLogoutPageGeneratingFilter, H extends org.springframework.security.config.annotation.web.HttpSecurityBuilder<H>>
protected static record ExtendableLoginPageAdapter.ProcessInfo<B,F extends GeneratingFilterFillDataFrom<B>> (String fieldName, Class<B> baseFilterClass, F extends GeneratingFilterFillDataFrom<B> filter)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
ProcessInfo
(String fieldName, Class<B> baseFilterClass, F filter) Creates an instance of aProcessInfo
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebaseFilterClass
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of thefieldName
record component.filter()
Returns the value of thefilter
record component.void
filterFillDataFrom
(Object source) final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ProcessInfo
Creates an instance of aProcessInfo
record class.- Parameters:
fieldName
- the value for thefieldName
record componentbaseFilterClass
- the value for thebaseFilterClass
record componentfilter
- the value for thefilter
record component
-
-
Method Details
-
filterFillDataFrom
-
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)
. -
fieldName
Returns the value of thefieldName
record component.- Returns:
- the value of the
fieldName
record component
-
baseFilterClass
Returns the value of thebaseFilterClass
record component.- Returns:
- the value of the
baseFilterClass
record component
-
filter
Returns the value of thefilter
record component.- Returns:
- the value of the
filter
record component
-