Package io.quarkus.bootstrap.model
Class AppDependency
- java.lang.Object
-
- io.quarkus.bootstrap.model.AppDependency
-
- All Implemented Interfaces:
Serializable
public class AppDependency extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intDEPLOYMENT_CP_FLAGstatic intDIRECT_FLAGstatic intOPTIONAL_FLAGstatic intRUNTIME_CP_FLAGstatic intRUNTIME_EXTENSION_ARTIFACT_FLAG
-
Constructor Summary
Constructors Constructor Description AppDependency(AppArtifact artifact, String scope, boolean optional, int... flags)AppDependency(AppArtifact artifact, String scope, int... flags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)AppArtifactgetArtifact()intgetFlags()StringgetScope()inthashCode()booleanisDeploymentCp()booleanisDirect()booleanisFlagSet(int flag)booleanisOptional()booleanisRuntimeCp()booleanisRuntimeExtensionArtifact()StringtoString()
-
-
-
Field Detail
-
OPTIONAL_FLAG
public static final int OPTIONAL_FLAG
- See Also:
- Constant Field Values
-
DIRECT_FLAG
public static final int DIRECT_FLAG
- See Also:
- Constant Field Values
-
RUNTIME_CP_FLAG
public static final int RUNTIME_CP_FLAG
- See Also:
- Constant Field Values
-
DEPLOYMENT_CP_FLAG
public static final int DEPLOYMENT_CP_FLAG
- See Also:
- Constant Field Values
-
RUNTIME_EXTENSION_ARTIFACT_FLAG
public static final int RUNTIME_EXTENSION_ARTIFACT_FLAG
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AppDependency
public AppDependency(AppArtifact artifact, String scope, int... flags)
-
AppDependency
public AppDependency(AppArtifact artifact, String scope, boolean optional, int... flags)
-
-
Method Detail
-
getArtifact
public AppArtifact getArtifact()
-
getScope
public String getScope()
-
isOptional
public boolean isOptional()
-
isDirect
public boolean isDirect()
-
isRuntimeExtensionArtifact
public boolean isRuntimeExtensionArtifact()
-
isRuntimeCp
public boolean isRuntimeCp()
-
isDeploymentCp
public boolean isDeploymentCp()
-
isFlagSet
public boolean isFlagSet(int flag)
-
getFlags
public int getFlags()
-
-