Class TelemetryDataImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.telemetry.dto.TelemetryDataImpl
-
- All Implemented Interfaces:
TelemetryData
public class TelemetryDataImpl extends java.lang.Object implements TelemetryData
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringinstallationprotected ProductImplproduct
-
Constructor Summary
Constructors Constructor Description TelemetryDataImpl(java.lang.String installation, ProductImpl product)TelemetryDataImpl(TelemetryDataImpl other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetInstallation()This method returns a String which is unique for each installation of Camunda.ProductImplgetProduct()Returns a data object that stores information about the used Camunda product.voidmergeInternals(InternalsImpl other)voidsetInstallation(java.lang.String installation)voidsetProduct(ProductImpl product)java.lang.StringtoString()
-
-
-
Field Detail
-
installation
protected java.lang.String installation
-
product
protected ProductImpl product
-
-
Constructor Detail
-
TelemetryDataImpl
public TelemetryDataImpl(java.lang.String installation, ProductImpl product)
-
TelemetryDataImpl
public TelemetryDataImpl(TelemetryDataImpl other)
-
-
Method Detail
-
getInstallation
public java.lang.String getInstallation()
Description copied from interface:TelemetryDataThis method returns a String which is unique for each installation of Camunda. It is stored once per database so all engines connected to the same database will have the same installation ID. The ID is used to identify a single installation of Camunda Platform.- Specified by:
getInstallationin interfaceTelemetryData
-
setInstallation
public void setInstallation(java.lang.String installation)
-
getProduct
public ProductImpl getProduct()
Description copied from interface:TelemetryDataReturns a data object that stores information about the used Camunda product.- Specified by:
getProductin interfaceTelemetryData
-
setProduct
public void setProduct(ProductImpl product)
-
mergeInternals
public void mergeInternals(InternalsImpl other)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-