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
ConstructorsModifierConstructorDescriptionprotectedProcessInfo(String fieldName, Class<B> baseFilterClass, F filter) Creates an instance of aProcessInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebaseFilterClassrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thefieldNamerecord component.filter()Returns the value of thefilterrecord component.voidfilterFillDataFrom(Object source) final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ProcessInfo
Creates an instance of aProcessInforecord class.- Parameters:
fieldName- the value for thefieldNamerecord componentbaseFilterClass- the value for thebaseFilterClassrecord componentfilter- the value for thefilterrecord 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 thefieldNamerecord component.- Returns:
- the value of the
fieldNamerecord component
-
baseFilterClass
Returns the value of thebaseFilterClassrecord component.- Returns:
- the value of the
baseFilterClassrecord component
-
filter
Returns the value of thefilterrecord component.- Returns:
- the value of the
filterrecord component
-