/** * Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.financial.security.future; import java.util.Map; import org.joda.beans.Bean; import org.joda.beans.BeanBuilder; import org.joda.beans.BeanDefinition; import org.joda.beans.JodaBeanUtils; import org.joda.beans.MetaProperty; import org.joda.beans.Property; import org.joda.beans.PropertyDefinition; import org.joda.beans.impl.direct.DirectBeanBuilder; import org.joda.beans.impl.direct.DirectMetaProperty; import org.joda.beans.impl.direct.DirectMetaPropertyMap; import com.opengamma.financial.security.FinancialSecurityVisitor; import com.opengamma.id.ExternalId; import com.opengamma.util.money.Currency; import com.opengamma.util.time.Expiry; /** * A security for stock futures. */ @BeanDefinition public class StockFutureSecurity extends FutureSecurity { /** Serialization version. */ private static final long serialVersionUID = 1L; /** * The underlying identifier. */ @PropertyDefinition private ExternalId _underlyingId; StockFutureSecurity() { //For builder super(); } public StockFutureSecurity(Expiry expiry, String tradingExchange, String settlementExchange, Currency currency, double unitAmount, String category) { super(expiry, tradingExchange, settlementExchange, currency, unitAmount, category); } //------------------------------------------------------------------------- @Override public <T> T accept(FinancialSecurityVisitor<T> visitor) { return visitor.visitStockFutureSecurity(this); } //------------------------- AUTOGENERATED START ------------------------- ///CLOVER:OFF /** * The meta-bean for {@code StockFutureSecurity}. * @return the meta-bean, not null */ public static StockFutureSecurity.Meta meta() { return StockFutureSecurity.Meta.INSTANCE; } static { JodaBeanUtils.registerMetaBean(StockFutureSecurity.Meta.INSTANCE); } @Override public StockFutureSecurity.Meta metaBean() { return StockFutureSecurity.Meta.INSTANCE; } //----------------------------------------------------------------------- /** * Gets the underlying identifier. * @return the value of the property */ public ExternalId getUnderlyingId() { return _underlyingId; } /** * Sets the underlying identifier. * @param underlyingId the new value of the property */ public void setUnderlyingId(ExternalId underlyingId) { this._underlyingId = underlyingId; } /** * Gets the the {@code underlyingId} property. * @return the property, not null */ public final Property<ExternalId> underlyingId() { return metaBean().underlyingId().createProperty(this); } //----------------------------------------------------------------------- @Override public StockFutureSecurity clone() { return JodaBeanUtils.cloneAlways(this); } @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj != null && obj.getClass() == this.getClass()) { StockFutureSecurity other = (StockFutureSecurity) obj; return JodaBeanUtils.equal(getUnderlyingId(), other.getUnderlyingId()) && super.equals(obj); } return false; } @Override public int hashCode() { int hash = 7; hash = hash * 31 + JodaBeanUtils.hashCode(getUnderlyingId()); return hash ^ super.hashCode(); } @Override public String toString() { StringBuilder buf = new StringBuilder(64); buf.append("StockFutureSecurity{"); int len = buf.length(); toString(buf); if (buf.length() > len) { buf.setLength(buf.length() - 2); } buf.append('}'); return buf.toString(); } @Override protected void toString(StringBuilder buf) { super.toString(buf); buf.append("underlyingId").append('=').append(JodaBeanUtils.toString(getUnderlyingId())).append(',').append(' '); } //----------------------------------------------------------------------- /** * The meta-bean for {@code StockFutureSecurity}. */ public static class Meta extends FutureSecurity.Meta { /** * The singleton instance of the meta-bean. */ static final Meta INSTANCE = new Meta(); /** * The meta-property for the {@code underlyingId} property. */ private final MetaProperty<ExternalId> _underlyingId = DirectMetaProperty.ofReadWrite( this, "underlyingId", StockFutureSecurity.class, ExternalId.class); /** * The meta-properties. */ private final Map<String, MetaProperty<?>> _metaPropertyMap$ = new DirectMetaPropertyMap( this, (DirectMetaPropertyMap) super.metaPropertyMap(), "underlyingId"); /** * Restricted constructor. */ protected Meta() { } @Override protected MetaProperty<?> metaPropertyGet(String propertyName) { switch (propertyName.hashCode()) { case -771625640: // underlyingId return _underlyingId; } return super.metaPropertyGet(propertyName); } @Override public BeanBuilder<? extends StockFutureSecurity> builder() { return new DirectBeanBuilder<StockFutureSecurity>(new StockFutureSecurity()); } @Override public Class<? extends StockFutureSecurity> beanType() { return StockFutureSecurity.class; } @Override public Map<String, MetaProperty<?>> metaPropertyMap() { return _metaPropertyMap$; } //----------------------------------------------------------------------- /** * The meta-property for the {@code underlyingId} property. * @return the meta-property, not null */ public final MetaProperty<ExternalId> underlyingId() { return _underlyingId; } //----------------------------------------------------------------------- @Override protected Object propertyGet(Bean bean, String propertyName, boolean quiet) { switch (propertyName.hashCode()) { case -771625640: // underlyingId return ((StockFutureSecurity) bean).getUnderlyingId(); } return super.propertyGet(bean, propertyName, quiet); } @Override protected void propertySet(Bean bean, String propertyName, Object newValue, boolean quiet) { switch (propertyName.hashCode()) { case -771625640: // underlyingId ((StockFutureSecurity) bean).setUnderlyingId((ExternalId) newValue); return; } super.propertySet(bean, propertyName, newValue, quiet); } } ///CLOVER:ON //-------------------------- AUTOGENERATED END -------------------------- }