Revisit implementations of `services` and `tasks` for fetch and assembly of data from Cloud Foundry. Refactor: * [EventsService](https://github.com/cf-toolsuite/cf-butler/blob/main/src/main/java/org/cftoolsuite/cfapp/service/EventsService.java) * [AppDetailTask](https://github.com/cf-toolsuite/cf-butler/blob/main/src/main/java/org/cftoolsuite/cfapp/task/AppDetailTask.java) Adapt to existing domain model. Consult: V3 Cloud Foundry API * [List events](https://v3-apidocs.cloudfoundry.org/version/3.78.0/index.html#list-audit-events) * [Get event](https://v3-apidocs.cloudfoundry.org/version/3.78.0/index.html#get-an-audit-event) * [List apps](https://v3-apidocs.cloudfoundry.org/version/3.78.0/index.html#list-apps) * [Get app](https://v3-apidocs.cloudfoundry.org/version/3.78.0/index.html#get-an-app) cf-java-client API * [ReactorApplicationsV3](https://github.com/cloudfoundry/cf-java-client/blob/main/cloudfoundry-client-reactor/src/main/java/org/cloudfoundry/reactor/client/v3/applications/ReactorApplicationsV3.java)