Package org.guvnor.ala.wildfly.config
Interface WildflyRuntimeConfiguration
-
- All Superinterfaces:
org.guvnor.ala.config.Config,org.guvnor.ala.config.ProvisioningConfig,org.guvnor.ala.config.RuntimeConfig
- All Known Subinterfaces:
WildflyRuntimeExecConfig
- All Known Implementing Classes:
ContextAwareWildflyRuntimeExecConfig
public interface WildflyRuntimeConfiguration extends org.guvnor.ala.config.ProvisioningConfig, org.guvnor.ala.config.RuntimeConfig
-
-
Field Summary
Fields Modifier and Type Field Description static StringREDEPLOY_STRATEGYAttribute name for setting the redeploy strategy parameter.static StringWAR_PATHAttribute name for setting the war file path parameter.
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default StringgetRedeployStrategy()Get the Redeploy Strategy for apps in wildfly - auto: will automatically redeploy the app if it already exist - none: will fail if you try to redeploy an app that already existdefault StringgetWarPath()Get the War / App path
-
-
-
Field Detail
-
WAR_PATH
static final String WAR_PATH
Attribute name for setting the war file path parameter. Pipeline inputs that wants to set this value should ideally use this constant.- See Also:
- Constant Field Values
-
REDEPLOY_STRATEGY
static final String REDEPLOY_STRATEGY
Attribute name for setting the redeploy strategy parameter. Pipeline inputs that wants to set this value should ideally use this constant.- See Also:
- Constant Field Values
-
-
Method Detail
-
getWarPath
default String getWarPath()
Get the War / App path- Returns:
- String with the path where the WAR (Web Archive) is located.
-
getRedeployStrategy
default String getRedeployStrategy()
Get the Redeploy Strategy for apps in wildfly - auto: will automatically redeploy the app if it already exist - none: will fail if you try to redeploy an app that already exist- Returns:
- String with the strategy
-
-