Class TelemetryDataImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.telemetry.dto.TelemetryDataImpl
-
- All Implemented Interfaces:
TelemetryData
public class TelemetryDataImpl extends Object implements TelemetryData
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringinstallationprotected ProductImplproduct
-
Constructor Summary
Constructors Constructor Description TelemetryDataImpl(String installation, ProductImpl product)TelemetryDataImpl(TelemetryDataImpl other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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(String installation)voidsetProduct(ProductImpl product)StringtoString()
-
-
-
Field Detail
-
installation
protected String installation
-
product
protected ProductImpl product
-
-
Constructor Detail
-
TelemetryDataImpl
public TelemetryDataImpl(String installation, ProductImpl product)
-
TelemetryDataImpl
public TelemetryDataImpl(TelemetryDataImpl other)
-
-
Method Detail
-
getInstallation
public 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(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)
-
-