Interface DasConfig
- All Superinterfaces:
org.jvnet.hk2.config.ConfigBeanProxy,org.jvnet.hk2.config.types.PropertyBag
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of theadminSessionTimeoutInMinutesproperty.Gets the value of theautodeployDirproperty.Gets the value of theautodeployEnabledproperty.Gets the value of theautodeployJspPrecompilationEnabledproperty.@Min(1L) StringGets the value of theautodeployPollingIntervalInSecondsproperty.Gets the value of theautodeployRetryTimeoutproperty.Gets the value of theautodeployVerifierEnabledproperty.Gets the value of thedeployXmlValidationproperty.Gets the value of thedynamicReloadEnabledproperty.@Min(1L) StringGets the value of thedynamicReloadPollIntervalInSecondsproperty.List<org.jvnet.hk2.config.types.Property>Properties as perPropertyBagvoidsetAdminSessionTimeoutInMinutes(String adminSessionTimeout) Sets the value of theadminSessionTimeoutInMinutesproperty.voidsetAutodeployDir(String autodeployDir) Sets the value of theautodeployDirproperty.voidsetAutodeployEnabled(String autodeployEnabled) Sets the value of theautodeployEnabledproperty.voidsetAutodeployJspPrecompilationEnabled(String jspPrecompilationEnabled) Sets the value of theautodeployJspPrecompilationEnabledproperty.voidsetAutodeployPollingIntervalInSeconds(String autodeployPollingInterval) Sets the value of theautodeployPollingIntervalInSecondsproperty.voidsetAutodeployRetryTimeout(String autodeployRetryTimeout) Sets the value of theautodeployRetryTimeoutproperty.voidsetAutodeployVerifierEnabled(String autodeployVerifierEnabled) Sets the value of theautodeployVerifierEnabledproperty.voidsetDeployXmlValidation(String deployXmlValidation) Sets the value of thedeployXmlValidationproperty.voidsetDynamicReloadEnabled(String dynamicReloadEnabled) Sets the value of thedynamicReloadEnabledproperty.voidsetDynamicReloadPollIntervalInSeconds(String dynamicReloadPollInterval) Sets the value of thedynamicReloadPollIntervalInSecondsproperty.Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParentMethods inherited from interface org.jvnet.hk2.config.types.PropertyBag
addProperty, getProperty, getPropertyValue, getPropertyValue, lookupProperty, removeProperty, removeProperty
-
Method Details
-
getDynamicReloadEnabled
String getDynamicReloadEnabled()Gets the value of thedynamicReloadEnabledproperty.When
true, server checks timestamp on a.reloadfile at every module and application directory level to trigger reload. Polling frequency is controlled byreload-poll-interval-in-seconds.- Returns:
- possible object is
String
-
setDynamicReloadEnabled
Sets the value of thedynamicReloadEnabledproperty.- Parameters:
dynamicReloadEnabled- allowed object isString- Throws:
PropertyVetoException
-
getDynamicReloadPollIntervalInSeconds
Gets the value of thedynamicReloadPollIntervalInSecondsproperty.Maximum period, in seconds, that a change to the load balancer configuration file takes before it is detected by the load balancer and the file reloaded. A value of
0indicates that reloading is disabled. Default period is 1 minute (60).- Returns:
- possible object is
String
-
setDynamicReloadPollIntervalInSeconds
void setDynamicReloadPollIntervalInSeconds(String dynamicReloadPollInterval) throws PropertyVetoException Sets the value of thedynamicReloadPollIntervalInSecondsproperty.- Parameters:
dynamicReloadPollInterval- allowed object isString- Throws:
PropertyVetoException
-
getAutodeployEnabled
String getAutodeployEnabled()Gets the value of theautodeployEnabledproperty.This will enable the autodeployment service. If
true, the service will automatically starts with the admin-server. Auto Deployment is a feature that enables developers to quickly deploy applications and modules to a running application server without requiring the developer to perform an explicit application server restart or separate deployment operation.- Returns:
- possible object is
String
-
setAutodeployEnabled
Sets the value of theautodeployEnabledproperty.- Parameters:
autodeployEnabled- allowed object isString- Throws:
PropertyVetoException
-
getAutodeployPollingIntervalInSeconds
Gets the value of theautodeployPollingIntervalInSecondsproperty.The polling interval (in sec), at the end of which autodeployment service will scan the source directory (specified by "autodeploy-dir" tag) for any new deployable component.
- Returns:
- possible object is
String
-
setAutodeployPollingIntervalInSeconds
void setAutodeployPollingIntervalInSeconds(String autodeployPollingInterval) throws PropertyVetoException Sets the value of theautodeployPollingIntervalInSecondsproperty.- Parameters:
autodeployPollingInterval- allowed object isString- Throws:
PropertyVetoException
-
getAutodeployDir
String getAutodeployDir()Gets the value of theautodeployDirproperty.The source directory (relative to instance root) from which autodeploy service will pick deployable components. You can also specify an absolute directory.
- Returns:
- possible object is
String
-
setAutodeployDir
Sets the value of theautodeployDirproperty.- Parameters:
autodeployDir- allowed object isString- Throws:
PropertyVetoException
-
getAutodeployVerifierEnabled
String getAutodeployVerifierEnabled()Gets the value of theautodeployVerifierEnabledproperty.To enable/disable verifier, during auto-deployment.
If
true, verification will be done before any deployment activity. In the event of any verifier test failure, deployment is not performed.- Returns:
- possible object is
String
-
setAutodeployVerifierEnabled
Sets the value of theautodeployVerifierEnabledproperty.- Parameters:
autodeployVerifierEnabled- allowed object isString- Throws:
PropertyVetoException
-
getAutodeployJspPrecompilationEnabled
String getAutodeployJspPrecompilationEnabled()Gets the value of theautodeployJspPrecompilationEnabledproperty.If
true, JSPs will be pre compiled during deployment of war module(s).- Returns:
- possible object is
String
-
setAutodeployJspPrecompilationEnabled
void setAutodeployJspPrecompilationEnabled(String jspPrecompilationEnabled) throws PropertyVetoException Sets the value of theautodeployJspPrecompilationEnabledproperty.- Parameters:
jspPrecompilationEnabled- allowed object isString- Throws:
PropertyVetoException
-
getAutodeployRetryTimeout
String getAutodeployRetryTimeout()Gets the value of theautodeployRetryTimeoutproperty.- Returns:
- possible object is
String
-
setAutodeployRetryTimeout
Sets the value of theautodeployRetryTimeoutproperty.- Parameters:
autodeployRetryTimeout- allowed object isString- Throws:
PropertyVetoException
-
getDeployXmlValidation
String getDeployXmlValidation()Gets the value of thedeployXmlValidationproperty.Specifies if descriptor validation is required or not. Full xml will be validated and in case of xml validation errors, deployment will fail parsing xml errors will be reported but deployment process will continue. None no xml validation will be performed on the standard or runtime deployment descriptors.
- Returns:
- possible object is
String
-
setDeployXmlValidation
Sets the value of thedeployXmlValidationproperty.- Parameters:
deployXmlValidation- allowed object isString- Throws:
PropertyVetoException
-
getAdminSessionTimeoutInMinutes
String getAdminSessionTimeoutInMinutes()Gets the value of theadminSessionTimeoutInMinutesproperty.Timeout in minutes indicating the administration gui session timeout.
- Returns:
- possible object is
String
-
setAdminSessionTimeoutInMinutes
Sets the value of theadminSessionTimeoutInMinutesproperty.- Parameters:
adminSessionTimeout- allowed object isString- Throws:
PropertyVetoException
-
getProperty
@ToDo(priority=IMPORTANT, details="Provide PropertyDesc for legal props") @PropertiesDesc(props={}) List<org.jvnet.hk2.config.types.Property> getProperty()Properties as perPropertyBag- Specified by:
getPropertyin interfaceorg.jvnet.hk2.config.types.PropertyBag
-