Record Class ServiceMetadata
java.lang.Object
java.lang.Record
org.springframework.cloud.kubernetes.commons.discovery.ServiceMetadata
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotationsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.labels()Returns the value of thelabelsrecord component.name()Returns the value of thenamerecord component.Returns the value of thenamespacerecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
ServiceMetadata
public ServiceMetadata(String name, String namespace, String type, Map<String, String> labels, Map<String, String> annotations) Creates an instance of aServiceMetadatarecord class.- Parameters:
name- the value for thenamerecord componentnamespace- the value for thenamespacerecord componenttype- the value for thetyperecord componentlabels- the value for thelabelsrecord componentannotations- the value for theannotationsrecord 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). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
namespace
Returns the value of thenamespacerecord component.- Returns:
- the value of the
namespacerecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
labels
-
annotations
-