Record Class AbstractPathMatchingHttpSecurityPolicy.HttpMatcher
java.lang.Object
java.lang.Record
io.quarkus.vertx.http.runtime.security.AbstractPathMatchingHttpSecurityPolicy.HttpMatcher
- Enclosing class:
- AbstractPathMatchingHttpSecurityPolicy
static record AbstractPathMatchingHttpSecurityPolicy.HttpMatcher(String authMechanism, Set<String> methods, HttpSecurityPolicy checker)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionHttpMatcher(String authMechanism, Set<String> methods, HttpSecurityPolicy checker) Creates an instance of aHttpMatcherrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theauthMechanismrecord component.checker()Returns the value of thecheckerrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.methods()Returns the value of themethodsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
HttpMatcher
HttpMatcher(String authMechanism, Set<String> methods, HttpSecurityPolicy checker) Creates an instance of aHttpMatcherrecord class.- Parameters:
authMechanism- the value for theauthMechanismrecord componentmethods- the value for themethodsrecord componentchecker- the value for thecheckerrecord 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). -
authMechanism
Returns the value of theauthMechanismrecord component.- Returns:
- the value of the
authMechanismrecord component
-
methods
Returns the value of themethodsrecord component.- Returns:
- the value of the
methodsrecord component
-
checker
Returns the value of thecheckerrecord component.- Returns:
- the value of the
checkerrecord component
-