Package io.quarkus.bootstrap.model
Class AppModel
- java.lang.Object
-
- io.quarkus.bootstrap.model.AppModel
-
- All Implemented Interfaces:
ApplicationModel,Serializable
@Deprecated public class AppModel extends Object implements ApplicationModel, Serializable
Deprecated.in favor ofApplicationModelA representation of the Quarkus dependency model for a given application. Changes made to this class should also be reflected inMutableJarApplicationModel- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAppModel.BuilderDeprecated.
-
Field Summary
Fields Modifier and Type Field Description static StringEXCLUDED_ARTIFACTSDeprecated.static StringLESSER_PRIORITY_ARTIFACTSDeprecated.static StringPARENT_FIRST_ARTIFACTSDeprecated.static StringRUNNER_PARENT_FIRST_ARTIFACTSDeprecated.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.quarkus.bootstrap.model.ApplicationModel
getApplicationModule, getRuntimeDependencies, getWorkspaceModules
-
-
-
-
Field Detail
-
PARENT_FIRST_ARTIFACTS
public static final String PARENT_FIRST_ARTIFACTS
Deprecated.- See Also:
- Constant Field Values
-
RUNNER_PARENT_FIRST_ARTIFACTS
public static final String RUNNER_PARENT_FIRST_ARTIFACTS
Deprecated.- See Also:
- Constant Field Values
-
EXCLUDED_ARTIFACTS
public static final String EXCLUDED_ARTIFACTS
Deprecated.- See Also:
- Constant Field Values
-
LESSER_PRIORITY_ARTIFACTS
public static final String LESSER_PRIORITY_ARTIFACTS
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
getPlatformProperties
public Map<String,String> getPlatformProperties()
Deprecated.- Specified by:
getPlatformPropertiesin interfaceApplicationModel
-
getPlatforms
public PlatformImports getPlatforms()
Deprecated.- Specified by:
getPlatformsin interfaceApplicationModel
-
getAppArtifact
public AppArtifact getAppArtifact()
Deprecated.- Specified by:
getAppArtifactin interfaceApplicationModel
-
getUserDependencies
public List<AppDependency> getUserDependencies()
Deprecated.Dependencies that the user has added that have nothing to do with Quarkus (3rd party libs, additional modules etc)
-
getDeploymentDependencies
@Deprecated public List<AppDependency> getDeploymentDependencies()
Deprecated.Dependencies of the -deployment artifacts from the quarkus extensions, and all their transitive dependencies.
-
getFullDeploymentDeps
public List<AppDependency> getFullDeploymentDeps()
Deprecated.
-
getParentFirstArtifacts
public Set<AppArtifactKey> getParentFirstArtifacts()
Deprecated.
-
getRunnerParentFirstArtifacts
public Set<AppArtifactKey> getRunnerParentFirstArtifacts()
Deprecated.
-
getLesserPriorityArtifacts
public Set<AppArtifactKey> getLesserPriorityArtifacts()
Deprecated.
-
getLocalProjectArtifacts
public Set<AppArtifactKey> getLocalProjectArtifacts()
Deprecated.
-
getCapabilityContracts
public Map<String,CapabilityContract> getCapabilityContracts()
Deprecated.
-
getDependencies
public Collection<ResolvedDependency> getDependencies()
Deprecated.- Specified by:
getDependenciesin interfaceApplicationModel
-
getExtensionCapabilities
public Collection<ExtensionCapabilities> getExtensionCapabilities()
Deprecated.- Specified by:
getExtensionCapabilitiesin interfaceApplicationModel
-
getParentFirst
public Set<ArtifactKey> getParentFirst()
Deprecated.- Specified by:
getParentFirstin interfaceApplicationModel
-
getRunnerParentFirst
public Set<ArtifactKey> getRunnerParentFirst()
Deprecated.- Specified by:
getRunnerParentFirstin interfaceApplicationModel
-
getLowerPriorityArtifacts
public Set<ArtifactKey> getLowerPriorityArtifacts()
Deprecated.- Specified by:
getLowerPriorityArtifactsin interfaceApplicationModel
-
getReloadableWorkspaceDependencies
public Set<ArtifactKey> getReloadableWorkspaceDependencies()
Deprecated.- Specified by:
getReloadableWorkspaceDependenciesin interfaceApplicationModel
-
getRemovedResources
public Map<ArtifactKey,Set<String>> getRemovedResources()
Deprecated.Description copied from interface:ApplicationModelResources that should be removed from the classpath.- Specified by:
getRemovedResourcesin interfaceApplicationModel- Returns:
- resources that should be removed from the classpath
-
-