APPLICATION (for JGAS)
This APPLICATION element defines an application with default settings
    within the JGAS configuration file.
Syntax
<APPLICATION>
  [<EXECUTION>...</EXECUTION>]
  [<AUTO_LOGOUT>...</AUTO_LOGOUT>]
</APPLICATION>
      Child elements
The APPLICATION element may contain the following elements:
- Zero or one 
EXECUTION (under APPLICATION for JGAS)elements. - Zero or one 
AUTO_LOGOUT (for JGAS)elements. 
Usage
You use the 
APPLICATION element to provide default configuration settings that
any application contained in a deployed war file inherit and use. Note: In the JGAS there is no abstract application definition. All
applications and services inherit configurations from the default templates. Only one
APPLICATION and SERVICE template is allowed in the JGAS
configuration file (as.xcf).Example JGAS as.xcf application configuration
  <APPLICATION>
      <EXECUTION>
         <ENVIRONMENT_VARIABLE Id="FGLDIR">$(res.fgldir)</ENVIRONMENT_VARIABLE>
         ...
        <WEB_COMPONENT_DIRECTORY>webcomponents</WEB_COMPONENT_DIRECTORY>
        <UA_OUTPUT>
          <PUBLIC_IMAGEPATH>$(res.public.resources)</PUBLIC_IMAGEPATH>
          <TIMEOUT>
           ...
          </TIMEOUT>
          <GBC>$(res.gbc)</GBC>
          <GDC_SHORTCUT>$(res.deployment.root)/tpl/shortcut/gdc-http.gdc</GDC_SHORTCUT>
        </UA_OUTPUT>
        </DELEGATE>
      </EXECUTION>
      <AUTO_LOGOUT>
         <TIMEOUT>$(app.timeout.autologout)</TIMEOUT>
      </AUTO_LOGOUT>
    </APPLICATION>
      Parent elements
In the JGAS configuration file, this element is a child of the CONFIGURATION (for JGAS) element.