blob: a45a7dcbc572b598fe331ba0e9179b1f99b4e05c [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2009.07.19 at 09:49:41 PM CDT
//
package org.apache.ws.scout.model.uddi.v2;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for keyedReference complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="keyedReference">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="tModelKey" type="{urn:uddi-org:api_v2}tModelKey" />
* &lt;attribute name="keyName" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="keyValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "keyedReference")
public class KeyedReference {
@XmlAttribute
protected String tModelKey;
@XmlAttribute
protected String keyName;
@XmlAttribute(required = true)
protected String keyValue;
/**
* Gets the value of the tModelKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTModelKey() {
return tModelKey;
}
/**
* Sets the value of the tModelKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTModelKey(String value) {
this.tModelKey = value;
}
/**
* Gets the value of the keyName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyName() {
return keyName;
}
/**
* Sets the value of the keyName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKeyName(String value) {
this.keyName = value;
}
/**
* Gets the value of the keyValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyValue() {
return keyValue;
}
/**
* Sets the value of the keyValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKeyValue(String value) {
this.keyValue = value;
}
}