mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
- Simple Ruby web service examples - Outstanding work around persiatancy of models in the repository git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2094 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
29 lines
1010 B
XML
29 lines
1010 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.alfresco.org/ws/headers/1.0" xmlns:headers="http://www.alfresco.org/ws/headers/1.0" elementFormDefault="qualified" version="0.1">
|
|
|
|
<complexType name="QueryConfiguration">
|
|
<sequence>
|
|
<element name="fetchSize" type="int" default="500"></element>
|
|
</sequence>
|
|
</complexType>
|
|
|
|
<complexType name="LocaleConfiguration">
|
|
<sequence>
|
|
<element name="locale" type="string" maxOccurs="1" minOccurs="0"></element>
|
|
</sequence>
|
|
</complexType>
|
|
|
|
<complexType name="NamespaceConfiguration">
|
|
<sequence>
|
|
<element name="mapping" maxOccurs="unbounded" minOccurs="0" type="headers:NamespaceConfigurationInner"></element>
|
|
</sequence>
|
|
</complexType>
|
|
|
|
<complexType name="NamespaceConfigurationInner">
|
|
<sequence>
|
|
<element name="prefix" type="NCName"></element>
|
|
<element name="uri" type="string"></element>
|
|
</sequence>
|
|
</complexType>
|
|
|
|
</schema> |