package org.archfirst.bfoms.interfaceout.exchange.marketdataadapter.client; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for MarketPrice complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="MarketPrice"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Symbol" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Price" type="{http://archfirst.org/bfexch/marketdataservice.wsdl}Money"/> * <element name="Effective" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MarketPrice", propOrder = { "symbol", "price", "effective" }) public class MarketPrice { @XmlElement(name = "Symbol", required = true) protected String symbol; @XmlElement(name = "Price", required = true) protected Money price; @XmlElement(name = "Effective", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar effective; /** * Gets the value of the symbol property. * * @return * possible object is * {@link String } * */ public String getSymbol() { return symbol; } /** * Sets the value of the symbol property. * * @param value * allowed object is * {@link String } * */ public void setSymbol(String value) { this.symbol = value; } /** * Gets the value of the price property. * * @return * possible object is * {@link Money } * */ public Money getPrice() { return price; } /** * Sets the value of the price property. * * @param value * allowed object is * {@link Money } * */ public void setPrice(Money value) { this.price = value; } /** * Gets the value of the effective property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEffective() { return effective; } /** * Sets the value of the effective property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEffective(XMLGregorianCalendar value) { this.effective = value; } }