Application
Purpose¶
List applications in a P6 Core instance.
Methods¶
Binding name: p6.application
Method: List<ApplicationDetail> list()
Return the list of applications that are not under development.
An ApplicationDetail contains the following fields:
| Field | Type | Description |
|---|---|---|
| name | String | The name |
| installed | boolean | Is the application installed |
| version | String | The application version |
Examples¶
p6.application.list().each { app ->
println "${app.name} (installed: ${app.installed}) - ${app.version}"
}