Class CellSetModel

java.lang.Object
org.apache.hadoop.hbase.rest.model.CellSetModel
All Implemented Interfaces:
Serializable, ProtobufMessageHandler

@Private public class CellSetModel extends Object implements Serializable, ProtobufMessageHandler
Representation of a grouping of cells. May contain cells from more than one row. Encapsulates RowModel and CellModel models.
 <complexType name="CellSet">
   <sequence>
     <element name="row" type="tns:Row" maxOccurs="unbounded"
       minOccurs="1"></element>
   </sequence>
 </complexType>

 <complexType name="Row">
   <sequence>
     <element name="key" type="base64Binary"></element>
     <element name="cell" type="tns:Cell"
       maxOccurs="unbounded" minOccurs="1"></element>
   </sequence>
 </complexType>

 <complexType name="Cell">
   <sequence>
     <element name="value" maxOccurs="1" minOccurs="1">
       <simpleType>
         <restriction base="base64Binary"/>
       </simpleType>
     </element>
   </sequence>
   <attribute name="column" type="base64Binary" />
   <attribute name="timestamp" type="int" />
 </complexType>
 
See Also: