element <config>
Namespace:
Type:
Content:
empty, 5 attributes
Defined:
Includes:
definitions of 4 attributes
Used:
never
XML Representation Summary
<config
    autowire
 = 
("none" | "byName") : "none"
    factory-name
 = 
xsd:string
    flushmode
 = 
("AUTO" | "ALWAYS" | "COMMIT" | "MANUAL" | "NEVER") : "AUTO"
    id
 = 
xsd:ID
    strictTransaction
 = 
xsd:boolean : "false"
/>
Anonymous Type Detail
Type Derivation Tree
  complexType
Annotation
Provides a SessionWrapper under the id specified, with the strictTransaction mode, flush mode specified. Defining a autowire setting, will configure the appropriate BeanInjector, give it the appropriate id for a BeanInjectorEventHandler (usually hibernate-beanInjector) and pass it into the SessionWrapper as the BeanInjector to use on new(). Defining an autowire session will also add a ScopeBeanFactoryLocator to set the current BeanFactory into the application scope. To overwrite the default application name, use the factory-name attribute.
See:  cfc:coldspring.orm.hibernate.SessionWrapper
XML Source (see within schema source)
<xsd:element name="config">
<xsd:complexType>
<xsd:annotation>
<xsd:documentation source="cfc:coldspring.orm.hibernate.SessionWrapper">
<![CDATA[
Provides a SessionWrapper under the id specified, with the strictTransaction mode, flush mode specified.
Defining a autowire setting, will configure the appropriate BeanInjector, give it the appropriate id for a BeanInjectorEventHandler (usually hibernate-beanInjector)
and pass it into the SessionWrapper as the BeanInjector to use on new().
Defining an autowire session will also add a ScopeBeanFactoryLocator to set the current BeanFactory into the application scope.
To overwrite the default application name, use the factory-name attribute.
]]>
</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="beans:identifiedType">
<xsd:attribute default="false" name="strictTransaction" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>
<![CDATA[
Enable strict transactions on the underlying SessionWrapper.
]]>
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute default="AUTO" name="flushmode">
<xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
The default flush mode provided to the SessionWrapper. Defaults to AUTO (Just like the SessionWrapper).
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="AUTO"/>
<xsd:enumeration value="ALWAYS"/>
<xsd:enumeration value="COMMIT"/>
<xsd:enumeration value="MANUAL"/>
<xsd:enumeration value="NEVER"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute default="none" name="autowire">
<xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
Whether or not to autowire. Implements the autowire option specified within the ORM SessionWrapper, and provides the neccessary
BeanInjector for the BeanInjectorEventHandler
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="none"/>
<xsd:enumeration value="byName"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="factory-name" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>
If autowire is a value other than "none", then if this value is provided, set the BeanFactory in the application scope under this key.
If this is not set, then use the defaults as they are set in the ScopeBeanFactoryLocator (which is the key 'coldspring').
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
Attribute Detail (all declarations; 5)
autowire
Type:
anonymous (restriction of xsd:NMTOKEN)
Use:
optional
Default:
"none"
Defined:
locally within (this) config element
Anonymous simpleType
Derivation:
restriction of xsd:NMTOKEN
XML Source (see within schema source)
<xsd:attribute default="none" name="autowire">
<xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
Whether or not to autowire. Implements the autowire option specified within the ORM SessionWrapper, and provides the neccessary
BeanInjector for the BeanInjectorEventHandler
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="none"/>
<xsd:enumeration value="byName"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>

factory-name
Type:
xsd:string, predefined
Use:
optional
Defined:
locally within (this) config element
If autowire is a value other than "none", then if this value is provided, set the BeanFactory in the application scope under this key. If this is not set, then use the defaults as they are set in the ScopeBeanFactoryLocator (which is the key 'coldspring').
XML Source (see within schema source)
<xsd:attribute name="factory-name" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>
If autowire is a value other than "none", then if this value is provided, set the BeanFactory in the application scope under this key.
If this is not set, then use the defaults as they are set in the ScopeBeanFactoryLocator (which is the key 'coldspring').
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>

flushmode
Type:
anonymous (restriction of xsd:NMTOKEN)
Use:
optional
Default:
"AUTO"
Defined:
locally within (this) config element
Anonymous simpleType
Derivation:
restriction of xsd:NMTOKEN
XML Source (see within schema source)
<xsd:attribute default="AUTO" name="flushmode">
<xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
The default flush mode provided to the SessionWrapper. Defaults to AUTO (Just like the SessionWrapper).
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="AUTO"/>
<xsd:enumeration value="ALWAYS"/>
<xsd:enumeration value="COMMIT"/>
<xsd:enumeration value="MANUAL"/>
<xsd:enumeration value="NEVER"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>

id
Type:
xsd:ID, predefined
Use:
optional
Defined:
locally within beans:identifiedType complexType
The unique identifier for a bean.
XML Source (see within schema source)
<xsd:attribute name="id" type="xsd:ID">
<xsd:annotation>
<xsd:documentation>
<![CDATA[
The unique identifier for a bean.
]]>
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>

strictTransaction
Type:
xsd:boolean, predefined
Use:
optional
Default:
"false"
Defined:
locally within (this) config element
Enable strict transactions on the underlying SessionWrapper.
XML Source (see within schema source)
<xsd:attribute default="false" name="strictTransaction" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>
<![CDATA[
Enable strict transactions on the underlying SessionWrapper.
]]>
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>

This XML schema documentation has been generated with DocFlex/XML RE 1.8.0 using DocFlex/XML XSDDoc 2.2.0 template set.
DocFlex/XML RE is a reduced edition of DocFlex/XML, which is a tool for programming and running highly sophisticated documentation and reports generators by the data obtained from any kind of XML files. The actual doc-generators are implemented in the form of special templates that are designed visually using a high quality Template Designer GUI basing on the XML schema (or DTD) files describing the data source XML.
DocFlex/XML XSDDoc is a commercial template application of DocFlex/XML that implements a high-end XML Schema documentation generator with simultaneous support of framed multi-file HTML, single-file HTML and RTF output formats. (More formats are planned in the future).
A commercial license for "DocFlex/XML XSDDoc" will allow you:
  • To configure the generated documentation so much as you want. Thanks to our template technology, it was possible to support more than 300 template parameters (working the same as "options" of an ordinary doc-gen), which will give you an unprecedented control over the generated content!
  • To use certain features disabled in the free mode (such as the full documenting of substitution groups).
  • To enable/disable documenting of the initial, imported, included and redefined XML schemas selectively.
  • To document local element components both globally and locally (similar to attributes).
  • To enable/disable reproducing of namespace prefixes.
  • To format your annotations with XHTML tags and reproduce that formatting both in HTML and RTF output.
  • To insert images in your annotations using XHTML <img> tags (supported both in HTML and RTF output).
  • To use PlainDoc.tpl main template to generate all the XML schema documentation in the form of a single HTML file.
  • To use the same template to generate the incredible quality RTF documentation.
  • To document only selected XML schema components specified by name.
  • To remove this very advertisement text
Once having only such a license, you will be able to run the fully-featured XML schema documentation generator both with DocFlex/XML SDK and with DocFlex/XML RE, which is a reduced free edition containing only the template interpretor / output generator. No other licenses will be required!
But this is not all. In addition to it, a commercial license for DocFlex/XML SDK will allow you to modify the XSDDoc templates themselves as much as you want. You will be able to achieve whatever was impossible to do with the template parameters only. And, of course, you could develop any template applications by your own!
Please note: By purchasing a license for this software, you not only acquire a useful tool, you will also make an important investment in its future development, the result of which you could enjoy later by yourself. Every single your purchase matters and makes a difference for us!
To buy a license, please follow this link: http://www.filigris.com/shop/