Package com.tccc.kos.core.service.app
Class LoadableApp
java.lang.Object
com.tccc.kos.core.service.app.LoadableApp
Information about a manifest section that has a "kos.app." or "kos.autostart." prefix.
Any autostart applications are started during boot and the list of autostarted apps
can be accessed from
AppService
. Non-autostart apps are intended to be
managed by user code. The list of non-autostart apps can also be accessed from
AppService
.
This is merely a convenience wrapper around data that can be easily pulled from the
manifest. However, discovering available apps is a common use case which is facilitated
by AppService
. For similar use cases where section name prefixes are used to
identify common elements in the manifest that may also contain applications, it is
sufficient to simply identify the section and the application kab to launch the
application.
- Since:
- 1.0
- Version:
- 2024-01-02
-
Method Summary
Modifier and TypeMethodDescriptiongetAppId()
Return the id of the application within the section.Return the application kab.The section the application is part of.The name of the section.
-
Method Details
-
getSectionName
The name of the section. -
getAppId
Return the id of the application within the section. -
getSection
The section the application is part of. -
getAppKab
Return the application kab.
-