Class ProductDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.telemetry.ProductDto
-
public class ProductDto extends Object
-
-
Constructor Summary
Constructors Constructor Description ProductDto(String name, String version, String edition, InternalsDto internals)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProductDtofromEngineDto(org.camunda.bpm.engine.telemetry.Product other)StringgetEdition()InternalsDtogetInternals()StringgetName()StringgetVersion()voidsetEdition(String edition)voidsetInternals(InternalsDto internals)voidsetName(String name)voidsetVersion(String version)
-
-
-
Field Detail
-
name
protected String name
-
version
protected String version
-
edition
protected String edition
-
internals
protected InternalsDto internals
-
-
Constructor Detail
-
ProductDto
public ProductDto(String name, String version, String edition, InternalsDto internals)
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getVersion
public String getVersion()
-
setVersion
public void setVersion(String version)
-
getEdition
public String getEdition()
-
setEdition
public void setEdition(String edition)
-
getInternals
public InternalsDto getInternals()
-
setInternals
public void setInternals(InternalsDto internals)
-
fromEngineDto
public static ProductDto fromEngineDto(org.camunda.bpm.engine.telemetry.Product other)
-
-