Interface CloudRuntimeEntity
-
- All Superinterfaces:
org.activiti.api.model.shared.model.ApplicationElement
- All Known Subinterfaces:
CloudRuntimeEvent<ENTITY_TYPE,EVENT_TYPE>,CloudVariableCreatedEvent,CloudVariableDeletedEvent,CloudVariableEvent,CloudVariableInstance,CloudVariableUpdatedEvent
public interface CloudRuntimeEntity extends org.activiti.api.model.shared.model.ApplicationElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAppName()Application name, for a runtime-bundle it is the value of the activiti.cloud.application.name spring property.StringgetServiceFullName()Service full name, at the moment it is the same as serviceName.StringgetServiceName()Service name, for a runtime-bundle it is the value of the spring.application.name spring property.StringgetServiceType()Service type, for a runtime-bundle it is the value of the activiti.cloud.service.type spring property.StringgetServiceVersion()Service version, for a runtime-bundle it is the value of the activiti.cloud.service.version spring property.
-
-
-
Method Detail
-
getAppName
String getAppName()
Application name, for a runtime-bundle it is the value of the activiti.cloud.application.name spring property.
-
getServiceName
String getServiceName()
Service name, for a runtime-bundle it is the value of the spring.application.name spring property.
-
getServiceFullName
String getServiceFullName()
Service full name, at the moment it is the same as serviceName.
-
getServiceType
String getServiceType()
Service type, for a runtime-bundle it is the value of the activiti.cloud.service.type spring property.
-
getServiceVersion
String getServiceVersion()
Service version, for a runtime-bundle it is the value of the activiti.cloud.service.version spring property.
-
-