All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cloudgraph.state.UUID Maven / Gradle / Ivy

Go to download

CloudGraph(tm) is a suite of Service Data Object (SDO) 2.1 services designed for relational and big-table style "cloud" databases, such as HBase and others.

There is a newer version: 0.7.1
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.09.11 at 04:43:08 PM MST 
//


package org.cloudgraph.state;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 
 * A unique identifier for an instance 
 * containing a universally unique identifier (UUID) mapped to
 * a type identifier, unique to all types used within a graph,
 * and a sequence id for the instance.
 * 

* This an other mappings within the state structure are * designed and included for the purpose of consolidation of * potentially repetitive data which would otherwise be included * within cells as column data or as part of composite column * qualifiers. *

* @author Scott Cinnamond * @since 0.5.2 * * * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UUID", propOrder = { "value" }) public class UUID { @XmlValue protected String value; @XmlAttribute(name = "id", required = true) protected int id; @XmlAttribute(name = "typeId", required = true) protected int typeId; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * * The sequence identifier unique to all instances of this type * within a single graph, as indicated by the given type identifier. * * */ public int getId() { return id; } /** * Sets the value of the id property. * */ public void setId(int value) { this.id = value; } /** * * The sequence identifier of the SDO type which identifies the type under which * an instance was persisted. The type mey be an abstract type or * derivative (a sub-type) of an abstract or concrete type. * * */ public int getTypeId() { return typeId; } /** * Sets the value of the typeId property. * */ public void setTypeId(int value) { this.typeId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy