HBASE-8685 [REST] Minor fix to XMLSchema.xsd and ScannerModel

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1494443 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2013-06-19 04:06:58 +00:00
parent d26e3212ba
commit 6fd96ef4e9
2 changed files with 2 additions and 4 deletions

View File

@ -56,8 +56,8 @@ import com.sun.jersey.api.json.JSONUnmarshaller;
* <complexType name="Scanner">
* <sequence>
* <element name="column" type="base64Binary" minOccurs="0" maxOccurs="unbounded"/>
* <element name="filter" type="string" minOccurs="0" maxOccurs="1"></element>
* </sequence>
* <element name="filter" type="string" minOccurs="0" maxOccurs="1"></element>
* <attribute name="startRow" type="base64Binary"></attribute>
* <attribute name="endRow" type="base64Binary"></attribute>
* <attribute name="batch" type="int"></attribute>

View File

@ -98,7 +98,7 @@
<complexType name="Cell">
<sequence>
<element name="value" maxOccurs="1" minOccurs="1">
<simpleType><restriction base="base64Binary">
<simpleType><restriction base="base64Binary" />
</simpleType>
</element>
</sequence>
@ -111,8 +111,6 @@
<complexType name="Scanner">
<sequence>
<element name="column" type="base64Binary" minOccurs="0" maxOccurs="unbounded"></element>
</sequence>
<sequence>
<element name="filter" type="string" minOccurs="0" maxOccurs="1"></element>
</sequence>
<attribute name="startRow" type="base64Binary"></attribute>