// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-793 // 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.03 at 05:59:50 PM CEST // package com.sun.jersey.json.impl.rim; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * * Represents a dynamic reference to a RegistryObjectType instance. * target of reference is determined by the result of the Query * sub-element. * * * <p>Java class for DynamicObjectRefType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DynamicObjectRefType"> * <complexContent> * <extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ObjectRefType"> * <sequence> * <element name="Query" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}QueryType"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DynamicObjectRefType", propOrder = { "query" }) public class DynamicObjectRefType extends ObjectRefType { @XmlElement(name = "Query", required = true) protected QueryType query; /** * Gets the value of the query property. * * @return * possible object is * {@link QueryType } * */ public QueryType getQuery() { return query; } /** * Sets the value of the query property. * * @param value * allowed object is * {@link QueryType } * */ public void setQuery(QueryType value) { this.query = value; } }