Package org.camunda.bpm.engine.telemetry
Interface Product
-
- All Known Implementing Classes:
ProductImpl
public interface Product
This class represents the data structure of information about the Camunda product. This information is sent to Camunda when telemetry is enabled.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getEdition()
The edition of the product (i.e., either community or enterprise).Internals
getInternals()
Information about the technical internals and the environment of the Camunda installation.java.lang.String
getName()
The name of the product (i.e., Camunda BPM Runtime).java.lang.String
getVersion()
The version of the process engine (i.e., 7.X.Y).
-
-
-
Method Detail
-
getName
java.lang.String getName()
The name of the product (i.e., Camunda BPM Runtime).
-
getVersion
java.lang.String getVersion()
The version of the process engine (i.e., 7.X.Y).
-
getEdition
java.lang.String getEdition()
The edition of the product (i.e., either community or enterprise).
-
getInternals
Internals getInternals()
Information about the technical internals and the environment of the Camunda installation.
-
-