Record Class PulsarProperties.Defaults.TypeMapping
java.lang.Object
java.lang.Record
org.springframework.boot.pulsar.autoconfigure.PulsarProperties.Defaults.TypeMapping
- Record Components:
messageType
- the message typetopicName
- the topic nameschemaInfo
- the schema info
- Enclosing class:
PulsarProperties.Defaults
public static record PulsarProperties.Defaults.TypeMapping(Class<?> messageType, String topicName, PulsarProperties.Defaults.SchemaInfo schemaInfo)
extends Record
A mapping from message type to topic and/or schema info to use (at least one of
topicName
or schemaInfo
must be specified.- Since:
- 4.0.0
- Author:
- Chris Bono, Phillip Webb, Swamy Mavuri, Vedran Pavic
-
Constructor Summary
ConstructorsConstructorDescriptionTypeMapping
(Class<?> messageType, String topicName, PulsarProperties.Defaults.SchemaInfo schemaInfo) Creates an instance of aTypeMapping
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Class
<?> Returns the value of themessageType
record component.Returns the value of theschemaInfo
record component.Returns the value of thetopicName
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
TypeMapping
public TypeMapping(Class<?> messageType, String topicName, PulsarProperties.Defaults.SchemaInfo schemaInfo) Creates an instance of aTypeMapping
record class.- Parameters:
messageType
- the value for themessageType
record componenttopicName
- the value for thetopicName
record componentschemaInfo
- the value for theschemaInfo
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)
. -
messageType
Returns the value of themessageType
record component.- Returns:
- the value of the
messageType
record component
-
topicName
-
schemaInfo
Returns the value of theschemaInfo
record component.- Returns:
- the value of the
schemaInfo
record component
-