Package io.quarkus.bootstrap.model
Interface ApplicationModel
-
- All Known Implementing Classes:
AppModel,DefaultApplicationModel
public interface ApplicationModel
-
-
Field Summary
Fields Modifier and Type Field Description static StringEXCLUDED_ARTIFACTSstatic StringLESSER_PRIORITY_ARTIFACTSstatic StringPARENT_FIRST_ARTIFACTSstatic StringRUNNER_PARENT_FIRST_ARTIFACTS
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ResolvedDependencygetAppArtifact()default WorkspaceModulegetApplicationModule()Collection<ResolvedDependency>getDependencies()Collection<ExtensionCapabilities>getExtensionCapabilities()Set<ArtifactKey>getLowerPriorityArtifacts()Set<ArtifactKey>getParentFirst()default Map<String,String>getPlatformProperties()PlatformImportsgetPlatforms()Set<ArtifactKey>getReloadableWorkspaceDependencies()Set<ArtifactKey>getRunnerParentFirst()default Collection<ResolvedDependency>getRuntimeDependencies()default Collection<WorkspaceModule>getWorkspaceModules()
-
-
-
Field Detail
-
PARENT_FIRST_ARTIFACTS
static final String PARENT_FIRST_ARTIFACTS
- See Also:
- Constant Field Values
-
RUNNER_PARENT_FIRST_ARTIFACTS
static final String RUNNER_PARENT_FIRST_ARTIFACTS
- See Also:
- Constant Field Values
-
EXCLUDED_ARTIFACTS
static final String EXCLUDED_ARTIFACTS
- See Also:
- Constant Field Values
-
LESSER_PRIORITY_ARTIFACTS
static final String LESSER_PRIORITY_ARTIFACTS
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAppArtifact
ResolvedDependency getAppArtifact()
-
getDependencies
Collection<ResolvedDependency> getDependencies()
-
getRuntimeDependencies
default Collection<ResolvedDependency> getRuntimeDependencies()
-
getPlatforms
PlatformImports getPlatforms()
-
getExtensionCapabilities
Collection<ExtensionCapabilities> getExtensionCapabilities()
-
getParentFirst
Set<ArtifactKey> getParentFirst()
-
getRunnerParentFirst
Set<ArtifactKey> getRunnerParentFirst()
-
getLowerPriorityArtifacts
Set<ArtifactKey> getLowerPriorityArtifacts()
-
getReloadableWorkspaceDependencies
Set<ArtifactKey> getReloadableWorkspaceDependencies()
-
getApplicationModule
default WorkspaceModule getApplicationModule()
-
getWorkspaceModules
default Collection<WorkspaceModule> getWorkspaceModules()
-
-