Package tech.kronicle.sdk.models.zipkin
Class ZipkinDependency
- java.lang.Object
-
- tech.kronicle.sdk.models.zipkin.ZipkinDependency
-
@Deprecated public final class ZipkinDependency extends java.lang.ObjectDeprecated.Code using this class should migrate to using the tracing data available on Summary.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classZipkinDependency.ZipkinDependencyBuilderDeprecated.
-
Constructor Summary
Constructors Constructor Description ZipkinDependency(java.lang.String parent, java.lang.String child, java.lang.Integer callCount, java.lang.Integer errorCount)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ZipkinDependency.ZipkinDependencyBuilderbuilder()Deprecated.booleanequals(java.lang.Object o)Deprecated.java.lang.IntegergetCallCount()Deprecated.java.lang.StringgetChild()Deprecated.java.lang.IntegergetErrorCount()Deprecated.java.lang.StringgetParent()Deprecated.inthashCode()Deprecated.ZipkinDependency.ZipkinDependencyBuildertoBuilder()Deprecated.java.lang.StringtoString()Deprecated.ZipkinDependencywithCallCount(java.lang.Integer callCount)Deprecated.ZipkinDependencywithChild(java.lang.String child)Deprecated.ZipkinDependencywithErrorCount(java.lang.Integer errorCount)Deprecated.ZipkinDependencywithParent(java.lang.String parent)Deprecated.
-
-
-
Method Detail
-
builder
public static ZipkinDependency.ZipkinDependencyBuilder builder()
Deprecated.
-
toBuilder
public ZipkinDependency.ZipkinDependencyBuilder toBuilder()
Deprecated.
-
getParent
public java.lang.String getParent()
Deprecated.
-
getChild
public java.lang.String getChild()
Deprecated.
-
getCallCount
public java.lang.Integer getCallCount()
Deprecated.
-
getErrorCount
public java.lang.Integer getErrorCount()
Deprecated.
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
withParent
public ZipkinDependency withParent(java.lang.String parent)
Deprecated.- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withChild
public ZipkinDependency withChild(java.lang.String child)
Deprecated.- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withCallCount
public ZipkinDependency withCallCount(java.lang.Integer callCount)
Deprecated.- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withErrorCount
public ZipkinDependency withErrorCount(java.lang.Integer errorCount)
Deprecated.- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
-