Class DbInfo
- java.lang.Object
-
- io.opentelemetry.instrumentation.jdbc.internal.DbInfo
-
public abstract class DbInfo extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDbInfo.Builder
-
Constructor Summary
Constructors Constructor Description DbInfo()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static DbInfo.Builderbuilder()abstract @Nullable StringgetDb()abstract @Nullable StringgetHost()abstract @Nullable StringgetName()abstract @Nullable IntegergetPort()abstract @Nullable StringgetShortUrl()abstract @Nullable StringgetSubtype()abstract @Nullable StringgetSystem()abstract @Nullable StringgetUser()DbInfo.BuildertoBuilder()
-
-
-
Field Detail
-
DEFAULT
public static final DbInfo DEFAULT
-
-
Method Detail
-
builder
public static DbInfo.Builder builder()
-
getSystem
public abstract @Nullable String getSystem()
-
getSubtype
public abstract @Nullable String getSubtype()
-
getShortUrl
public abstract @Nullable String getShortUrl()
-
getUser
public abstract @Nullable String getUser()
-
getName
public abstract @Nullable String getName()
-
getDb
public abstract @Nullable String getDb()
-
getHost
public abstract @Nullable String getHost()
-
getPort
public abstract @Nullable Integer getPort()
-
toBuilder
public DbInfo.Builder toBuilder()
-
-