Class InternalsDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.telemetry.InternalsDto
-
public class InternalsDto extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ApplicationServerDto
applicationServer
protected Set<String>
camundaIntegration
protected Map<String,CommandDto>
commands
protected DatabaseDto
database
protected Date
dataCollectionStartDate
protected JdkDto
jdk
protected LicenseKeyDataDto
licenseKey
protected Map<String,MetricDto>
metrics
static String
SERIALIZED_APPLICATION_SERVER
static String
SERIALIZED_CAMUNDA_INTEGRATION
static String
SERIALIZED_LICENSE_KEY
static String
SERIALIZED_TELEMETRY_DATA_COLLECTION_START_DATE
protected Set<String>
webapps
-
Constructor Summary
Constructors Constructor Description InternalsDto(DatabaseDto database, ApplicationServerDto server, LicenseKeyDataDto licenseKey, JdkDto jdk)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InternalsDto
fromEngineDto(Internals other)
ApplicationServerDto
getApplicationServer()
Set<String>
getCamundaIntegration()
Map<String,CommandDto>
getCommands()
DatabaseDto
getDatabase()
Date
getDataCollectionStartDate()
JdkDto
getJdk()
LicenseKeyDataDto
getLicenseKey()
Map<String,MetricDto>
getMetrics()
Set<String>
getWebapps()
void
setApplicationServer(ApplicationServerDto applicationServer)
void
setCamundaIntegration(Set<String> camundaIntegration)
void
setCommands(Map<String,CommandDto> commands)
void
setDatabase(DatabaseDto database)
void
setDataCollectionStartDate(Date dataCollectionStartDate)
void
setJdk(JdkDto jdk)
void
setLicenseKey(LicenseKeyDataDto licenseKey)
void
setMetrics(Map<String,MetricDto> metrics)
void
setWebapps(Set<String> webapps)
-
-
-
Field Detail
-
SERIALIZED_APPLICATION_SERVER
public static final String SERIALIZED_APPLICATION_SERVER
- See Also:
- Constant Field Values
-
SERIALIZED_CAMUNDA_INTEGRATION
public static final String SERIALIZED_CAMUNDA_INTEGRATION
- See Also:
- Constant Field Values
-
SERIALIZED_LICENSE_KEY
public static final String SERIALIZED_LICENSE_KEY
- See Also:
- Constant Field Values
-
SERIALIZED_TELEMETRY_DATA_COLLECTION_START_DATE
public static final String SERIALIZED_TELEMETRY_DATA_COLLECTION_START_DATE
- See Also:
- Constant Field Values
-
database
protected DatabaseDto database
-
applicationServer
protected ApplicationServerDto applicationServer
-
licenseKey
protected LicenseKeyDataDto licenseKey
-
dataCollectionStartDate
protected Date dataCollectionStartDate
-
commands
protected Map<String,CommandDto> commands
-
jdk
protected JdkDto jdk
-
-
Constructor Detail
-
InternalsDto
public InternalsDto(DatabaseDto database, ApplicationServerDto server, LicenseKeyDataDto licenseKey, JdkDto jdk)
-
-
Method Detail
-
getDatabase
public DatabaseDto getDatabase()
-
setDatabase
public void setDatabase(DatabaseDto database)
-
getApplicationServer
public ApplicationServerDto getApplicationServer()
-
setApplicationServer
public void setApplicationServer(ApplicationServerDto applicationServer)
-
getCommands
public Map<String,CommandDto> getCommands()
-
setCommands
public void setCommands(Map<String,CommandDto> commands)
-
getJdk
public JdkDto getJdk()
-
setJdk
public void setJdk(JdkDto jdk)
-
getLicenseKey
public LicenseKeyDataDto getLicenseKey()
-
setLicenseKey
public void setLicenseKey(LicenseKeyDataDto licenseKey)
-
getDataCollectionStartDate
public Date getDataCollectionStartDate()
-
setDataCollectionStartDate
public void setDataCollectionStartDate(Date dataCollectionStartDate)
-
fromEngineDto
public static InternalsDto fromEngineDto(Internals other)
-
-