blob: 5b782803b55e70da3fb3f0f96c484576da593aff [file] [log] [blame]
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Schema documentation for driver.xsd</title>
<link rel="stylesheet" href="xsdDocHtml.css" type="text/css" /><script type="text/javascript">
<!--
var propertiesBoxes= new Array('properties_id0',
'properties_id1',
'properties_id2',
'properties_id4',
'properties_id7',
'properties_id3',
'properties_id5',
'properties_id6',
'properties_id8',
'properties_id9',
'properties_id10');
var usedByBoxes= new Array('usedBy_id2',
'usedBy_id4',
'usedBy_id7',
'usedBy_id3',
'usedBy_id5',
'usedBy_id6',
'usedBy_id8',
'usedBy_id9',
'usedBy_id10');
var sourceBoxes= new Array('source_id1',
'source_id2',
'source_id4',
'source_id7',
'source_id3',
'source_id5',
'source_id6',
'source_id8',
'source_id9',
'source_id10');
var instanceBoxes= new Array('instance_id1');
var diagramBoxes= new Array('diagram_id1',
'diagram_id2',
'diagram_id4',
'diagram_id7');
var attributesBoxes= new Array('attributes_id1',
'attributes_id2',
'attributes_id4',
'attributes_id7');
var button_prefix = 'button_';
/**
* Returns an element in the current HTML document.
*
* @param elementID Identifier of HTML element
* @return HTML element object
*/
function getElementObject(elementID) {
var elemObj = null;
if (document.getElementById) {
elemObj = document.getElementById(elementID);
}
return elemObj;
}
/**
* Switches the state of a collapseable box, e.g.
* if it's opened, it'll be closed, and vice versa.
*
* @param boxID Identifier of box
*/
function switchState(boxID) {
var boxObj = getElementObject(boxID);
var buttonObj = getElementObject(button_prefix + boxID);
if (boxObj == null || buttonObj == null) {
// Box or button not found
} else if (boxObj.style.display == "none") {
// Box is closed, so open it
openBox(boxObj, buttonObj);
} else if (boxObj.style.display == "block") {
// Box is opened, so close it
closeBox(boxObj, buttonObj);
}
}
/**
* Opens a collapseable box.
*
* @param boxObj Collapseable box
* @param buttonObj Button controlling box
*/
function openBox(boxObj, buttonObj) {
if (boxObj == null || buttonObj == null) {
// Box or button not found
} else {
// Change 'display' CSS property of box
boxObj.style.display = "block";
// Change text of button
if (boxObj.style.display == "block") {
buttonObj.src = "images/button_minus.gif";
}
}
}
/**
* Closes a collapseable box.
*
* @param boxObj Collapseable box
* @param buttonObj Button controlling box
*/
function closeBox(boxObj, buttonObj) {
if (boxObj == null || buttonObj == null) {
// Box or button not found
} else {
// Change 'display' CSS property of box
boxObj.style.display = "none";
// Change text of button
if (boxObj.style.display == "none") {
buttonObj.src = "images/button_plus.gif";
}
}
}
function switchStateForAll(buttonObj, boxList) {
if (buttonObj == null) {
// button not found
} else if (buttonObj.value == "+") {
// Expand all
expandAll(boxList);
buttonObj.value = "-";
} else if (buttonObj.value == "-") {
// Collapse all
collapseAll(boxList);
buttonObj.value = "+";
}
}
/**
* Closes all boxes in a given list.
*
* @param boxList Array of box IDs
*/
function collapseAll(boxList) {
var idx;
for (idx = 0; idx < boxList.length; idx++) {
var boxObj = getElementObject(boxList[idx]);
var buttonObj = getElementObject(button_prefix + boxList[idx]);
closeBox(boxObj, buttonObj);
}
}
/**
* Open all boxes in a given list.
*
* @param boxList Array of box IDs
*/
function expandAll(boxList) {
var idx;
for (idx = 0; idx < boxList.length; idx++) {
var boxObj = getElementObject(boxList[idx]);
var buttonObj = getElementObject(button_prefix + boxList[idx]);
openBox(boxObj, buttonObj);
}
}
/**
* Update the message presented in the title of the html page.
* - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
* - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
* - If no split we always present: "Documentation for 'MainSchema.xsd'"
*/
function updatePageTitle(message) {
top.document.title = message;
}
/**
* Finds an HTML element by its ID and makes it floatable over the normal content.
*
* @param x_displacement The difference in pixels to the right side of the window from
* the left side of the element.
* @param y_displacement The difference in pixels to the right side of the window from
* the top of the element.
*/
function findAndFloat(id, x_displacement, y_displacement){
var element = getElementObject(id);
window[id + "_obj"] = element;
if(document.layers) {
element.style = element;
}
element.current_y = y_displacement;
element.first_time = true;
element.floatElement = function(){
// It may be closed by an user action.
// Target X and Y coordinates.
var x, y;
var myWidth = 0, myHeight = 0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
x = myWidth - x_displacement;
var ns = (navigator.appName.indexOf("Netscape") != -1);
y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ?
document.documentElement.scrollTop : document.body.scrollTop;
y = y + y_displacement;
// The current y is the current coordinate of the floating element.
// This should be at the limit the y target coordinate.
this.current_y += (y - this.current_y)/1.25;
// Add the pixels constant after the values
// and move the element.
var px = document.layers ? "" : "px";
this.style.left = x + px;
this.style.top = this.current_y + px;
setTimeout(this.id + "_obj.floatElement()", 100);
}
element.floatElement();
return element;
}
/**
* Finds an HTML element by its ID and makes it floatable over the normal content.
*
* @param x_displacement The difference in pixels to the right side of the window from
* the left side of the element.
* @param y_displacement The difference in pixels to the right side of the window from
* the top of the element.
*/
function selectTOCGroupBy(id){
var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
// Make all the tabs invisible.
for (i = 0; i < 3; i++){
var tab = getElementObject(selectIds[i]);
tab.style.display = 'none';
}
var selTab = getElementObject(id);
selTab.style.display = 'block';
}
--></script></head>
<body>
<div id="global_controls" class="globalControls" style="position:absolute;right:0;">
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<h3>Showing:</h3>
<table>
<tr>
<td><span><input type="checkbox" value="-" checked="checked"
onclick="switchStateForAll(this, attributesBoxes);"
class="control" /></span><span class="globalControlName">Attributes </span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked"
onclick="switchStateForAll(this, diagramBoxes);"
class="control" /></span><span class="globalControlName">Diagrams</span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked"
onclick="switchStateForAll(this, instanceBoxes);"
class="control" /></span><span class="globalControlName">Instances</span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked"
onclick="switchStateForAll(this, propertiesBoxes);"
class="control" /></span><span class="globalControlName">Properties </span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked"
onclick="switchStateForAll(this, sourceBoxes);"
class="control" /></span><span class="globalControlName">Source</span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked"
onclick="switchStateForAll(this, usedByBoxes);"
class="control" /></span><span class="globalControlName">Used by </span></td>
</tr>
</table>
<div align="right"><span><input type="button"
onclick="getElementObject('global_controls').style.display = 'none';"
value="Close" /></span></div>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
</div>
<h2><a id="INDEX">Table of Contents</a></h2>
<div class="toc">
<form action="none">
<div><span> Group by:
<select id="selectTOC"
onchange="selectTOCGroupBy(this.options[this.selectedIndex].value);">
<option value="toc_group_by_namespace" selected="selected">Namespace</option>
<option value="toc_group_by_location">Location</option>
<option value="toc_group_by_component_type">Component Type</option></select></span></div>
</form>
<div class="level1" id="toc_group_by_namespace" style="display:block">
<div>
<div class="level2">
<p><input id="button_boxIdNamespace1" type="image" value="-"
src="images/button_minus.gif"
onclick="switchState('boxIdNamespace1');"
class="control" /><span class="indexGroupTitle">http://cayenne.apache.org/schema/3.0/driver</span></p>
<div id="boxIdNamespace1" style="display:block">
<div class="horizontalLayout">
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<div class="componentGroupTitle">Elements
</div>
<div id="boxIdNamespace1Element" style="display:block">
<div><b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool</a></b></div>
<div><b><a href="driver.html#id1" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:driver</a></b></div>
<div><b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login</a></b></div>
<div><b><a href="driver.html#id2" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:url</a></b></div>
</div>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
</div>
<div style="clear:left"></div>
</div>
</div>
</div>
</div>
<div class="level1" id="toc_group_by_component_type" style="display:none">
<div>
<div class="horizontalLayout">
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<div class="componentGroupTitle">Elements
</div>
<div id="Element" style="display:block">
<div><b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool</a></b></div>
<div><b><a href="driver.html#id1" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:driver</a></b></div>
<div><b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login</a></b></div>
<div><b><a href="driver.html#id2" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:url</a></b></div>
</div>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
</div>
<div style="clear:left"></div>
</div>
</div>
<div class="level1" id="toc_group_by_location" style="display:none">
<div>
<div class="level2">
<p><input id="button_driver.xsd" type="image" value="-" src="images/button_minus.gif"
onclick="switchState('driver.xsd');"
class="control" /><span class="indexGroupTitle">driver.xsd</span></p>
<div id="driver.xsd" style="display:block">
<div class="horizontalLayout">
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<div class="componentGroupTitle">Elements
</div>
<div id="driver.xsdElement" style="display:block">
<div><b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool</a></b></div>
<div><b><a href="driver.html#id1" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:driver</a></b></div>
<div><b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login</a></b></div>
<div><b><a href="driver.html#id2" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:url</a></b></div>
</div>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
</div>
<div style="clear:left"></div>
</div>
</div>
</div>
</div>
</div><a id="id0"></a><div class="componentTitle">Main schema <span class="qname">driver.xsd</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>http://cayenne.apache.org/schema/3.0/driver</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id0" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id0');"
class="control" /></div>
</td>
<td>
<div id="properties_id0" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">attribute form default:
</td>
<td><b>unqualified</b></td>
</tr>
<tr>
<td class="firstColumn">element form default:
</td>
<td><b>qualified</b></td>
</tr>
<tr>
<td class="firstColumn">version:
</td>
<td><b>3</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id1"></a><div class="componentTitle">Element <span class="qname">cay:driver</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>http://cayenne.apache.org/schema/3.0/driver</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Diagram</b></div>
<div class="floatRight"><input id="button_diagram_id1" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('diagram_id1');"
class="control" /></div>
</td>
<td class="diagram">
<div id="diagram_id1" style="display:block"><img alt="Diagram" border="0" src="images/driver.html2.png"
usemap="#driver_46_html2" /><map name="driver_46_html2" id="driver_46_html2">
<area alt="driver.tmp#id10" href="driver.html#id10" coords="105,40,169,64" />
<area alt="driver.tmp#id2" href="driver.html#id2" coords="162,81,229,105" />
<area alt="driver.tmp#id4" href="driver.html#id4" coords="162,115,297,139" />
<area alt="driver.tmp#id7" href="driver.html#id7" coords="162,149,241,173" /></map></div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id1" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id1');"
class="control" /></div>
</td>
<td>
<div id="properties_id1" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">content:
</td>
<td><b>complex</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Model</b></td>
<td><b><a href="driver.html#id2" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:url</a></b> , <b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool{0,1}</a></b> , <b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login{0,1}</a></b></td>
</tr>
<tr>
<td class="firstColumn"><b>Children</b></td>
<td><b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool</a></b>, <b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login</a></b>, <b><a href="driver.html#id2" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:url</a></b></td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Instance</b></div>
<div class="floatRight"><input id="button_instance_id1" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('instance_id1');"
class="control" /></div>
</td>
<td>
<div id="instance_id1" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;cay:driver</span><span class="tokenText"> </span><span class="tokenAttrName">class=</span><span class="tokenAttrValue">""</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;cay:url</span><span class="tokenText"> </span><span class="tokenAttrName">value=</span><span class="tokenAttrValue">""</span><span class="tokenElement">&gt;</span><span class="tokenText" style="white-space:normal">{1,1}</span><span class="tokenElement">&lt;/cay:url&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;cay:connectionPool</span><span class="tokenText"> </span><span class="tokenAttrName">max=</span><span class="tokenAttrValue">""</span><span class="tokenText"> </span><span class="tokenAttrName">min=</span><span class="tokenAttrValue">""</span><span class="tokenElement">&gt;</span><span class="tokenText" style="white-space:normal">{0,1}</span><span class="tokenElement">&lt;/cay:connectionPool&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;cay:login</span><span class="tokenText"> </span><span class="tokenAttrName">password=</span><span class="tokenAttrValue">""</span><span class="tokenText"> </span><span class="tokenAttrName">userName=</span><span class="tokenAttrValue">""</span><span class="tokenElement">&gt;</span><span class="tokenText" style="white-space:normal">{0,1}</span><span class="tokenElement">&lt;/cay:login&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/cay:driver&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Attributes</b></div>
<div class="floatRight"><input id="button_attributes_id1" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('attributes_id1');"
class="control" /></div>
</td>
<td>
<div id="attributes_id1" style="display:block">
<table class="attributesTable">
<thead>
<tr>
<th>QName</th>
<th>Type</th>
<th>Fixed</th>
<th>Default</th>
<th>Use</th>
<th>Annotation</th>
</tr>
</thead>
<tr>
<td class="firstColumn"><b><a href="driver.html#id10" target="_self" title="No namespace">class</a></b></td>
<td></td>
<td></td>
<td></td>
<td>required</td>
<td>
<div class="annotation"></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id1" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id1');"
class="control" /></div>
</td>
<td>
<div id="source_id1" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:element</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"driver"</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:complexType</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:sequence</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:element</span><span class="tokenAttrName"> ref=</span><span class="tokenAttrValue">"cay:url"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:element</span><span class="tokenAttrName"> minOccurs=</span><span class="tokenAttrValue">"0"</span><span class="tokenAttrName"> ref=</span><span class="tokenAttrValue">"cay:connectionPool"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:element</span><span class="tokenAttrName"> minOccurs=</span><span class="tokenAttrValue">"0"</span><span class="tokenAttrName"> ref=</span><span class="tokenAttrValue">"cay:login"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:sequence&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"class"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:complexType&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:element&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id2"></a><div class="componentTitle">Element <span class="qname">cay:url</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>http://cayenne.apache.org/schema/3.0/driver</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Diagram</b></div>
<div class="floatRight"><input id="button_diagram_id2" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('diagram_id2');"
class="control" /></div>
</td>
<td class="diagram">
<div id="diagram_id2" style="display:block"><img alt="Diagram" border="0" src="images/driver.html3.png"
usemap="#driver_46_html3" /><map name="driver_46_html3" id="driver_46_html3">
<area alt="driver.tmp#id3" href="driver.html#id3" coords="97,40,162,64" /></map></div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id2" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id2');"
class="control" /></div>
</td>
<td>
<div id="properties_id2" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">content:
</td>
<td><b>complex</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id2" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id2');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id2" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id1" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:driver</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Attributes</b></div>
<div class="floatRight"><input id="button_attributes_id2" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('attributes_id2');"
class="control" /></div>
</td>
<td>
<div id="attributes_id2" style="display:block">
<table class="attributesTable">
<thead>
<tr>
<th>QName</th>
<th>Type</th>
<th>Fixed</th>
<th>Default</th>
<th>Use</th>
<th>Annotation</th>
</tr>
</thead>
<tr>
<td class="firstColumn"><b><a href="driver.html#id3" target="_self" title="No namespace">value</a></b></td>
<td></td>
<td></td>
<td></td>
<td>required</td>
<td>
<div class="annotation"></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id2" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id2');"
class="control" /></div>
</td>
<td>
<div id="source_id2" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:element</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"url"</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:complexType</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"value"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:complexType&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:element&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id4"></a><div class="componentTitle">Element <span class="qname">cay:connectionPool</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>http://cayenne.apache.org/schema/3.0/driver</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Diagram</b></div>
<div class="floatRight"><input id="button_diagram_id4" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('diagram_id4');"
class="control" /></div>
</td>
<td class="diagram">
<div id="diagram_id4" style="display:block"><img alt="Diagram" border="0" src="images/driver.html1.png"
usemap="#driver_46_html1" /><map name="driver_46_html1" id="driver_46_html1">
<area alt="driver.tmp#id5" href="driver.html#id5" coords="156,40,217,64" />
<area alt="driver.tmp#id6" href="driver.html#id6" coords="156,74,217,98" /></map></div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id4" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id4');"
class="control" /></div>
</td>
<td>
<div id="properties_id4" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">content:
</td>
<td><b>complex</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id4" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id4');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id4" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id1" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:driver</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Attributes</b></div>
<div class="floatRight"><input id="button_attributes_id4" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('attributes_id4');"
class="control" /></div>
</td>
<td>
<div id="attributes_id4" style="display:block">
<table class="attributesTable">
<thead>
<tr>
<th>QName</th>
<th>Type</th>
<th>Fixed</th>
<th>Default</th>
<th>Use</th>
<th>Annotation</th>
</tr>
</thead>
<tr>
<td class="firstColumn"><b><a href="driver.html#id6" target="_self" title="No namespace">max</a></b></td>
<td></td>
<td></td>
<td></td>
<td>required</td>
<td>
<div class="annotation"></div>
</td>
</tr>
<tr>
<td class="firstColumn"><b><a href="driver.html#id5" target="_self" title="No namespace">min</a></b></td>
<td></td>
<td></td>
<td></td>
<td>required</td>
<td>
<div class="annotation"></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id4" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id4');"
class="control" /></div>
</td>
<td>
<div id="source_id4" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:element</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"connectionPool"</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:complexType</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"min"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"max"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:complexType&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:element&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id7"></a><div class="componentTitle">Element <span class="qname">cay:login</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>http://cayenne.apache.org/schema/3.0/driver</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Diagram</b></div>
<div class="floatRight"><input id="button_diagram_id7" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('diagram_id7');"
class="control" /></div>
</td>
<td class="diagram">
<div id="diagram_id7" style="display:block"><img alt="Diagram" border="0" src="images/driver.html0.png"
usemap="#driver_46_html0" /><map name="driver_46_html0" id="driver_46_html0">
<area alt="driver.tmp#id8" href="driver.html#id8" coords="100,40,191,64" />
<area alt="driver.tmp#id9" href="driver.html#id9" coords="100,74,189,98" /></map></div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id7" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id7');"
class="control" /></div>
</td>
<td>
<div id="properties_id7" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">content:
</td>
<td><b>complex</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id7" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id7');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id7" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id1" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:driver</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Attributes</b></div>
<div class="floatRight"><input id="button_attributes_id7" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('attributes_id7');"
class="control" /></div>
</td>
<td>
<div id="attributes_id7" style="display:block">
<table class="attributesTable">
<thead>
<tr>
<th>QName</th>
<th>Type</th>
<th>Fixed</th>
<th>Default</th>
<th>Use</th>
<th>Annotation</th>
</tr>
</thead>
<tr>
<td class="firstColumn"><b><a href="driver.html#id9" target="_self" title="No namespace">password</a></b></td>
<td></td>
<td></td>
<td></td>
<td>required</td>
<td>
<div class="annotation"></div>
</td>
</tr>
<tr>
<td class="firstColumn"><b><a href="driver.html#id8" target="_self" title="No namespace">userName</a></b></td>
<td></td>
<td></td>
<td></td>
<td>required</td>
<td>
<div class="annotation"></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id7" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id7');"
class="control" /></div>
</td>
<td>
<div id="source_id7" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:element</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"login"</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:complexType</span><span class="tokenElement">&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"userName"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"password"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:complexType&gt;</span><span class="tokenIndent">
</span><span class="tokenElement">&lt;/xs:element&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id3"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="driver.html#id2" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:url</a></b> / @value</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>No namespace</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id3" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id3');"
class="control" /></div>
</td>
<td>
<div id="properties_id3" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">use:
</td>
<td><b>required</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id3" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id3');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id3" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id2" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:url</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id3" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id3');"
class="control" /></div>
</td>
<td>
<div id="source_id3" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"value"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id5"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool</a></b> / @min</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>No namespace</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id5" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id5');"
class="control" /></div>
</td>
<td>
<div id="properties_id5" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">use:
</td>
<td><b>required</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id5" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id5');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id5" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id5" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id5');"
class="control" /></div>
</td>
<td>
<div id="source_id5" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"min"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id6"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool</a></b> / @max</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>No namespace</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id6" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id6');"
class="control" /></div>
</td>
<td>
<div id="properties_id6" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">use:
</td>
<td><b>required</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id6" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id6');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id6" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id4" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:connectionPool</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id6" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id6');"
class="control" /></div>
</td>
<td>
<div id="source_id6" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"max"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id8"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login</a></b> / @userName</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>No namespace</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id8" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id8');"
class="control" /></div>
</td>
<td>
<div id="properties_id8" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">use:
</td>
<td><b>required</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id8" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id8');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id8" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id8" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id8');"
class="control" /></div>
</td>
<td>
<div id="source_id8" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"userName"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id9"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login</a></b> / @password</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>No namespace</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id9" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('properties_id9');"
class="control" /></div>
</td>
<td>
<div id="properties_id9" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">use:
</td>
<td><b>required</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id9" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id9');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id9" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id7" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:login</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id9" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id9');"
class="control" /></div>
</td>
<td>
<div id="source_id9" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"password"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div><a id="id10"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="driver.html#id1" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:driver</a></b> / @class</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>No namespace</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_id10" type="image" src="images/button_minus.gif"
value="-"
onclick="switchState('properties_id10');"
class="control" /></div>
</td>
<td>
<div id="properties_id10" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn">use:
</td>
<td><b>required</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Used by</b></div>
<div class="floatRight"><input id="button_usedBy_id10" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('usedBy_id10');"
class="control" /></div>
</td>
<td>
<div id="usedBy_id10" style="display:block">
<table class="usedByTable">
<tr>
<td class="firstColumn">Element </td>
<td><b><a href="driver.html#id1" target="_self"
title="http://cayenne.apache.org/schema/3.0/driver">cay:driver</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_id10" type="image" src="images/button_minus.gif" value="-"
onclick="switchState('source_id10');"
class="control" /></div>
</td>
<td>
<div id="source_id10" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;"
class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tokenElement">&lt;xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"class"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenElement">/&gt;</span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Schema location</b></td>
<td>file:/Users/ari/svn/cayenne-site/content/schema/3.0/driver.xsd</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="toTop"><a href="#INDEX"> [ top ] </a></div>
<div class="footer">
<hr />
<div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX">&lt;</span>o<span class="redX">X</span>ygen<span class="redX">/&gt;</span></span></a><sup>®</sup> XML Editor.
</div>
</div><script type="text/javascript">
<!--
// The namespace is the selected option in the TOC combo.
// The corresponding div is already visible conf. to its style attr.
// Floats the toolbar.
var globalControls = getElementObject("global_controls");
if(globalControls != null){
var browser=navigator.appName;
var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
var IE6 = false;
if ((browser=="Microsoft Internet Explorer") && (version < 7)){
IE6 = true;
}
//alert (IE6 + " |V| " + version);
if(IE6){
// On IE 6 the 'fixed' property is not supported. We must use javascript.
globalControls.style.position='absolute';
// The global controls will do not exist in the TOC frame, when chunking.
findAndFloat("global_controls", 225, 30);
} else {
globalControls.style.position='fixed';
}
globalControls.style.right='0';
}
--></script></body>
</html>