Record Class WsMappingResult
java.lang.Object
java.lang.Record
org.apache.tomcat.websocket.server.WsMappingResult
public record WsMappingResult(ServerEndpointConfig config, Map<String,String> pathParams)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionWsMappingResult
(ServerEndpointConfig config, Map<String, String> pathParams) Creates an instance of aWsMappingResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionconfig()
Returns the value of theconfig
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thepathParams
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
WsMappingResult
Creates an instance of aWsMappingResult
record class.- Parameters:
config
- the value for theconfig
record componentpathParams
- the value for thepathParams
record component
-
-
Method Details
-
toString
-
hashCode
-
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)
. -
config
Returns the value of theconfig
record component.- Returns:
- the value of the
config
record component
-
pathParams
-