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 String
installation
protected ProductImpl
product
-
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 String
getInstallation()
This method returns a String which is unique for each installation of Camunda.ProductImpl
getProduct()
Returns a data object that stores information about the used Camunda product.void
mergeInternals(InternalsImpl other)
void
setInstallation(String installation)
void
setProduct(ProductImpl product)
String
toString()
-
-
-
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:TelemetryData
This 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:
getInstallation
in interfaceTelemetryData
-
setInstallation
public void setInstallation(String installation)
-
getProduct
public ProductImpl getProduct()
Description copied from interface:TelemetryData
Returns a data object that stores information about the used Camunda product.- Specified by:
getProduct
in interfaceTelemetryData
-
setProduct
public void setProduct(ProductImpl product)
-
mergeInternals
public void mergeInternals(InternalsImpl other)
-
-