Interface LocalBuildConfig
-
- All Superinterfaces:
org.guvnor.ala.config.BuildConfig,org.guvnor.ala.config.Config
- All Known Implementing Classes:
LocalBuildConfigImpl
public interface LocalBuildConfig extends org.guvnor.ala.config.BuildConfigThis interface represents the build information/parameters for building a project with the local build system.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classLocalBuildConfig.BuildTypeEnumerates the different build types supported by the local build system.static classLocalBuildConfig.DeploymentTypeEnumerates the different deployment modes supported by the local build system.
-
Field Summary
Fields Modifier and Type Field Description static StringBUILD_TYPEstatic StringDEPLOYMENT_TYPEstatic StringRESOURCEstatic StringRESOURCE_CHANGEstatic StringSUPPRESS_HANDLERS
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StringgetBuildType()default StringgetDeploymentType()default StringgetResource()Map<String,String>getResourceChanges()default StringgetSuppressHandlers()
-
-
-
Field Detail
-
BUILD_TYPE
static final String BUILD_TYPE
- See Also:
- Constant Field Values
-
RESOURCE
static final String RESOURCE
- See Also:
- Constant Field Values
-
RESOURCE_CHANGE
static final String RESOURCE_CHANGE
- See Also:
- Constant Field Values
-
DEPLOYMENT_TYPE
static final String DEPLOYMENT_TYPE
- See Also:
- Constant Field Values
-
SUPPRESS_HANDLERS
static final String SUPPRESS_HANDLERS
- See Also:
- Constant Field Values
-
-
Method Detail
-
getBuildType
default String getBuildType()
- Returns:
- the String representation of the BuildType to perform.
-
getResource
default String getResource()
- Returns:
- the String representation of the resource uri to build.
-
getDeploymentType
default String getDeploymentType()
- Returns:
- the String representation of the DeploymentType to perform.
-
getSuppressHandlers
default String getSuppressHandlers()
- Returns:
- the String representation of a boolean indicating if the PostBuildHandlers invocation should be suppressed.
-
-