Class ProductImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.telemetry.dto.ProductImpl
-
-
Constructor Summary
Constructors Constructor Description ProductImpl(String name, String version, String edition, InternalsImpl internals)ProductImpl(ProductImpl other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEdition()The edition of the product (i.e., either community or enterprise).InternalsImplgetInternals()Information about the technical internals and the environment of the Camunda installation.StringgetName()The name of the product (i.e., Camunda BPM Runtime).StringgetVersion()The version of the process engine (i.e., 7.X.Y).voidsetEdition(String edition)voidsetInternals(InternalsImpl internals)voidsetName(String name)voidsetVersion(String version)
-
-
-
Field Detail
-
name
protected String name
-
version
protected String version
-
edition
protected String edition
-
internals
protected InternalsImpl internals
-
-
Constructor Detail
-
ProductImpl
public ProductImpl(String name, String version, String edition, InternalsImpl internals)
-
ProductImpl
public ProductImpl(ProductImpl other)
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:ProductThe name of the product (i.e., Camunda BPM Runtime).
-
setName
public void setName(String name)
-
getVersion
public String getVersion()
Description copied from interface:ProductThe version of the process engine (i.e., 7.X.Y).- Specified by:
getVersionin interfaceProduct
-
setVersion
public void setVersion(String version)
-
getEdition
public String getEdition()
Description copied from interface:ProductThe edition of the product (i.e., either community or enterprise).- Specified by:
getEditionin interfaceProduct
-
setEdition
public void setEdition(String edition)
-
getInternals
public InternalsImpl getInternals()
Description copied from interface:ProductInformation about the technical internals and the environment of the Camunda installation.- Specified by:
getInternalsin interfaceProduct
-
setInternals
public void setInternals(InternalsImpl internals)
-
-