Broadworks-OCIP
view release on metacpan or search on metacpan
ocip_html/OCISchemaServiceProvider.xsd.html view on Meta::CPAN
/******** Schema Document Properties Section ********/
/* Table displaying the namespaces declared in the schema */
table.namespaces th {
background-color: #ccc;
}
table.namespaces td {
background-color: #eee;
}
/* Target namespace of the schema */
span.targetNS {
color: #06C;
font-weight: bold;
}
/******** Schema Components' Sections ********/
/* Name of schema component */
.name {
color: #F93; /* Orange */
}
/* Hierarchy table */
table.hierarchy {
border: 2px solid #999; /* Gray */
}
/* XML Instance Representation table */
div.sample div.contents {
border: 2px dashed black;
}
/* Schema Component Representation table */
div.schemaComponent div.contents {
border: 2px black solid;
}
/******** Glossary Section ********/
/* Glossary Terms */
.glossaryTerm {
color: #036; /* Blue */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Printer-version styles */
@media print {
/* Ensures that controls are hidden when printing */
div#printerControls {
visibility: hidden;
}
div#globalControls {
visibility: hidden;
}
#legend {
display: none;
}
#legendTOC {
display: none;
}
#glossary {
display: none;
}
#glossaryTOC {
display: none;
}
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Base styles */
/******** General ********/
/* Unordered lists */
ul {
margin-left: 1.5em;
margin-bottom: 0em;
}
/* Tables */
table {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 2px;
margin-right: 2px;
}
table th, table td {
font-size: 10pt;
vertical-align: top;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 10px;
padding-right: 10px;
}
table th {
font-weight: bold;
text-align: left;
}
/* Table displaying the properties of the schema components or the
schema document itself */
table.properties {
width: 90%;
}
table.properties th {
width: 30%;
}
/* Boxes that can make its content appear and disappear*/
div.box {
margin: 1em;
}
/* Box caption */
div.box span.caption {
font-weight: bold;
}
/* Button to open and close the box */
div.box input.control {
width: 1.4em;
height: 1.4em;
ocip_html/OCISchemaServiceProvider.xsd.html view on Meta::CPAN
div.sample div.contents .inherited, div.sample div.contents .inherited a {
color: #666; /* Dark gray */
}
/* Elements and attributes added to or changed from base type */
div.sample div.contents .newFields {
font-weight: bold;
}
/* Other type of information */
div.sample div.contents .other, div.sample div.contents .other a {
color: #369; /* Blue */
font-style: italic;
}
/* Link to open up window displaying documentation */
div.sample div.contents a.documentation {
text-decoration: none;
padding-left: 3px;
padding-right: 3px;
padding-top: 0px;
padding-bottom: 0px;
font-weight: bold;
font-size: 11pt;
background-color: #FFD;
color: #069;
}
/* Invert colors when hovering over link to open up window
displaying documentation */
div.sample div.contents a.documentation:hover {
color: #FFD;
background-color: #069;
}
/* Schema Component Representation table */
div.schemaComponent {
width: 90%;
}
div.schemaComponent div.contents {
font-family: Courier New, sans-serif;
font-size: 10pt;
padding: 5px;
}
/* Syntax characters */
div.schemaComponent div.contents {
color: #00f; /* blue */
}
/* Element and attribute tags */
div.schemaComponent div.contents .scTag {
color: #933; /* maroon */
}
/* Element and attribute content */
div.schemaComponent div.contents .scContent, div.schemaComponent div.contents .scContent a {
color: black;
font-weight: bold;
}
/* Comments */
div.schemaComponent div.contents .comment {
color: #999; /* Light gray */
}
/******** Legend Section ********/
div#legend table, div#legend div {
margin-bottom: 3px;
}
div#legend div.hint {
color: #999; /* Light gray */
width: 90%;
margin-left: 1em;
margin-bottom: 2em;
}
/******** Glossary Section ********/
/* Glossary Terms */
.glossaryTerm {
font-weight: bold;
}
/******** Footer ********/
.footer {
font-size: 8pt;
}
</style>
<script type="text/javascript">
<!--
/* IDs of XML Instance Representation boxes */
var xiBoxes = new Array('type_ServiceProviderAccessDeviceAddRequest14_xibox', 'type_ServiceProviderAccessDeviceCustomTagAddRequest_xibox', 'type_ServiceProviderAccessDeviceCustomTagDeleteListRequest_xibox', 'type_ServiceProviderAccessDeviceCustomTagG...
/* IDs of Schema Component Representation boxes */
var scBoxes = new Array('schema_scbox', 'type_ServiceProviderAccessDeviceAddRequest14_scbox', 'type_ServiceProviderAccessDeviceCustomTagAddRequest_scbox', 'type_ServiceProviderAccessDeviceCustomTagDeleteListRequest_scbox', 'type_ServiceProviderAccess...
/**
* Can get the ID of the button controlling
* a collapseable box by concatenating
* this string onto the ID of the box itself.
*/
var B_SFIX = "_button";
/**
* Counter of documentation windows
* Used to give each window a unique name
*/
var windowCount = 0;
/**
* 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;
}
/**
* Closes a collapseable box.
*
* @param boxObj Collapseable box
* @param buttonObj Button controlling box
ocip_html/OCISchemaServiceProvider.xsd.html view on Meta::CPAN
* @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(boxList[idx]+B_SFIX);
openBox(boxObj, buttonObj);
}
}
/**
* Makes all the control buttons of boxes appear.
*
* @param boxList Array of box IDs
*/
function viewControlButtons(boxList) {
var idx;
for (idx = 0; idx < boxList.length; idx++) {
buttonObj = getElementObject(boxList[idx]+B_SFIX);
if (buttonObj != null) {
buttonObj.style.display = "inline";
}
}
}
/**
* Makes all the control buttons of boxes disappear.
*
* @param boxList Array of box IDs
*/
function hideControlButtons(boxList) {
var idx;
for (idx = 0; idx < boxList.length; idx++) {
buttonObj = getElementObject(boxList[idx]+B_SFIX);
if (buttonObj != null) {
buttonObj.style.display = "none";
}
}
}
/**
* Sets the page for either printing mode
* or viewing mode. In printing mode, the page
* is made to be more readable when printing it out.
* In viewing mode, the page is more browsable.
*
* @param isPrinterVersion If true, display in
* printing mode; otherwise,
* in viewing mode
*/
function displayMode(isPrinterVersion) {
var obj;
if (isPrinterVersion) {
// Hide global control buttons
obj = getElementObject("globalControls");
if (obj != null) {
obj.style.visibility = "hidden";
}
// Hide Legend
obj = getElementObject("legend");
if (obj != null) {
obj.style.display = "none";
}
obj = getElementObject("legendTOC");
if (obj != null) {
obj.style.display = "none";
}
// Hide Glossary
obj = getElementObject("glossary");
if (obj != null) {
obj.style.display = "none";
}
obj = getElementObject("glossaryTOC");
if (obj != null) {
obj.style.display = "none";
}
// Expand all XML Instance Representation tables
expandAll(xiBoxes);
// Expand all Schema Component Representation tables
expandAll(scBoxes);
// Hide Control buttons
hideControlButtons(xiBoxes);
hideControlButtons(scBoxes);
} else {
// View global control buttons
obj = getElementObject("globalControls");
if (obj != null) {
obj.style.visibility = "visible";
}
// View Legend
obj = getElementObject("legend");
if (obj != null) {
obj.style.display = "block";
}
obj = getElementObject("legendTOC");
if (obj != null) {
obj.style.display = "block";
}
// View Glossary
obj = getElementObject("glossary");
if (obj != null) {
obj.style.display = "block";
}
obj = getElementObject("glossaryTOC");
if (obj != null) {
obj.style.display = "block";
}
// Expand all XML Instance Representation tables
expandAll(xiBoxes);
// Collapse all Schema Component Representation tables
collapseAll(scBoxes);
// View Control buttons
viewControlButtons(xiBoxes);
viewControlButtons(scBoxes);
}
}
/**
* Opens up a window displaying the documentation
* of a schema component in the XML Instance
* Representation table.
*
* @param compDesc Description of schema component
* @param compName Name of schema component
* @param docTextArray Array containing the paragraphs
* of the new document
*/
function viewDocumentation(compDesc, compName, docTextArray) {
var width = 400;
var height = 200;
var locX = 100;
var locY = 200;
/* Generate content */
var actualText = "<html>";
actualText += "<head><title>";
actualText += compDesc;
if (compName != '') {
actualText += ": " + compName;
}
actualText += "</title></head>";
actualText += "<body bgcolor=\"#FFFFEE\">";
// Title
actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 12pt; font-weight: bold; letter-spacing:1px;\">";
actualText += compDesc;
if (compName != '') {
actualText += ": <span style=\"color:#006699\">" + compName + "</span>";
}
actualText += "</p>";
// Documentation
var idx;
for (idx = 0; idx < docTextArray.length; idx++) {
actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 10pt;\">" + docTextArray[idx] + "</p>";
ocip_html/OCISchemaServiceProvider.xsd.html view on Meta::CPAN
</li>
<li>
<a href="#type_ServiceProviderSessionAdmissionControlWhiteListGetRequest">Complex Type: <strong>ServiceProviderSessionAdmissionControlWhiteListGetRequest</strong>
</a>
</li>
<li>
<a href="#type_ServiceProviderSessionAdmissionControlWhiteListGetResponse">Complex Type: <strong>ServiceProviderSessionAdmissionControlWhiteListGetResponse</strong>
</a>
</li>
<li>
<a href="#type_ServiceProviderSessionAdmissionControlWhiteListModifyRequest">Complex Type: <strong>ServiceProviderSessionAdmissionControlWhiteListModifyRequest</strong>
</a>
</li>
<li>
<a href="#type_ServiceProviderSIPAuthenticationPasswordRulesGetRequest">Complex Type: <strong>ServiceProviderSIPAuthenticationPasswordRulesGetRequest</strong>
</a>
</li>
<li>
<a href="#type_ServiceProviderSIPAuthenticationPasswordRulesGetResponse">Complex Type: <strong>ServiceProviderSIPAuthenticationPasswordRulesGetResponse</strong>
</a>
</li>
<li>
<a href="#type_ServiceProviderSIPAuthenticationPasswordRulesModifyRequest">Complex Type: <strong>ServiceProviderSIPAuthenticationPasswordRulesModifyRequest</strong>
</a>
</li>
<li>
<a href="#type_AnswerConfirmationAnnouncementSelection">Simple Type: <strong>AnswerConfirmationAnnouncementSelection</strong>
</a>
</li>
<li>
<a href="#type_AnswerConfirmationTimeoutSeconds">Simple Type: <strong>AnswerConfirmationTimeoutSeconds</strong>
</a>
</li>
<li>
<a href="#type_ServicePackMigrationAbortErrorThreshold">Simple Type: <strong>ServicePackMigrationAbortErrorThreshold</strong>
</a>
</li>
<li>
<a href="#type_ServicePackMigrationMaxDurationHours">Simple Type: <strong>ServicePackMigrationMaxDurationHours</strong>
</a>
</li>
<li>
<a href="#type_ServicePackMigrationTaskName">Simple Type: <strong>ServicePackMigrationTaskName</strong>
</a>
</li>
<li>
<a href="#type_ServicePackMigrationTaskStatus">Simple Type: <strong>ServicePackMigrationTaskStatus</strong>
</a>
</li>
<li>
<a href="#type_ServicePackMigrationTaskUserSelectionType">Simple Type: <strong>ServicePackMigrationTaskUserSelectionType</strong>
</a>
</li>
<li>
<a href="#type_ServiceProviderPasswordRulesApplyTo">Simple Type: <strong>ServiceProviderPasswordRulesApplyTo</strong>
</a>
</li>
</ul>
</li>
</ul>
<ul style="margin-top: 0em" id="legendTOC">
<li>
<a href="#Legend">Legend</a>
</li>
</ul>
<ul style="margin-top: 0em" id="glossaryTOC">
<li>
<a href="#Glossary">Glossary</a>
</li>
</ul>
<div style="text-align: right; clear: both;">
<a href="#top">top</a>
</div>
<hr />
<h2>
<a name="SchemaProperties">Schema Document Properties</a>
</h2>
<table class="properties">
<tr>
<th>
<a href="#term_TargetNS" title="Look up 'Target Namespace' in glossary">Target Namespace</a>
</th>
<td>None</td>
</tr>
<tr>
<th>Element and Attribute Namespaces</th>
<td>
<ul>
<li>Global element and attribute declarations belong to this schema's target namespace.</li>
<li>By default, local element declarations belong to this schema's target namespace.</li>
<li>By default, local attribute declarations belong to this schema's target namespace.</li>
</ul>
</td>
</tr>
<tr>
<th>Schema Composition</th>
<td>
<ul>
<li>This schema imports schema(s) from the following namespace(s):<ul>
<li>
<em>C</em> (at <a href="OCISchemaBASE.xsd.html" title="Jump to schema documentation for 'OCISchemaBASE.xsd'.">OCISchemaBASE.xsd</a>)</li>
</ul>
</li>
<li>This schema includes components from the following schema document(s):<ul>
<li>
<a href="OCISchemaSearchCriteria.xsd.html" title="Jump to schema documentation for 'OCISchemaSearchCriteria.xsd'.">OCISchemaSearchCriteria.xsd</a>
</li>
<li>
<a href="OCISchemaDataTypes.xsd.html" title="Jump to schema documentation for 'OCISchemaDataTypes.xsd'.">OCISchemaDataTypes.xsd</a>
</li>
</ul>
</li>
</ul>
</td>
</tr>
</table>
<h3>Declared Namespaces</h3>
<table class="namespaces">
<tr>
<th>Prefix</th>
<th>Namespace</th>
ocip_html/OCISchemaServiceProvider.xsd.html view on Meta::CPAN
<table class="hierarchy">
<tr>
<th>Parent type:</th>
<td>
<span class="type">
<a title="Find out namespace of 'xs' prefix" href="#ns_xs">xs</a>:token</span> (derivation method: restriction)</td>
</tr>
<tr>
<th>Sub-types:</th>
<td>None</td>
</tr>
</table>
<table class="properties">
<tr>
<th>Name</th>
<td>ServiceProviderPasswordRulesApplyTo</td>
</tr>
<tr>
<th>Content</th>
<td>
<ul>
<li>Base XSD Type: token</li>
</ul>
<ul>
<li>
<em>value</em> comes from list: {'Administrator'|'Administrator and User'|'Group Administrator and User External Authentication'}</li>
</ul>
</td>
</tr>
<tr xmlns="">
<th>Documentation</th>
<td>
User types for which the Service Provider Password Rules apply.
The rules could apply to the Administrators (Group and Department) or
Administrators (Group and Department) and Users.
</td>
</tr>
</table>
<div class="schemaComponent box">
<div>
<input style="display: none" onclick="switchState('type_ServiceProviderPasswordRulesApplyTo_scbox'); return false;" class="control" id="type_ServiceProviderPasswordRulesApplyTo_scbox_button" type="button" /> <span class="caption">Schema Component Rep...
</div>
<div class="contents" id="type_ServiceProviderPasswordRulesApplyTo_scbox">
<div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span> <span class="scTag">name</span>="<span class="scContent">ServiceProviderPasswordRulesApplyTo</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction<...
<span class="type">
<a title="Find out namespace of 'xs' prefix" href="#ns_xs">xs</a>:token</span>
</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span> <span class="scTag">value</span>="<span class="scContent">Administrator</span>"/></div>
<div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span> <span class="scTag">value</span>="<span class="scContent">Administrator and User</span>"/></div>
<div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span> <span class="scTag">value</span>="<span class="scContent">Group Administrator and User External Authentication</span>"/></div></<span class="scTag">xs:restriction</sp...
</div>
<script type="text/javascript">
<!--
setState('type_ServiceProviderPasswordRulesApplyTo_scbox', false);
// -->
</script>
</div>
<div style="text-align: right; clear: both;">
<a href="#top">top</a>
</div>
<hr />
<div id="legend">
<h2>
<a name="Legend">Legend</a>
</h2>
<div style="float: left; width: 15em;">
<h3 style="margin-bottom: 0px;">Complex Type:</h3>
<div style="margin-left: 0em;" class="hint">Schema Component Type</div>
</div>
<div style="float: left; width: 15em;">
<h3 style="margin-bottom: 0px;">
<span class="name">AusAddress</span>
</h3>
<div style="margin-left: 0em;" class="hint">Schema Component Name</div>
</div>
<table style="clear : both" class="hierarchy">
<tr>
<th>Parent type:</th>
<td>
<span style="color: #0000FF; text-decoration:underline;" class="type">Address</span> (derivation method: extension)</td>
</tr>
<tr>
<th>Sub-types:</th>
<td>
<ul>
<li>
<span style="color: #0000FF; text-decoration:underline;" class="type">QLDAddress</span> (by restriction)</li>
</ul>
</td>
</tr>
</table>
<div class="hint">If this schema component is a type definition, its type hierarchy is shown in a gray-bordered box.</div>
<table class="properties">
<tr>
<th>Name</th>
<td>AusAddress</td>
</tr>
<tr>
<th>
<a href="#term_Abstract" title="Look up 'Abstract' in glossary">Abstract</a>
</th>
<td>no</td>
</tr>
</table>
<div class="hint">The table above displays the properties of this schema component.</div>
<div class="sample box">
<div>
<span class="caption">XML Instance Representation</span>
</div>
<div class="contents">
<span style="margin-left: 0em"><...</span>
<span class="newFields">
<span> country="<span class="fixed">Australia</span>"</span>
</span>> <br />
<span class="inherited" style="margin-left: 1.5em"><unitNo> <span class="type">string</span> </unitNo> <span class="occurs">[0..1]</span>
</span>
<br />
<span class="inherited" style="margin-left: 1.5em"><houseNo> <span class="type">string</span> </houseNo> <span class="occurs">[1]</span>
</span>
<br />
<span class="inherited" style="margin-left: 1.5em"><street> <span class="type">string</span> </street> <span class="occurs">[1]</span>
</span>
( run in 0.531 second using v1.01-cache-2.11-cpan-13bb782fe5a )