/**
 *
 * Copyright (c) 2002-2004 Bluetetra Software.  All rights reserved.
 *
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL BLUETETRA SOFTWARE BE LIABLE FOR 
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 
 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 
 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 
 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *  
 * http://www.bluetetra.com
 *
 */

var target = "content";
var ciFileName = "componentIndex.htm";
var nsFilterFileName = "nsFilter.htm";

function CN (href, name, appendNSFlag, children) {
	this.href = href;
	this.name = name;
	this.appendNSFlag = appendNSFlag;

	this.children = children;
	this.hasChild = (children != null) && (children.length>0);	
	
	this.namespace = null;
}

function C (attributeList, attributeGroupList,
						simpleTypeList, complexTypeList,
						modelGroupList, elementList, 
						notationList) 
{
	this.attributes = attributeList;
	this.attributegroups = attributeGroupList;
	this.simpletypes = simpleTypeList;
	this.complextypes = complexTypeList;
	this.modelgroups = modelGroupList;
	this.elements = elementList;
	this.notations = notationList;
}

function component_showAllComponents() {
	parent._nsFilter = null;
	parent.componentIndex.location.href=ciFileName;
}

function component_filterComponents () {
	parent._href = ciFileName;
	window.open(nsFilterFileName, "_blank", 
		"height=200,width=400,location=no,menubar=no,scrollbars=yes,status=yes,resizable=yes,toolbar=no");

}

function component_groupByNS (flag) {
	parent._groupByNSFlag = flag;
	parent.componentIndex.location.href=ciFileName;	
}

function component_setFilterToAll() {
	var nsList = new Array();
	var i = 0;

	for (var ns in componentDB) {
		nsList[i] = ns; 		
		i++;
	}

	parent._nsFilter = nsList;
}

function component_showComponentsNoNS (nsList, componentList) {

	var components = new Array ();
	var n = 0;

	for (var i=0; i<componentList.length; i++) {
		var list = componentList [i];
		var namespace = nsList[i];

		if (list == null) {
			continue;
		}
	
		for (var j=0; j<list.length; j++) {
			components[n] = list[j];
			components[n].namespace = namespace;
			n++;	
		}	
	}
	
	components = components.sort(function (n1,n2) {return n1.name.toLowerCase().localeCompare (n2.name.toLowerCase());});

	component_outputList (null, components);	
}


function component_showComponentsNS (nsList, componentList) {

	for (var i=0; i<componentList.length; i++) {
		var list = componentList [i];
		var namespace = nsList[i];

		if (list == null) {
			continue;
		}
	
		for (var j=0; j<list.length; j++) {
			list[j].namespace = namespace;
		}	

		component_outputList (namespace, list);	
	}
}


function component_showComponents (nsList, componentList) {
	if (parent._groupByNSFlag) {
		component_showComponentsNS (nsList, componentList)
	} else {
		component_showComponentsNoNS (nsList, componentList)
	}
}

function component_showAttributes() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var attributes = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		attributes [i] = componentDB [nsList[i]].attributes;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, attributes);
}

function component_showAttributeGroups() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var attributegroups = new Array();
	var nss = new Array();		

	for (var i=0; i<nsList.length; i++) {
		attributegroups [i] = componentDB [nsList[i]].attributegroups;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, attributegroups);
}

function component_showSimpleTypes() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var simpletypes = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		simpletypes [i] = componentDB [nsList[i]].simpletypes;	
		nss [i] = nsList[i];
	}		

	component_showComponents (nss, simpletypes);
}

function component_showComplexTypes() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var complextypes = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		complextypes [i] = componentDB [nsList[i]].complextypes;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, complextypes);
}

function component_showElements() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var elements = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		elements [i] = componentDB [nsList[i]].elements;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, elements);
}

function component_showModelGroups() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var modelgroups = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		modelgroups [i] = componentDB [nsList[i]].modelgroups;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, modelgroups);
}

function component_showNotations() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var notations = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		notations [i] = componentDB [nsList[i]].notations;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, notations);

}


function component_getNodeText(node) {
	if (node.appendNSFlag) {
		return node.name + "("+encodeURI(node.namespace)+")";
	} else {
		return node.name;
	} 
}

function component_outputLeaf (node) {
	var str = '<span class="leaf">'+
			  '<nobr><img src="img/leaf.gif" hspace="2" align="middle">'+
			  '<a class="chref" href="'+node.href+
			  '" title="'+component_getNodeText(node)+
			  '" target="'+target+'">'+component_getNodeText(node)+'</a></nobr>'+
			  '</span><br />'
	
	document.write (str);
}

function component_outputNonLeaf (node) {
	//initially, the childnodes are hidden

	var str = '<div><div class="nonleaf">'+
			'<nobr><img style="cursor: pointer" src="img/plus.gif" hspace="2" align="middle" onclick="IClick(this)">'+
			'<a class="chref" href="'+node.href+
			'" title="'+component_getNodeText(node)+
			'" target="'+target+'">'+component_getNodeText(node)+'</a></nobr></div>'+
			'<div style="display:none;margin-left: 0.8em">';

	document.write (str);

	var childs = node.children;
	for (var i=0; i<childs.length; i++) {
		component_outputTree (childs[i]);
	}					

	document.write ('</div></div>');
}

function component_outputTree (node) {
	if (node.hasChild == false) {
		component_outputLeaf (node);
	} else {
		component_outputNonLeaf (node);
	}
}

function component_outputList (ns, list) {	
	
	if (list == null || list.length<=0) {
		return;
	}

	if (parent._groupByNSFlag) {
		var fpath = componentNSMap[ns];

		var str = '<div class="nsBox"><div class="itemNS">'+
				'<nobr><img style="cursor: pointer" src="img/minus.gif" hspace="2" align="middle" onclick="IClick(this)">'+
				'<a class="chref" href="'+fpath+
				'" title="'+encodeURI(ns)+
				'" target="'+target+'">'+encodeURI(ns)+'</a></nobr></div>'+
				'<div style="margin-left: 0.5em">';

		document.write (str);
	}

	for (var i=0; i<list.length; i++) {
		component_outputTree (list[i]);
	}
	
	if (parent._groupByNSFlag) {
		document.write ('</div></div>');
	}
}


var componentDB = new Array();
var componentNSMap = new Array();

componentDB ["http://www.w3.org/2000/09/xmldsig#"] =  new C (new Array(),
					new Array(),
					new Array(new CN("http___www_w3_org_2000_09_xmldsig_/simpletype/CryptoBinary.htm#simpleTypeDefinition_CryptoBinary","CryptoBinary",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/simpletype/DigestValueType.htm#simpleTypeDefinition_DigestValueType","DigestValueType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/simpletype/HMACOutputLengthType.htm#simpleTypeDefinition_HMACOutputLengthType","HMACOutputLengthType",false,null)),
					new Array(new CN("http___www_w3_org_2000_09_xmldsig_/complextype/CanonicalizationMethodType.htm#complexTypeDefinition_CanonicalizationMethodType","CanonicalizationMethodType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/DigestMethodType.htm#complexTypeDefinition_DigestMethodType","DigestMethodType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/DSAKeyValueType.htm#complexTypeDefinition_DSAKeyValueType","DSAKeyValueType",false,new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/0_DSAKeyValueType_P0.htm#localElementDeclaration_P","P",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_DSAKeyValueType_Q0.htm#localElementDeclaration_Q","Q",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_DSAKeyValueType_G0.htm#localElementDeclaration_G","G",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_DSAKeyValueType_Y0.htm#localElementDeclaration_Y","Y",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_DSAKeyValueType_J0.htm#localElementDeclaration_J","J",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_DSAKeyValueType_Seed0.htm#localElementDeclaration_Seed","Seed",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_DSAKeyValueType_PgenCounter0.htm#localElementDeclaration_PgenCounter","PgenCounter",false,null))),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/KeyInfoType.htm#complexTypeDefinition_KeyInfoType","KeyInfoType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/KeyValueType.htm#complexTypeDefinition_KeyValueType","KeyValueType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/ManifestType.htm#complexTypeDefinition_ManifestType","ManifestType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/ObjectType.htm#complexTypeDefinition_ObjectType","ObjectType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/PGPDataType.htm#complexTypeDefinition_PGPDataType","PGPDataType",false,new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/0_PGPKeyID0.htm#localElementDeclaration_PGPKeyID","PGPKeyID",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_PGPKeyPacket0.htm#localElementDeclaration_PGPKeyPacket","PGPKeyPacket",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_PGPKeyPacket1.htm#localElementDeclaration_PGPKeyPacket","PGPKeyPacket",false,null))),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/ReferenceType.htm#complexTypeDefinition_ReferenceType","ReferenceType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/RetrievalMethodType.htm#complexTypeDefinition_RetrievalMethodType","RetrievalMethodType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/RSAKeyValueType.htm#complexTypeDefinition_RSAKeyValueType","RSAKeyValueType",false,new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/0_RSAKeyValueType_Modulus0.htm#localElementDeclaration_Modulus","Modulus",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_RSAKeyValueType_Exponent0.htm#localElementDeclaration_Exponent","Exponent",false,null))),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/SignatureMethodType.htm#complexTypeDefinition_SignatureMethodType","SignatureMethodType",false,new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/0_SignatureMethodType_HMACOutputLength0.htm#localElementDeclaration_HMACOutputLength","HMACOutputLength",false,null))),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/SignaturePropertiesType.htm#complexTypeDefinition_SignaturePropertiesType","SignaturePropertiesType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/SignaturePropertyType.htm#complexTypeDefinition_SignaturePropertyType","SignaturePropertyType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/SignatureType.htm#complexTypeDefinition_SignatureType","SignatureType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/SignatureValueType.htm#complexTypeDefinition_SignatureValueType","SignatureValueType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/SignedInfoType.htm#complexTypeDefinition_SignedInfoType","SignedInfoType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/SPKIDataType.htm#complexTypeDefinition_SPKIDataType","SPKIDataType",false,new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/0_SPKISexp0.htm#localElementDeclaration_SPKISexp","SPKISexp",false,null))),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/TransformsType.htm#complexTypeDefinition_TransformsType","TransformsType",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/TransformType.htm#complexTypeDefinition_TransformType","TransformType",false,new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/0_XPath0.htm#localElementDeclaration_XPath","XPath",false,null))),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/X509DataType.htm#complexTypeDefinition_X509DataType","X509DataType",false,new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/0_X509IssuerSerial0.htm#localElementDeclaration_X509IssuerSerial","X509IssuerSerial",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_X509SKI0.htm#localElementDeclaration_X509SKI","X509SKI",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_X509SubjectName0.htm#localElementDeclaration_X509SubjectName","X509SubjectName",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_X509Certificate0.htm#localElementDeclaration_X509Certificate","X509Certificate",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_X509CRL0.htm#localElementDeclaration_X509CRL","X509CRL",false,null))),new CN("http___www_w3_org_2000_09_xmldsig_/complextype/X509IssuerSerialType.htm#complexTypeDefinition_X509IssuerSerialType","X509IssuerSerialType",false,new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/0_X509IssuerSerialType_X509IssuerName0.htm#localElementDeclaration_X509IssuerName","X509IssuerName",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/0_X509IssuerSerialType_X509SerialNumber0.htm#localElementDeclaration_X509SerialNumber","X509SerialNumber",false,null)))),
					new Array(),
					new Array(new CN("http___www_w3_org_2000_09_xmldsig_/element/CanonicalizationMethod.htm#elementDeclaration_CanonicalizationMethod","CanonicalizationMethod",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/DigestMethod.htm#elementDeclaration_DigestMethod","DigestMethod",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/DigestValue.htm#elementDeclaration_DigestValue","DigestValue",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/DSAKeyValue.htm#elementDeclaration_DSAKeyValue","DSAKeyValue",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/KeyInfo.htm#elementDeclaration_KeyInfo","KeyInfo",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/KeyName.htm#elementDeclaration_KeyName","KeyName",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/KeyValue.htm#elementDeclaration_KeyValue","KeyValue",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/Manifest.htm#elementDeclaration_Manifest","Manifest",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/MgmtData.htm#elementDeclaration_MgmtData","MgmtData",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/Object.htm#elementDeclaration_Object","Object",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/PGPData.htm#elementDeclaration_PGPData","PGPData",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/Reference.htm#elementDeclaration_Reference","Reference",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/RetrievalMethod.htm#elementDeclaration_RetrievalMethod","RetrievalMethod",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/RSAKeyValue.htm#elementDeclaration_RSAKeyValue","RSAKeyValue",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/Signature.htm#elementDeclaration_Signature","Signature",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/SignatureMethod.htm#elementDeclaration_SignatureMethod","SignatureMethod",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/SignatureProperties.htm#elementDeclaration_SignatureProperties","SignatureProperties",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/SignatureProperty.htm#elementDeclaration_SignatureProperty","SignatureProperty",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/SignatureValue.htm#elementDeclaration_SignatureValue","SignatureValue",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/SignedInfo.htm#elementDeclaration_SignedInfo","SignedInfo",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/SPKIData.htm#elementDeclaration_SPKIData","SPKIData",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/Transform.htm#elementDeclaration_Transform","Transform",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/Transforms.htm#elementDeclaration_Transforms","Transforms",false,null),new CN("http___www_w3_org_2000_09_xmldsig_/element/X509Data.htm#elementDeclaration_X509Data","X509Data",false,null)),
					new Array());

componentNSMap ["http://www.w3.org/2000/09/xmldsig#"] = "http___www_w3_org_2000_09_xmldsig_/index.htm";
componentDB ["http://www.w3.org/XML/1998/namespace"] =  new C (new Array(new CN("http___www_w3_org_XML_1998_namespace/attribute/base.htm#attributeDeclaration_base","base",false,null),new CN("http___www_w3_org_XML_1998_namespace/attribute/lang.htm#attributeDeclaration_lang","lang",false,null),new CN("http___www_w3_org_XML_1998_namespace/attribute/space.htm#attributeDeclaration_space","space",false,null)),
					new Array(new CN("http___www_w3_org_XML_1998_namespace/attributegroup/specialAttrs.htm#attributeDeclaration_specialAttrs","specialAttrs",false,null)),
					new Array(),
					new Array(),
					new Array(),
					new Array(),
					new Array());

componentNSMap ["http://www.w3.org/XML/1998/namespace"] = "http___www_w3_org_XML_1998_namespace/index.htm";
componentDB ["urn:uddi-org:api_v3"] =  new C (new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_api_v3/simpletype/bindingKey.htm#simpleTypeDefinition_bindingKey","bindingKey",false,null),new CN("urn_uddi-org_api_v3/simpletype/businessKey.htm#simpleTypeDefinition_businessKey","businessKey",false,null),new CN("urn_uddi-org_api_v3/simpletype/completionStatus.htm#simpleTypeDefinition_completionStatus","completionStatus",false,null),new CN("urn_uddi-org_api_v3/simpletype/deleted.htm#simpleTypeDefinition_deleted","deleted",false,null),new CN("urn_uddi-org_api_v3/simpletype/direction.htm#simpleTypeDefinition_direction","direction",false,null),new CN("urn_uddi-org_api_v3/simpletype/findQualifier.htm#simpleTypeDefinition_findQualifier","findQualifier",false,null),new CN("urn_uddi-org_api_v3/simpletype/infoSelection.htm#simpleTypeDefinition_infoSelection","infoSelection",false,null),new CN("urn_uddi-org_api_v3/simpletype/instanceParms.htm#simpleTypeDefinition_instanceParms","instanceParms",false,null),new CN("urn_uddi-org_api_v3/simpletype/keyName.htm#simpleTypeDefinition_keyName","keyName",false,null),new CN("urn_uddi-org_api_v3/simpletype/keyType.htm#simpleTypeDefinition_keyType","keyType",false,null),new CN("urn_uddi-org_api_v3/simpletype/keyValue.htm#simpleTypeDefinition_keyValue","keyValue",false,null),new CN("urn_uddi-org_api_v3/simpletype/nodeID.htm#simpleTypeDefinition_nodeID","nodeID",false,null),new CN("urn_uddi-org_api_v3/simpletype/serviceKey.htm#simpleTypeDefinition_serviceKey","serviceKey",false,null),new CN("urn_uddi-org_api_v3/simpletype/sortCode.htm#simpleTypeDefinition_sortCode","sortCode",false,null),new CN("urn_uddi-org_api_v3/simpletype/timeInstant.htm#simpleTypeDefinition_timeInstant","timeInstant",false,null),new CN("urn_uddi-org_api_v3/simpletype/tModelKey.htm#simpleTypeDefinition_tModelKey","tModelKey",false,null),new CN("urn_uddi-org_api_v3/simpletype/truncated.htm#simpleTypeDefinition_truncated","truncated",false,null),new CN("urn_uddi-org_api_v3/simpletype/uddiKey.htm#simpleTypeDefinition_uddiKey","uddiKey",false,null),new CN("urn_uddi-org_api_v3/simpletype/useType.htm#simpleTypeDefinition_useType","useType",false,null),new CN("urn_uddi-org_api_v3/simpletype/validationTypeAnyURI4096.htm#simpleTypeDefinition_validationTypeAnyURI4096","validationTypeAnyURI4096",false,null),new CN("urn_uddi-org_api_v3/simpletype/validationTypeString255.htm#simpleTypeDefinition_validationTypeString255","validationTypeString255",false,null),new CN("urn_uddi-org_api_v3/simpletype/validationTypeString4096.htm#simpleTypeDefinition_validationTypeString4096","validationTypeString4096",false,null),new CN("urn_uddi-org_api_v3/simpletype/validationTypeString50.htm#simpleTypeDefinition_validationTypeString50","validationTypeString50",false,null),new CN("urn_uddi-org_api_v3/simpletype/validationTypeString80.htm#simpleTypeDefinition_validationTypeString80","validationTypeString80",false,null),new CN("urn_uddi-org_api_v3/simpletype/validationTypeString8192.htm#simpleTypeDefinition_validationTypeString8192","validationTypeString8192",false,null)),
					new Array(new CN("urn_uddi-org_api_v3/complextype/accessPoint.htm#complexTypeDefinition_accessPoint","accessPoint",false,null),new CN("urn_uddi-org_api_v3/complextype/add_publisherAssertions.htm#complexTypeDefinition_add_publisherAssertions","add_publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/complextype/address.htm#complexTypeDefinition_address","address",false,null),new CN("urn_uddi-org_api_v3/complextype/addressLine.htm#complexTypeDefinition_addressLine","addressLine",false,null),new CN("urn_uddi-org_api_v3/complextype/assertionStatusItem.htm#complexTypeDefinition_assertionStatusItem","assertionStatusItem",false,null),new CN("urn_uddi-org_api_v3/complextype/assertionStatusReport.htm#complexTypeDefinition_assertionStatusReport","assertionStatusReport",false,null),new CN("urn_uddi-org_api_v3/complextype/authToken.htm#complexTypeDefinition_authToken","authToken",false,null),new CN("urn_uddi-org_api_v3/complextype/bindingDetail.htm#complexTypeDefinition_bindingDetail","bindingDetail",false,null),new CN("urn_uddi-org_api_v3/complextype/bindingTemplate.htm#complexTypeDefinition_bindingTemplate","bindingTemplate",false,null),new CN("urn_uddi-org_api_v3/complextype/bindingTemplates.htm#complexTypeDefinition_bindingTemplates","bindingTemplates",false,null),new CN("urn_uddi-org_api_v3/complextype/businessDetail.htm#complexTypeDefinition_businessDetail","businessDetail",false,null),new CN("urn_uddi-org_api_v3/complextype/businessEntity.htm#complexTypeDefinition_businessEntity","businessEntity",false,null),new CN("urn_uddi-org_api_v3/complextype/businessInfo.htm#complexTypeDefinition_businessInfo","businessInfo",false,null),new CN("urn_uddi-org_api_v3/complextype/businessInfos.htm#complexTypeDefinition_businessInfos","businessInfos",false,null),new CN("urn_uddi-org_api_v3/complextype/businessList.htm#complexTypeDefinition_businessList","businessList",false,null),new CN("urn_uddi-org_api_v3/complextype/businessService.htm#complexTypeDefinition_businessService","businessService",false,null),new CN("urn_uddi-org_api_v3/complextype/businessServices.htm#complexTypeDefinition_businessServices","businessServices",false,null),new CN("urn_uddi-org_api_v3/complextype/categoryBag.htm#complexTypeDefinition_categoryBag","categoryBag",false,null),new CN("urn_uddi-org_api_v3/complextype/contact.htm#complexTypeDefinition_contact","contact",false,null),new CN("urn_uddi-org_api_v3/complextype/contacts.htm#complexTypeDefinition_contacts","contacts",false,null),new CN("urn_uddi-org_api_v3/complextype/delete_binding.htm#complexTypeDefinition_delete_binding","delete_binding",false,null),new CN("urn_uddi-org_api_v3/complextype/delete_business.htm#complexTypeDefinition_delete_business","delete_business",false,null),new CN("urn_uddi-org_api_v3/complextype/delete_publisherAssertions.htm#complexTypeDefinition_delete_publisherAssertions","delete_publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/complextype/delete_service.htm#complexTypeDefinition_delete_service","delete_service",false,null),new CN("urn_uddi-org_api_v3/complextype/delete_tModel.htm#complexTypeDefinition_delete_tModel","delete_tModel",false,null),new CN("urn_uddi-org_api_v3/complextype/description.htm#complexTypeDefinition_description","description",false,null),new CN("urn_uddi-org_api_v3/complextype/discard_authToken.htm#complexTypeDefinition_discard_authToken","discard_authToken",false,null),new CN("urn_uddi-org_api_v3/complextype/discoveryURL.htm#complexTypeDefinition_discoveryURL","discoveryURL",false,null),new CN("urn_uddi-org_api_v3/complextype/discoveryURLs.htm#complexTypeDefinition_discoveryURLs","discoveryURLs",false,null),new CN("urn_uddi-org_api_v3/complextype/dispositionReport.htm#complexTypeDefinition_dispositionReport","dispositionReport",false,null),new CN("urn_uddi-org_api_v3/complextype/email.htm#complexTypeDefinition_email","email",false,null),new CN("urn_uddi-org_api_v3/complextype/errInfo.htm#complexTypeDefinition_errInfo","errInfo",false,null),new CN("urn_uddi-org_api_v3/complextype/find_binding.htm#complexTypeDefinition_find_binding","find_binding",false,null),new CN("urn_uddi-org_api_v3/complextype/find_business.htm#complexTypeDefinition_find_business","find_business",false,null),new CN("urn_uddi-org_api_v3/complextype/find_relatedBusinesses.htm#complexTypeDefinition_find_relatedBusinesses","find_relatedBusinesses",false,null),new CN("urn_uddi-org_api_v3/complextype/find_service.htm#complexTypeDefinition_find_service","find_service",false,null),new CN("urn_uddi-org_api_v3/complextype/find_tModel.htm#complexTypeDefinition_find_tModel","find_tModel",false,null),new CN("urn_uddi-org_api_v3/complextype/findQualifiers.htm#complexTypeDefinition_findQualifiers","findQualifiers",false,null),new CN("urn_uddi-org_api_v3/complextype/get_assertionStatusReport.htm#complexTypeDefinition_get_assertionStatusReport","get_assertionStatusReport",false,null),new CN("urn_uddi-org_api_v3/complextype/get_authToken.htm#complexTypeDefinition_get_authToken","get_authToken",false,null),new CN("urn_uddi-org_api_v3/complextype/get_bindingDetail.htm#complexTypeDefinition_get_bindingDetail","get_bindingDetail",false,null),new CN("urn_uddi-org_api_v3/complextype/get_businessDetail.htm#complexTypeDefinition_get_businessDetail","get_businessDetail",false,null),new CN("urn_uddi-org_api_v3/complextype/get_operationalInfo.htm#complexTypeDefinition_get_operationalInfo","get_operationalInfo",false,new Array(new CN("urn_uddi-org_api_v3/element/0_get_operationalInfo_entityKey0.htm#localElementDeclaration_entityKey","entityKey",false,null))),new CN("urn_uddi-org_api_v3/complextype/get_publisherAssertions.htm#complexTypeDefinition_get_publisherAssertions","get_publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/complextype/get_registeredInfo.htm#complexTypeDefinition_get_registeredInfo","get_registeredInfo",false,null),new CN("urn_uddi-org_api_v3/complextype/get_serviceDetail.htm#complexTypeDefinition_get_serviceDetail","get_serviceDetail",false,null),new CN("urn_uddi-org_api_v3/complextype/get_tModelDetail.htm#complexTypeDefinition_get_tModelDetail","get_tModelDetail",false,null),new CN("urn_uddi-org_api_v3/complextype/hostingRedirector.htm#complexTypeDefinition_hostingRedirector","hostingRedirector",false,null),new CN("urn_uddi-org_api_v3/complextype/identifierBag.htm#complexTypeDefinition_identifierBag","identifierBag",false,null),new CN("urn_uddi-org_api_v3/complextype/instanceDetails.htm#complexTypeDefinition_instanceDetails","instanceDetails",false,null),new CN("urn_uddi-org_api_v3/complextype/keyedReference.htm#complexTypeDefinition_keyedReference","keyedReference",false,null),new CN("urn_uddi-org_api_v3/complextype/keyedReferenceGroup.htm#complexTypeDefinition_keyedReferenceGroup","keyedReferenceGroup",false,null),new CN("urn_uddi-org_api_v3/complextype/keysOwned.htm#complexTypeDefinition_keysOwned","keysOwned",false,null),new CN("urn_uddi-org_api_v3/complextype/listDescription.htm#complexTypeDefinition_listDescription","listDescription",false,null),new CN("urn_uddi-org_api_v3/complextype/name.htm#complexTypeDefinition_name","name",false,null),new CN("urn_uddi-org_api_v3/complextype/operationalInfo.htm#complexTypeDefinition_operationalInfo","operationalInfo",false,new Array(new CN("urn_uddi-org_api_v3/element/0_operationalInfo_created0.htm#localElementDeclaration_created","created",false,null),new CN("urn_uddi-org_api_v3/element/0_operationalInfo_modified0.htm#localElementDeclaration_modified","modified",false,null),new CN("urn_uddi-org_api_v3/element/0_operationalInfo_modifiedIncludingChildren0.htm#localElementDeclaration_modifiedIncludingChildren","modifiedIncludingChildren",false,null),new CN("urn_uddi-org_api_v3/element/0_operationalInfo_nodeID0.htm#localElementDeclaration_nodeID","nodeID",false,null),new CN("urn_uddi-org_api_v3/element/0_authorizedName1.htm#localElementDeclaration_authorizedName","authorizedName",false,null))),new CN("urn_uddi-org_api_v3/complextype/operationalInfos.htm#complexTypeDefinition_operationalInfos","operationalInfos",false,null),new CN("urn_uddi-org_api_v3/complextype/overviewDoc.htm#complexTypeDefinition_overviewDoc","overviewDoc",false,null),new CN("urn_uddi-org_api_v3/complextype/overviewURL.htm#complexTypeDefinition_overviewURL","overviewURL",false,null),new CN("urn_uddi-org_api_v3/complextype/personName.htm#complexTypeDefinition_personName","personName",false,null),new CN("urn_uddi-org_api_v3/complextype/phone.htm#complexTypeDefinition_phone","phone",false,null),new CN("urn_uddi-org_api_v3/complextype/publisherAssertion.htm#complexTypeDefinition_publisherAssertion","publisherAssertion",false,null),new CN("urn_uddi-org_api_v3/complextype/publisherAssertions.htm#complexTypeDefinition_publisherAssertions","publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/complextype/registeredInfo.htm#complexTypeDefinition_registeredInfo","registeredInfo",false,null),new CN("urn_uddi-org_api_v3/complextype/relatedBusinessesList.htm#complexTypeDefinition_relatedBusinessesList","relatedBusinessesList",false,null),new CN("urn_uddi-org_api_v3/complextype/relatedBusinessInfo.htm#complexTypeDefinition_relatedBusinessInfo","relatedBusinessInfo",false,null),new CN("urn_uddi-org_api_v3/complextype/relatedBusinessInfos.htm#complexTypeDefinition_relatedBusinessInfos","relatedBusinessInfos",false,null),new CN("urn_uddi-org_api_v3/complextype/result.htm#complexTypeDefinition_result","result",false,null),new CN("urn_uddi-org_api_v3/complextype/save_binding.htm#complexTypeDefinition_save_binding","save_binding",false,null),new CN("urn_uddi-org_api_v3/complextype/save_business.htm#complexTypeDefinition_save_business","save_business",false,null),new CN("urn_uddi-org_api_v3/complextype/save_service.htm#complexTypeDefinition_save_service","save_service",false,null),new CN("urn_uddi-org_api_v3/complextype/save_tModel.htm#complexTypeDefinition_save_tModel","save_tModel",false,null),new CN("urn_uddi-org_api_v3/complextype/serviceDetail.htm#complexTypeDefinition_serviceDetail","serviceDetail",false,null),new CN("urn_uddi-org_api_v3/complextype/serviceInfo.htm#complexTypeDefinition_serviceInfo","serviceInfo",false,null),new CN("urn_uddi-org_api_v3/complextype/serviceInfos.htm#complexTypeDefinition_serviceInfos","serviceInfos",false,null),new CN("urn_uddi-org_api_v3/complextype/serviceList.htm#complexTypeDefinition_serviceList","serviceList",false,null),new CN("urn_uddi-org_api_v3/complextype/set_publisherAssertions.htm#complexTypeDefinition_set_publisherAssertions","set_publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/complextype/sharedRelationships.htm#complexTypeDefinition_sharedRelationships","sharedRelationships",false,null),new CN("urn_uddi-org_api_v3/complextype/tModel.htm#complexTypeDefinition_tModel","tModel",false,null),new CN("urn_uddi-org_api_v3/complextype/tModelBag.htm#complexTypeDefinition_tModelBag","tModelBag",false,null),new CN("urn_uddi-org_api_v3/complextype/tModelDetail.htm#complexTypeDefinition_tModelDetail","tModelDetail",false,null),new CN("urn_uddi-org_api_v3/complextype/tModelInfo.htm#complexTypeDefinition_tModelInfo","tModelInfo",false,null),new CN("urn_uddi-org_api_v3/complextype/tModelInfos.htm#complexTypeDefinition_tModelInfos","tModelInfos",false,null),new CN("urn_uddi-org_api_v3/complextype/tModelInstanceDetails.htm#complexTypeDefinition_tModelInstanceDetails","tModelInstanceDetails",false,null),new CN("urn_uddi-org_api_v3/complextype/tModelInstanceInfo.htm#complexTypeDefinition_tModelInstanceInfo","tModelInstanceInfo",false,null),new CN("urn_uddi-org_api_v3/complextype/tModelList.htm#complexTypeDefinition_tModelList","tModelList",false,null)),
					new Array(),
					new Array(new CN("urn_uddi-org_api_v3/element/accessPoint.htm#elementDeclaration_accessPoint","accessPoint",false,null),new CN("urn_uddi-org_api_v3/element/actualCount.htm#elementDeclaration_actualCount","actualCount",false,null),new CN("urn_uddi-org_api_v3/element/add_publisherAssertions.htm#elementDeclaration_add_publisherAssertions","add_publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/element/address.htm#elementDeclaration_address","address",false,null),new CN("urn_uddi-org_api_v3/element/addressLine.htm#elementDeclaration_addressLine","addressLine",false,null),new CN("urn_uddi-org_api_v3/element/assertionStatusItem.htm#elementDeclaration_assertionStatusItem","assertionStatusItem",false,null),new CN("urn_uddi-org_api_v3/element/assertionStatusReport.htm#elementDeclaration_assertionStatusReport","assertionStatusReport",false,null),new CN("urn_uddi-org_api_v3/element/authInfo.htm#elementDeclaration_authInfo","authInfo",false,null),new CN("urn_uddi-org_api_v3/element/authToken.htm#elementDeclaration_authToken","authToken",false,null),new CN("urn_uddi-org_api_v3/element/bindingDetail.htm#elementDeclaration_bindingDetail","bindingDetail",false,null),new CN("urn_uddi-org_api_v3/element/bindingKey.htm#elementDeclaration_bindingKey","bindingKey",false,null),new CN("urn_uddi-org_api_v3/element/bindingTemplate.htm#elementDeclaration_bindingTemplate","bindingTemplate",false,null),new CN("urn_uddi-org_api_v3/element/bindingTemplates.htm#elementDeclaration_bindingTemplates","bindingTemplates",false,null),new CN("urn_uddi-org_api_v3/element/businessDetail.htm#elementDeclaration_businessDetail","businessDetail",false,null),new CN("urn_uddi-org_api_v3/element/businessEntity.htm#elementDeclaration_businessEntity","businessEntity",false,null),new CN("urn_uddi-org_api_v3/element/businessInfo.htm#elementDeclaration_businessInfo","businessInfo",false,null),new CN("urn_uddi-org_api_v3/element/businessInfos.htm#elementDeclaration_businessInfos","businessInfos",false,null),new CN("urn_uddi-org_api_v3/element/businessKey.htm#elementDeclaration_businessKey","businessKey",false,null),new CN("urn_uddi-org_api_v3/element/businessList.htm#elementDeclaration_businessList","businessList",false,null),new CN("urn_uddi-org_api_v3/element/businessService.htm#elementDeclaration_businessService","businessService",false,null),new CN("urn_uddi-org_api_v3/element/businessServices.htm#elementDeclaration_businessServices","businessServices",false,null),new CN("urn_uddi-org_api_v3/element/categoryBag.htm#elementDeclaration_categoryBag","categoryBag",false,null),new CN("urn_uddi-org_api_v3/element/completionStatus.htm#elementDeclaration_completionStatus","completionStatus",false,null),new CN("urn_uddi-org_api_v3/element/contact.htm#elementDeclaration_contact","contact",false,null),new CN("urn_uddi-org_api_v3/element/contacts.htm#elementDeclaration_contacts","contacts",false,null),new CN("urn_uddi-org_api_v3/element/delete_binding.htm#elementDeclaration_delete_binding","delete_binding",false,null),new CN("urn_uddi-org_api_v3/element/delete_business.htm#elementDeclaration_delete_business","delete_business",false,null),new CN("urn_uddi-org_api_v3/element/delete_publisherAssertions.htm#elementDeclaration_delete_publisherAssertions","delete_publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/element/delete_service.htm#elementDeclaration_delete_service","delete_service",false,null),new CN("urn_uddi-org_api_v3/element/delete_tModel.htm#elementDeclaration_delete_tModel","delete_tModel",false,null),new CN("urn_uddi-org_api_v3/element/description.htm#elementDeclaration_description","description",false,null),new CN("urn_uddi-org_api_v3/element/discard_authToken.htm#elementDeclaration_discard_authToken","discard_authToken",false,null),new CN("urn_uddi-org_api_v3/element/discoveryURL.htm#elementDeclaration_discoveryURL","discoveryURL",false,null),new CN("urn_uddi-org_api_v3/element/discoveryURLs.htm#elementDeclaration_discoveryURLs","discoveryURLs",false,null),new CN("urn_uddi-org_api_v3/element/dispositionReport.htm#elementDeclaration_dispositionReport","dispositionReport",false,null),new CN("urn_uddi-org_api_v3/element/email.htm#elementDeclaration_email","email",false,null),new CN("urn_uddi-org_api_v3/element/errInfo.htm#elementDeclaration_errInfo","errInfo",false,null),new CN("urn_uddi-org_api_v3/element/find_binding.htm#elementDeclaration_find_binding","find_binding",false,null),new CN("urn_uddi-org_api_v3/element/find_business.htm#elementDeclaration_find_business","find_business",false,null),new CN("urn_uddi-org_api_v3/element/find_relatedBusinesses.htm#elementDeclaration_find_relatedBusinesses","find_relatedBusinesses",false,null),new CN("urn_uddi-org_api_v3/element/find_service.htm#elementDeclaration_find_service","find_service",false,null),new CN("urn_uddi-org_api_v3/element/find_tModel.htm#elementDeclaration_find_tModel","find_tModel",false,null),new CN("urn_uddi-org_api_v3/element/findQualifier.htm#elementDeclaration_findQualifier","findQualifier",false,null),new CN("urn_uddi-org_api_v3/element/findQualifiers.htm#elementDeclaration_findQualifiers","findQualifiers",false,null),new CN("urn_uddi-org_api_v3/element/fromKey.htm#elementDeclaration_fromKey","fromKey",false,null),new CN("urn_uddi-org_api_v3/element/get_assertionStatusReport.htm#elementDeclaration_get_assertionStatusReport","get_assertionStatusReport",false,null),new CN("urn_uddi-org_api_v3/element/get_authToken.htm#elementDeclaration_get_authToken","get_authToken",false,null),new CN("urn_uddi-org_api_v3/element/get_bindingDetail.htm#elementDeclaration_get_bindingDetail","get_bindingDetail",false,null),new CN("urn_uddi-org_api_v3/element/get_businessDetail.htm#elementDeclaration_get_businessDetail","get_businessDetail",false,null),new CN("urn_uddi-org_api_v3/element/get_operationalInfo.htm#elementDeclaration_get_operationalInfo","get_operationalInfo",false,null),new CN("urn_uddi-org_api_v3/element/get_publisherAssertions.htm#elementDeclaration_get_publisherAssertions","get_publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/element/get_registeredInfo.htm#elementDeclaration_get_registeredInfo","get_registeredInfo",false,null),new CN("urn_uddi-org_api_v3/element/get_serviceDetail.htm#elementDeclaration_get_serviceDetail","get_serviceDetail",false,null),new CN("urn_uddi-org_api_v3/element/get_tModelDetail.htm#elementDeclaration_get_tModelDetail","get_tModelDetail",false,null),new CN("urn_uddi-org_api_v3/element/hostingRedirector.htm#elementDeclaration_hostingRedirector","hostingRedirector",false,null),new CN("urn_uddi-org_api_v3/element/identifierBag.htm#elementDeclaration_identifierBag","identifierBag",false,null),new CN("urn_uddi-org_api_v3/element/includeCount.htm#elementDeclaration_includeCount","includeCount",false,null),new CN("urn_uddi-org_api_v3/element/infoSelection.htm#elementDeclaration_infoSelection","infoSelection",false,null),new CN("urn_uddi-org_api_v3/element/instanceDetails.htm#elementDeclaration_instanceDetails","instanceDetails",false,null),new CN("urn_uddi-org_api_v3/element/instanceParms.htm#elementDeclaration_instanceParms","instanceParms",false,null),new CN("urn_uddi-org_api_v3/element/keyedReference.htm#elementDeclaration_keyedReference","keyedReference",false,null),new CN("urn_uddi-org_api_v3/element/keyedReferenceGroup.htm#elementDeclaration_keyedReferenceGroup","keyedReferenceGroup",false,null),new CN("urn_uddi-org_api_v3/element/keysOwned.htm#elementDeclaration_keysOwned","keysOwned",false,null),new CN("urn_uddi-org_api_v3/element/listDescription.htm#elementDeclaration_listDescription","listDescription",false,null),new CN("urn_uddi-org_api_v3/element/listHead.htm#elementDeclaration_listHead","listHead",false,null),new CN("urn_uddi-org_api_v3/element/name.htm#elementDeclaration_name","name",false,null),new CN("urn_uddi-org_api_v3/element/operationalInfo.htm#elementDeclaration_operationalInfo","operationalInfo",false,null),new CN("urn_uddi-org_api_v3/element/operationalInfos.htm#elementDeclaration_operationalInfos","operationalInfos",false,null),new CN("urn_uddi-org_api_v3/element/overviewDoc.htm#elementDeclaration_overviewDoc","overviewDoc",false,null),new CN("urn_uddi-org_api_v3/element/overviewURL.htm#elementDeclaration_overviewURL","overviewURL",false,null),new CN("urn_uddi-org_api_v3/element/personName.htm#elementDeclaration_personName","personName",false,null),new CN("urn_uddi-org_api_v3/element/phone.htm#elementDeclaration_phone","phone",false,null),new CN("urn_uddi-org_api_v3/element/publisherAssertion.htm#elementDeclaration_publisherAssertion","publisherAssertion",false,null),new CN("urn_uddi-org_api_v3/element/publisherAssertions.htm#elementDeclaration_publisherAssertions","publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/element/registeredInfo.htm#elementDeclaration_registeredInfo","registeredInfo",false,null),new CN("urn_uddi-org_api_v3/element/relatedBusinessesList.htm#elementDeclaration_relatedBusinessesList","relatedBusinessesList",false,null),new CN("urn_uddi-org_api_v3/element/relatedBusinessInfo.htm#elementDeclaration_relatedBusinessInfo","relatedBusinessInfo",false,null),new CN("urn_uddi-org_api_v3/element/relatedBusinessInfos.htm#elementDeclaration_relatedBusinessInfos","relatedBusinessInfos",false,null),new CN("urn_uddi-org_api_v3/element/result.htm#elementDeclaration_result","result",false,null),new CN("urn_uddi-org_api_v3/element/save_binding.htm#elementDeclaration_save_binding","save_binding",false,null),new CN("urn_uddi-org_api_v3/element/save_business.htm#elementDeclaration_save_business","save_business",false,null),new CN("urn_uddi-org_api_v3/element/save_service.htm#elementDeclaration_save_service","save_service",false,null),new CN("urn_uddi-org_api_v3/element/save_tModel.htm#elementDeclaration_save_tModel","save_tModel",false,null),new CN("urn_uddi-org_api_v3/element/serviceDetail.htm#elementDeclaration_serviceDetail","serviceDetail",false,null),new CN("urn_uddi-org_api_v3/element/serviceInfo.htm#elementDeclaration_serviceInfo","serviceInfo",false,null),new CN("urn_uddi-org_api_v3/element/serviceInfos.htm#elementDeclaration_serviceInfos","serviceInfos",false,null),new CN("urn_uddi-org_api_v3/element/serviceKey.htm#elementDeclaration_serviceKey","serviceKey",false,null),new CN("urn_uddi-org_api_v3/element/serviceList.htm#elementDeclaration_serviceList","serviceList",false,null),new CN("urn_uddi-org_api_v3/element/set_publisherAssertions.htm#elementDeclaration_set_publisherAssertions","set_publisherAssertions",false,null),new CN("urn_uddi-org_api_v3/element/sharedRelationships.htm#elementDeclaration_sharedRelationships","sharedRelationships",false,null),new CN("urn_uddi-org_api_v3/element/tModel.htm#elementDeclaration_tModel","tModel",false,null),new CN("urn_uddi-org_api_v3/element/tModelBag.htm#elementDeclaration_tModelBag","tModelBag",false,null),new CN("urn_uddi-org_api_v3/element/tModelDetail.htm#elementDeclaration_tModelDetail","tModelDetail",false,null),new CN("urn_uddi-org_api_v3/element/tModelInfo.htm#elementDeclaration_tModelInfo","tModelInfo",false,null),new CN("urn_uddi-org_api_v3/element/tModelInfos.htm#elementDeclaration_tModelInfos","tModelInfos",false,null),new CN("urn_uddi-org_api_v3/element/tModelInstanceDetails.htm#elementDeclaration_tModelInstanceDetails","tModelInstanceDetails",false,null),new CN("urn_uddi-org_api_v3/element/tModelInstanceInfo.htm#elementDeclaration_tModelInstanceInfo","tModelInstanceInfo",false,null),new CN("urn_uddi-org_api_v3/element/tModelKey.htm#elementDeclaration_tModelKey","tModelKey",false,null),new CN("urn_uddi-org_api_v3/element/tModelList.htm#elementDeclaration_tModelList","tModelList",false,null),new CN("urn_uddi-org_api_v3/element/toKey.htm#elementDeclaration_toKey","toKey",false,null)),
					new Array());

componentNSMap ["urn:uddi-org:api_v3"] = "urn_uddi-org_api_v3/index.htm";
componentDB ["urn:uddi-org:custody_v3"] =  new C (new Array(),
					new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_custody_v3/complextype/get_transferToken.htm#complexTypeDefinition_get_transferToken","get_transferToken",false,null),new CN("urn_uddi-org_custody_v3/complextype/keyBag.htm#complexTypeDefinition_keyBag","keyBag",true,new Array(new CN("urn_uddi-org_custody_v3/element/0_key0.htm#localElementDeclaration_key","key",false,null))),new CN("urn_uddi-org_custody_v3/complextype/transfer_custody.htm#complexTypeDefinition_transfer_custody","transfer_custody",false,null),new CN("urn_uddi-org_custody_v3/complextype/transfer_entities.htm#complexTypeDefinition_transfer_entities","transfer_entities",false,null),new CN("urn_uddi-org_custody_v3/complextype/transferOperationalInfo.htm#complexTypeDefinition_transferOperationalInfo","transferOperationalInfo",false,new Array(new CN("urn_uddi-org_custody_v3/element/0_authorizedName0.htm#localElementDeclaration_authorizedName","authorizedName",false,null),new CN("urn_uddi-org_custody_v3/element/0_nodeID0.htm#localElementDeclaration_nodeID","nodeID",false,null))),new CN("urn_uddi-org_custody_v3/complextype/transferToken.htm#complexTypeDefinition_transferToken","transferToken",false,new Array(new CN("urn_uddi-org_custody_v3/element/0_nodeID1.htm#localElementDeclaration_nodeID","nodeID",false,null),new CN("urn_uddi-org_custody_v3/element/0_expirationTime0.htm#localElementDeclaration_expirationTime","expirationTime",false,null),new CN("urn_uddi-org_custody_v3/element/0_opaqueToken0.htm#localElementDeclaration_opaqueToken","opaqueToken",false,null)))),
					new Array(),
					new Array(new CN("urn_uddi-org_custody_v3/element/get_transferToken.htm#elementDeclaration_get_transferToken","get_transferToken",false,null),new CN("urn_uddi-org_custody_v3/element/keyBag.htm#elementDeclaration_keyBag","keyBag",true,null),new CN("urn_uddi-org_custody_v3/element/transfer_custody.htm#elementDeclaration_transfer_custody","transfer_custody",false,null),new CN("urn_uddi-org_custody_v3/element/transfer_entities.htm#elementDeclaration_transfer_entities","transfer_entities",false,null),new CN("urn_uddi-org_custody_v3/element/transferOperationalInfo.htm#elementDeclaration_transferOperationalInfo","transferOperationalInfo",false,null),new CN("urn_uddi-org_custody_v3/element/transferToken.htm#elementDeclaration_transferToken","transferToken",false,null)),
					new Array());

componentNSMap ["urn:uddi-org:custody_v3"] = "urn_uddi-org_custody_v3/index.htm";
componentDB ["urn:uddi-org:policy_v3"] =  new C (new Array(),
					new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_policy_v3/complextype/policyDescription_type.htm#complexTypeDefinition_policyDescription_type","policyDescription_type",false,null)),
					new Array(),
					new Array(new CN("urn_uddi-org_policy_v3/element/policies.htm#elementDeclaration_policies","policies",false,null),new CN("urn_uddi-org_policy_v3/element/policy.htm#elementDeclaration_policy","policy",false,null),new CN("urn_uddi-org_policy_v3/element/policyDecisionPoint.htm#elementDeclaration_policyDecisionPoint","policyDecisionPoint",false,null),new CN("urn_uddi-org_policy_v3/element/policyDescription.htm#elementDeclaration_policyDescription","policyDescription",false,null),new CN("urn_uddi-org_policy_v3/element/policyName.htm#elementDeclaration_policyName","policyName",false,null)),
					new Array());

componentNSMap ["urn:uddi-org:policy_v3"] = "urn_uddi-org_policy_v3/index.htm";
componentDB ["urn:uddi-org:policy_v3_instanceParms"] =  new C (new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_policy_v3_instanceParms/simpletype/authInfoUse_type.htm#simpleTypeDefinition_authInfoUse_type","authInfoUse_type",false,null),new CN("urn_uddi-org_policy_v3_instanceParms/simpletype/filterUsingFindAPI_type.htm#simpleTypeDefinition_filterUsingFindAPI_type","filterUsingFindAPI_type",false,null)),
					new Array(new CN("urn_uddi-org_policy_v3_instanceParms/complextype/UDDIinstanceParmsContainer_type.htm#complexTypeDefinition_UDDIinstanceParmsContainer_type","UDDIinstanceParmsContainer_type",false,null)),
					new Array(),
					new Array(new CN("urn_uddi-org_policy_v3_instanceParms/element/authInfoUse.htm#elementDeclaration_authInfoUse","authInfoUse",false,null),new CN("urn_uddi-org_policy_v3_instanceParms/element/defaultSortOrder.htm#elementDeclaration_defaultSortOrder","defaultSortOrder",false,null),new CN("urn_uddi-org_policy_v3_instanceParms/element/filterUsingFindAPI.htm#elementDeclaration_filterUsingFindAPI","filterUsingFindAPI",false,null),new CN("urn_uddi-org_policy_v3_instanceParms/element/maximumRequestMessageSize.htm#elementDeclaration_maximumRequestMessageSize","maximumRequestMessageSize",false,null),new CN("urn_uddi-org_policy_v3_instanceParms/element/UDDIinstanceParmsContainer.htm#elementDeclaration_UDDIinstanceParmsContainer","UDDIinstanceParmsContainer",false,null)),
					new Array());

componentNSMap ["urn:uddi-org:policy_v3_instanceParms"] = "urn_uddi-org_policy_v3_instanceParms/index.htm";
componentDB ["urn:uddi-org:repl_v3"] =  new C (new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_repl_v3/simpletype/controlledMessage_type.htm#simpleTypeDefinition_controlledMessage_type","controlledMessage_type",false,null),new CN("urn_uddi-org_repl_v3/simpletype/message_type.htm#simpleTypeDefinition_message_type","message_type",false,null),new CN("urn_uddi-org_repl_v3/simpletype/operatorNodeID_type.htm#simpleTypeDefinition_operatorNodeID_type","operatorNodeID_type",false,null),new CN("urn_uddi-org_repl_v3/simpletype/operatorStatus_type.htm#simpleTypeDefinition_operatorStatus_type","operatorStatus_type",false,null),new CN("urn_uddi-org_repl_v3/simpletype/timeOfConfigurationUpdate_type.htm#simpleTypeDefinition_timeOfConfigurationUpdate_type","timeOfConfigurationUpdate_type",false,null),new CN("urn_uddi-org_repl_v3/simpletype/USN_type.htm#simpleTypeDefinition_USN_type","USN_type",false,null)),
					new Array(new CN("urn_uddi-org_repl_v3/complextype/changeRecordID_type.htm#complexTypeDefinition_changeRecordID_type","changeRecordID_type",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_changeRecordID_type_nodeID0.htm#localElementDeclaration_nodeID","nodeID",false,null),new CN("urn_uddi-org_repl_v3/element/0_changeRecordID_type_originatingUSN0.htm#localElementDeclaration_originatingUSN","originatingUSN",false,null))),new CN("urn_uddi-org_repl_v3/complextype/highWaterMarkVector_type.htm#complexTypeDefinition_highWaterMarkVector_type","highWaterMarkVector_type",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_highWaterMarkVector_type_highWaterMark0.htm#localElementDeclaration_highWaterMark","highWaterMark",false,null)))),
					new Array(new CN("urn_uddi-org_repl_v3/modelgroup/changeRecordPayload_type.htm#modelGroupDefinition_changeRecordPayload_type","changeRecordPayload_type",false,null),new CN("urn_uddi-org_repl_v3/modelgroup/genericKey_type.htm#modelGroupDefinition_genericKey_type","genericKey_type",false,null)),
					new Array(new CN("urn_uddi-org_repl_v3/element/changeRecord.htm#elementDeclaration_changeRecord","changeRecord",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_changeRecord_changeID0.htm#localElementDeclaration_changeID","changeID",false,null))),new CN("urn_uddi-org_repl_v3/element/changeRecordAcknowledgement.htm#elementDeclaration_changeRecordAcknowledgement","changeRecordAcknowledgement",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_changeRecordAcknowledgement_acknowledgedChange0.htm#localElementDeclaration_acknowledgedChange","acknowledgedChange",false,null))),new CN("urn_uddi-org_repl_v3/element/changeRecordCorrection.htm#elementDeclaration_changeRecordCorrection","changeRecordCorrection",false,null),new CN("urn_uddi-org_repl_v3/element/changeRecordDelete.htm#elementDeclaration_changeRecordDelete","changeRecordDelete",false,null),new CN("urn_uddi-org_repl_v3/element/changeRecordDeleteAssertion.htm#elementDeclaration_changeRecordDeleteAssertion","changeRecordDeleteAssertion",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_changeRecordDeleteAssertion_fromBusinessCheck0.htm#localElementDeclaration_fromBusinessCheck","fromBusinessCheck",false,null),new CN("urn_uddi-org_repl_v3/element/0_changeRecordDeleteAssertion_toBusinessCheck0.htm#localElementDeclaration_toBusinessCheck","toBusinessCheck",false,null))),new CN("urn_uddi-org_repl_v3/element/changeRecordHide.htm#elementDeclaration_changeRecordHide","changeRecordHide",false,null),new CN("urn_uddi-org_repl_v3/element/changeRecordNewData.htm#elementDeclaration_changeRecordNewData","changeRecordNewData",false,null),new CN("urn_uddi-org_repl_v3/element/changeRecordNewDataConditional.htm#elementDeclaration_changeRecordNewDataConditional","changeRecordNewDataConditional",false,null),new CN("urn_uddi-org_repl_v3/element/changeRecordNull.htm#elementDeclaration_changeRecordNull","changeRecordNull",false,null),new CN("urn_uddi-org_repl_v3/element/changeRecordPublisherAssertion.htm#elementDeclaration_changeRecordPublisherAssertion","changeRecordPublisherAssertion",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_changeRecordPublisherAssertion_fromBusinessCheck0.htm#localElementDeclaration_fromBusinessCheck","fromBusinessCheck",false,null),new CN("urn_uddi-org_repl_v3/element/0_changeRecordPublisherAssertion_toBusinessCheck0.htm#localElementDeclaration_toBusinessCheck","toBusinessCheck",false,null))),new CN("urn_uddi-org_repl_v3/element/changeRecords.htm#elementDeclaration_changeRecords","changeRecords",false,null),new CN("urn_uddi-org_repl_v3/element/communicationGraph.htm#elementDeclaration_communicationGraph","communicationGraph",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_communicationGraph_node0.htm#localElementDeclaration_node","node",false,null),new CN("urn_uddi-org_repl_v3/element/0_communicationGraph_controlledMessage0.htm#localElementDeclaration_controlledMessage","controlledMessage",false,null),new CN("urn_uddi-org_repl_v3/element/0_edge0.htm#localElementDeclaration_edge","edge",false,null),new CN("urn_uddi-org_repl_v3/element/0_communicationGraph_edge_message0.htm#localElementDeclaration_edge/message","edge/message",false,null),new CN("urn_uddi-org_repl_v3/element/0_communicationGraph_edge_messageSender0.htm#localElementDeclaration_edge/messageSender","edge/messageSender",false,null),new CN("urn_uddi-org_repl_v3/element/0_communicationGraph_edge_messageReceiver0.htm#localElementDeclaration_edge/messageReceiver","edge/messageReceiver",false,null),new CN("urn_uddi-org_repl_v3/element/0_communicationGraph_edge_messageReceiverAlternate0.htm#localElementDeclaration_edge/messageReceiverAlternate","edge/messageReceiverAlternate",false,null))),new CN("urn_uddi-org_repl_v3/element/do_ping.htm#elementDeclaration_do_ping","do_ping",false,null),new CN("urn_uddi-org_repl_v3/element/get_changeRecords.htm#elementDeclaration_get_changeRecords","get_changeRecords",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_get_changeRecords_requestingNode0.htm#localElementDeclaration_requestingNode","requestingNode",false,null),new CN("urn_uddi-org_repl_v3/element/0_get_changeRecords_changesAlreadySeen0.htm#localElementDeclaration_changesAlreadySeen","changesAlreadySeen",false,null),new CN("urn_uddi-org_repl_v3/element/0_responseLimitCount0.htm#localElementDeclaration_responseLimitCount","responseLimitCount",false,null),new CN("urn_uddi-org_repl_v3/element/0_get_changeRecords_responseLimitVector0.htm#localElementDeclaration_responseLimitVector","responseLimitVector",false,null))),new CN("urn_uddi-org_repl_v3/element/get_highWaterMarks.htm#elementDeclaration_get_highWaterMarks","get_highWaterMarks",false,null),new CN("urn_uddi-org_repl_v3/element/highWaterMarks.htm#elementDeclaration_highWaterMarks","highWaterMarks",false,null),new CN("urn_uddi-org_repl_v3/element/notify_changeRecordsAvailable.htm#elementDeclaration_notify_changeRecordsAvailable","notify_changeRecordsAvailable",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_notify_changeRecordsAvailable_notifyingNode0.htm#localElementDeclaration_notifyingNode","notifyingNode",false,null),new CN("urn_uddi-org_repl_v3/element/0_notify_changeRecordsAvailable_changesAvailable0.htm#localElementDeclaration_changesAvailable","changesAvailable",false,null))),new CN("urn_uddi-org_repl_v3/element/operator.htm#elementDeclaration_operator","operator",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_operator_operatorStatus0.htm#localElementDeclaration_operatorStatus","operatorStatus",false,null),new CN("urn_uddi-org_repl_v3/element/0_soapReplicationURL0.htm#localElementDeclaration_soapReplicationURL","soapReplicationURL",false,null))),new CN("urn_uddi-org_repl_v3/element/operatorNodeID.htm#elementDeclaration_operatorNodeID","operatorNodeID",false,null),new CN("urn_uddi-org_repl_v3/element/replicationConfiguration.htm#elementDeclaration_replicationConfiguration","replicationConfiguration",false,new Array(new CN("urn_uddi-org_repl_v3/element/0_replicationConfiguration_serialNumber0.htm#localElementDeclaration_serialNumber","serialNumber",false,null),new CN("urn_uddi-org_repl_v3/element/0_replicationConfiguration_timeOfConfigurationUpdate0.htm#localElementDeclaration_timeOfConfigurationUpdate","timeOfConfigurationUpdate",false,null),new CN("urn_uddi-org_repl_v3/element/0_registryContact0.htm#localElementDeclaration_registryContact","registryContact",false,null),new CN("urn_uddi-org_repl_v3/element/0_maximumTimeToSyncRegistry0.htm#localElementDeclaration_maximumTimeToSyncRegistry","maximumTimeToSyncRegistry",false,null),new CN("urn_uddi-org_repl_v3/element/0_maximumTimeToGetChanges0.htm#localElementDeclaration_maximumTimeToGetChanges","maximumTimeToGetChanges",false,null)))),
					new Array());

componentNSMap ["urn:uddi-org:repl_v3"] = "urn_uddi-org_repl_v3/index.htm";
componentDB ["urn:uddi-org:sub_v3"] =  new C (new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_sub_v3/simpletype/brief.htm#simpleTypeDefinition_brief","brief",false,null),new CN("urn_uddi-org_sub_v3/simpletype/chunkToken.htm#simpleTypeDefinition_chunkToken","chunkToken",true,null),new CN("urn_uddi-org_sub_v3/simpletype/expiresAfter.htm#simpleTypeDefinition_expiresAfter","expiresAfter",false,null),new CN("urn_uddi-org_sub_v3/simpletype/maxEntities.htm#simpleTypeDefinition_maxEntities","maxEntities",false,null),new CN("urn_uddi-org_sub_v3/simpletype/subscriptionKey.htm#simpleTypeDefinition_subscriptionKey","subscriptionKey",false,null)),
					new Array(new CN("urn_uddi-org_sub_v3/complextype/coveragePeriod.htm#complexTypeDefinition_coveragePeriod","coveragePeriod",false,null),new CN("urn_uddi-org_sub_v3/complextype/delete_subscription.htm#complexTypeDefinition_delete_subscription","delete_subscription",false,null),new CN("urn_uddi-org_sub_v3/complextype/get_subscriptionResults.htm#complexTypeDefinition_get_subscriptionResults","get_subscriptionResults",false,null),new CN("urn_uddi-org_sub_v3/complextype/get_subscriptions.htm#complexTypeDefinition_get_subscriptions","get_subscriptions",false,null),new CN("urn_uddi-org_sub_v3/complextype/keyBag.htm#complexTypeDefinition_keyBag","keyBag",true,null),new CN("urn_uddi-org_sub_v3/complextype/save_subscription.htm#complexTypeDefinition_save_subscription","save_subscription",false,null),new CN("urn_uddi-org_sub_v3/complextype/subscription.htm#complexTypeDefinition_subscription","subscription",false,null),new CN("urn_uddi-org_sub_v3/complextype/subscriptionFilter.htm#complexTypeDefinition_subscriptionFilter","subscriptionFilter",false,null),new CN("urn_uddi-org_sub_v3/complextype/subscriptionResultsList.htm#complexTypeDefinition_subscriptionResultsList","subscriptionResultsList",false,null),new CN("urn_uddi-org_sub_v3/complextype/subscriptions.htm#complexTypeDefinition_subscriptions","subscriptions",false,null)),
					new Array(),
					new Array(new CN("urn_uddi-org_sub_v3/element/chunkToken.htm#elementDeclaration_chunkToken","chunkToken",true,null),new CN("urn_uddi-org_sub_v3/element/coveragePeriod.htm#elementDeclaration_coveragePeriod","coveragePeriod",false,null),new CN("urn_uddi-org_sub_v3/element/delete_subscription.htm#elementDeclaration_delete_subscription","delete_subscription",false,null),new CN("urn_uddi-org_sub_v3/element/deleted.htm#elementDeclaration_deleted","deleted",false,null),new CN("urn_uddi-org_sub_v3/element/endPoint.htm#elementDeclaration_endPoint","endPoint",false,null),new CN("urn_uddi-org_sub_v3/element/expiresAfter.htm#elementDeclaration_expiresAfter","expiresAfter",false,null),new CN("urn_uddi-org_sub_v3/element/get_subscriptionResults.htm#elementDeclaration_get_subscriptionResults","get_subscriptionResults",false,null),new CN("urn_uddi-org_sub_v3/element/get_subscriptions.htm#elementDeclaration_get_subscriptions","get_subscriptions",false,null),new CN("urn_uddi-org_sub_v3/element/keyBag.htm#elementDeclaration_keyBag","keyBag",true,null),new CN("urn_uddi-org_sub_v3/element/maxEntities.htm#elementDeclaration_maxEntities","maxEntities",false,null),new CN("urn_uddi-org_sub_v3/element/notificationInterval.htm#elementDeclaration_notificationInterval","notificationInterval",false,null),new CN("urn_uddi-org_sub_v3/element/save_subscription.htm#elementDeclaration_save_subscription","save_subscription",false,null),new CN("urn_uddi-org_sub_v3/element/startPoint.htm#elementDeclaration_startPoint","startPoint",false,null),new CN("urn_uddi-org_sub_v3/element/subscription.htm#elementDeclaration_subscription","subscription",false,null),new CN("urn_uddi-org_sub_v3/element/subscriptionFilter.htm#elementDeclaration_subscriptionFilter","subscriptionFilter",false,null),new CN("urn_uddi-org_sub_v3/element/subscriptionKey.htm#elementDeclaration_subscriptionKey","subscriptionKey",false,null),new CN("urn_uddi-org_sub_v3/element/subscriptionResultsList.htm#elementDeclaration_subscriptionResultsList","subscriptionResultsList",false,null),new CN("urn_uddi-org_sub_v3/element/subscriptions.htm#elementDeclaration_subscriptions","subscriptions",false,null)),
					new Array());

componentNSMap ["urn:uddi-org:sub_v3"] = "urn_uddi-org_sub_v3/index.htm";
componentDB ["urn:uddi-org:subr_v3"] =  new C (new Array(),
					new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_subr_v3/complextype/notify_subscriptionListener.htm#complexTypeDefinition_notify_subscriptionListener","notify_subscriptionListener",false,null)),
					new Array(),
					new Array(new CN("urn_uddi-org_subr_v3/element/notify_subscriptionListener.htm#elementDeclaration_notify_subscriptionListener","notify_subscriptionListener",false,null)),
					new Array());

componentNSMap ["urn:uddi-org:subr_v3"] = "urn_uddi-org_subr_v3/index.htm";
componentDB ["urn:uddi-org:vs_v3"] =  new C (new Array(),
					new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_vs_v3/complextype/validate_values.htm#complexTypeDefinition_validate_values","validate_values",false,null)),
					new Array(),
					new Array(new CN("urn_uddi-org_vs_v3/element/validate_values.htm#elementDeclaration_validate_values","validate_values",false,null)),
					new Array());

componentNSMap ["urn:uddi-org:vs_v3"] = "urn_uddi-org_vs_v3/index.htm";
componentDB ["urn:uddi-org:vscache_v3"] =  new C (new Array(),
					new Array(),
					new Array(new CN("urn_uddi-org_vscache_v3/simpletype/chunkToken.htm#simpleTypeDefinition_chunkToken","chunkToken",true,null)),
					new Array(new CN("urn_uddi-org_vscache_v3/complextype/get_allValidValues.htm#complexTypeDefinition_get_allValidValues","get_allValidValues",false,null),new CN("urn_uddi-org_vscache_v3/complextype/validValue.htm#complexTypeDefinition_validValue","validValue",false,null),new CN("urn_uddi-org_vscache_v3/complextype/validValuesList.htm#complexTypeDefinition_validValuesList","validValuesList",false,null)),
					new Array(),
					new Array(new CN("urn_uddi-org_vscache_v3/element/chunkToken.htm#elementDeclaration_chunkToken","chunkToken",true,null),new CN("urn_uddi-org_vscache_v3/element/get_allValidValues.htm#elementDeclaration_get_allValidValues","get_allValidValues",false,null),new CN("urn_uddi-org_vscache_v3/element/keyValue.htm#elementDeclaration_keyValue","keyValue",false,null),new CN("urn_uddi-org_vscache_v3/element/validValue.htm#elementDeclaration_validValue","validValue",false,null),new CN("urn_uddi-org_vscache_v3/element/validValuesList.htm#elementDeclaration_validValuesList","validValuesList",false,null)),
					new Array());

componentNSMap ["urn:uddi-org:vscache_v3"] = "urn_uddi-org_vscache_v3/index.htm";
								   



