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 java.lang.StringgetAppName()Application name, for a runtime-bundle it is the value of the activiti.cloud.application.name spring property.java.lang.StringgetServiceFullName()Service full name, at the moment it is the same as serviceName.java.lang.StringgetServiceName()Service name, for a runtime-bundle it is the value of the spring.application.name spring property.java.lang.StringgetServiceType()Service type, for a runtime-bundle it is the value of the activiti.cloud.service.type spring property.java.lang.StringgetServiceVersion()Service version, for a runtime-bundle it is the value of the activiti.cloud.service.version spring property.
-
-
-
Method Detail
-
getAppName
java.lang.String getAppName()
Application name, for a runtime-bundle it is the value of the activiti.cloud.application.name spring property.
-
getServiceName
java.lang.String getServiceName()
Service name, for a runtime-bundle it is the value of the spring.application.name spring property.
-
getServiceFullName
java.lang.String getServiceFullName()
Service full name, at the moment it is the same as serviceName.
-
getServiceType
java.lang.String getServiceType()
Service type, for a runtime-bundle it is the value of the activiti.cloud.service.type spring property.
-
getServiceVersion
java.lang.String getServiceVersion()
Service version, for a runtime-bundle it is the value of the activiti.cloud.service.version spring property.
-
-