/** * Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.web.region; import java.util.ArrayList; import java.util.List; import java.util.Map; import javax.ws.rs.core.UriInfo; 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.id.UniqueId; import com.opengamma.master.region.RegionDocument; import com.opengamma.master.region.RegionMaster; import com.opengamma.web.WebPerRequestData; /** * Data class for web-based regions. */ @BeanDefinition public class WebRegionData extends WebPerRequestData { /** * The region master. */ @PropertyDefinition private RegionMaster _regionMaster; /** * The region id from the input URI. */ @PropertyDefinition private String _uriRegionId; /** * The version id from the URI. */ @PropertyDefinition private String _uriVersionId; /** * The region. */ @PropertyDefinition private RegionDocument _region; /** * The parents of the region. */ @PropertyDefinition private List<RegionDocument> _regionParents = new ArrayList<RegionDocument>(); /** * The children of the region. */ @PropertyDefinition private List<RegionDocument> _regionChildren = new ArrayList<RegionDocument>(); /** * The versioned region. */ @PropertyDefinition private RegionDocument _versioned; /** * Creates an instance. */ public WebRegionData() { } /** * Creates an instance. * @param uriInfo the URI information */ public WebRegionData(final UriInfo uriInfo) { setUriInfo(uriInfo); } //------------------------------------------------------------------------- /** * Gets the best available region id. * @param overrideId the override id, null derives the result from the data * @return the id, may be null */ public String getBestRegionUriId(final UniqueId overrideId) { if (overrideId != null) { return overrideId.toLatest().toString(); } return getRegion() != null ? getRegion().getUniqueId().toLatest().toString() : getUriRegionId(); } //------------------------- AUTOGENERATED START ------------------------- ///CLOVER:OFF /** * The meta-bean for {@code WebRegionData}. * @return the meta-bean, not null */ public static WebRegionData.Meta meta() { return WebRegionData.Meta.INSTANCE; } static { JodaBeanUtils.registerMetaBean(WebRegionData.Meta.INSTANCE); } @Override public WebRegionData.Meta metaBean() { return WebRegionData.Meta.INSTANCE; } //----------------------------------------------------------------------- /** * Gets the region master. * @return the value of the property */ public RegionMaster getRegionMaster() { return _regionMaster; } /** * Sets the region master. * @param regionMaster the new value of the property */ public void setRegionMaster(RegionMaster regionMaster) { this._regionMaster = regionMaster; } /** * Gets the the {@code regionMaster} property. * @return the property, not null */ public final Property<RegionMaster> regionMaster() { return metaBean().regionMaster().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the region id from the input URI. * @return the value of the property */ public String getUriRegionId() { return _uriRegionId; } /** * Sets the region id from the input URI. * @param uriRegionId the new value of the property */ public void setUriRegionId(String uriRegionId) { this._uriRegionId = uriRegionId; } /** * Gets the the {@code uriRegionId} property. * @return the property, not null */ public final Property<String> uriRegionId() { return metaBean().uriRegionId().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the version id from the URI. * @return the value of the property */ public String getUriVersionId() { return _uriVersionId; } /** * Sets the version id from the URI. * @param uriVersionId the new value of the property */ public void setUriVersionId(String uriVersionId) { this._uriVersionId = uriVersionId; } /** * Gets the the {@code uriVersionId} property. * @return the property, not null */ public final Property<String> uriVersionId() { return metaBean().uriVersionId().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the region. * @return the value of the property */ public RegionDocument getRegion() { return _region; } /** * Sets the region. * @param region the new value of the property */ public void setRegion(RegionDocument region) { this._region = region; } /** * Gets the the {@code region} property. * @return the property, not null */ public final Property<RegionDocument> region() { return metaBean().region().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the parents of the region. * @return the value of the property */ public List<RegionDocument> getRegionParents() { return _regionParents; } /** * Sets the parents of the region. * @param regionParents the new value of the property */ public void setRegionParents(List<RegionDocument> regionParents) { this._regionParents = regionParents; } /** * Gets the the {@code regionParents} property. * @return the property, not null */ public final Property<List<RegionDocument>> regionParents() { return metaBean().regionParents().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the children of the region. * @return the value of the property */ public List<RegionDocument> getRegionChildren() { return _regionChildren; } /** * Sets the children of the region. * @param regionChildren the new value of the property */ public void setRegionChildren(List<RegionDocument> regionChildren) { this._regionChildren = regionChildren; } /** * Gets the the {@code regionChildren} property. * @return the property, not null */ public final Property<List<RegionDocument>> regionChildren() { return metaBean().regionChildren().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the versioned region. * @return the value of the property */ public RegionDocument getVersioned() { return _versioned; } /** * Sets the versioned region. * @param versioned the new value of the property */ public void setVersioned(RegionDocument versioned) { this._versioned = versioned; } /** * Gets the the {@code versioned} property. * @return the property, not null */ public final Property<RegionDocument> versioned() { return metaBean().versioned().createProperty(this); } //----------------------------------------------------------------------- @Override public WebRegionData clone() { return JodaBeanUtils.cloneAlways(this); } @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj != null && obj.getClass() == this.getClass()) { WebRegionData other = (WebRegionData) obj; return JodaBeanUtils.equal(getRegionMaster(), other.getRegionMaster()) && JodaBeanUtils.equal(getUriRegionId(), other.getUriRegionId()) && JodaBeanUtils.equal(getUriVersionId(), other.getUriVersionId()) && JodaBeanUtils.equal(getRegion(), other.getRegion()) && JodaBeanUtils.equal(getRegionParents(), other.getRegionParents()) && JodaBeanUtils.equal(getRegionChildren(), other.getRegionChildren()) && JodaBeanUtils.equal(getVersioned(), other.getVersioned()) && super.equals(obj); } return false; } @Override public int hashCode() { int hash = 7; hash = hash * 31 + JodaBeanUtils.hashCode(getRegionMaster()); hash = hash * 31 + JodaBeanUtils.hashCode(getUriRegionId()); hash = hash * 31 + JodaBeanUtils.hashCode(getUriVersionId()); hash = hash * 31 + JodaBeanUtils.hashCode(getRegion()); hash = hash * 31 + JodaBeanUtils.hashCode(getRegionParents()); hash = hash * 31 + JodaBeanUtils.hashCode(getRegionChildren()); hash = hash * 31 + JodaBeanUtils.hashCode(getVersioned()); return hash ^ super.hashCode(); } @Override public String toString() { StringBuilder buf = new StringBuilder(256); buf.append("WebRegionData{"); 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("regionMaster").append('=').append(JodaBeanUtils.toString(getRegionMaster())).append(',').append(' '); buf.append("uriRegionId").append('=').append(JodaBeanUtils.toString(getUriRegionId())).append(',').append(' '); buf.append("uriVersionId").append('=').append(JodaBeanUtils.toString(getUriVersionId())).append(',').append(' '); buf.append("region").append('=').append(JodaBeanUtils.toString(getRegion())).append(',').append(' '); buf.append("regionParents").append('=').append(JodaBeanUtils.toString(getRegionParents())).append(',').append(' '); buf.append("regionChildren").append('=').append(JodaBeanUtils.toString(getRegionChildren())).append(',').append(' '); buf.append("versioned").append('=').append(JodaBeanUtils.toString(getVersioned())).append(',').append(' '); } //----------------------------------------------------------------------- /** * The meta-bean for {@code WebRegionData}. */ public static class Meta extends WebPerRequestData.Meta { /** * The singleton instance of the meta-bean. */ static final Meta INSTANCE = new Meta(); /** * The meta-property for the {@code regionMaster} property. */ private final MetaProperty<RegionMaster> _regionMaster = DirectMetaProperty.ofReadWrite( this, "regionMaster", WebRegionData.class, RegionMaster.class); /** * The meta-property for the {@code uriRegionId} property. */ private final MetaProperty<String> _uriRegionId = DirectMetaProperty.ofReadWrite( this, "uriRegionId", WebRegionData.class, String.class); /** * The meta-property for the {@code uriVersionId} property. */ private final MetaProperty<String> _uriVersionId = DirectMetaProperty.ofReadWrite( this, "uriVersionId", WebRegionData.class, String.class); /** * The meta-property for the {@code region} property. */ private final MetaProperty<RegionDocument> _region = DirectMetaProperty.ofReadWrite( this, "region", WebRegionData.class, RegionDocument.class); /** * The meta-property for the {@code regionParents} property. */ @SuppressWarnings({"unchecked", "rawtypes" }) private final MetaProperty<List<RegionDocument>> _regionParents = DirectMetaProperty.ofReadWrite( this, "regionParents", WebRegionData.class, (Class) List.class); /** * The meta-property for the {@code regionChildren} property. */ @SuppressWarnings({"unchecked", "rawtypes" }) private final MetaProperty<List<RegionDocument>> _regionChildren = DirectMetaProperty.ofReadWrite( this, "regionChildren", WebRegionData.class, (Class) List.class); /** * The meta-property for the {@code versioned} property. */ private final MetaProperty<RegionDocument> _versioned = DirectMetaProperty.ofReadWrite( this, "versioned", WebRegionData.class, RegionDocument.class); /** * The meta-properties. */ private final Map<String, MetaProperty<?>> _metaPropertyMap$ = new DirectMetaPropertyMap( this, (DirectMetaPropertyMap) super.metaPropertyMap(), "regionMaster", "uriRegionId", "uriVersionId", "region", "regionParents", "regionChildren", "versioned"); /** * Restricted constructor. */ protected Meta() { } @Override protected MetaProperty<?> metaPropertyGet(String propertyName) { switch (propertyName.hashCode()) { case -1820969354: // regionMaster return _regionMaster; case -2147467077: // uriRegionId return _uriRegionId; case 666567687: // uriVersionId return _uriVersionId; case -934795532: // region return _region; case 2045674357: // regionParents return _regionParents; case -524241645: // regionChildren return _regionChildren; case -1407102089: // versioned return _versioned; } return super.metaPropertyGet(propertyName); } @Override public BeanBuilder<? extends WebRegionData> builder() { return new DirectBeanBuilder<WebRegionData>(new WebRegionData()); } @Override public Class<? extends WebRegionData> beanType() { return WebRegionData.class; } @Override public Map<String, MetaProperty<?>> metaPropertyMap() { return _metaPropertyMap$; } //----------------------------------------------------------------------- /** * The meta-property for the {@code regionMaster} property. * @return the meta-property, not null */ public final MetaProperty<RegionMaster> regionMaster() { return _regionMaster; } /** * The meta-property for the {@code uriRegionId} property. * @return the meta-property, not null */ public final MetaProperty<String> uriRegionId() { return _uriRegionId; } /** * The meta-property for the {@code uriVersionId} property. * @return the meta-property, not null */ public final MetaProperty<String> uriVersionId() { return _uriVersionId; } /** * The meta-property for the {@code region} property. * @return the meta-property, not null */ public final MetaProperty<RegionDocument> region() { return _region; } /** * The meta-property for the {@code regionParents} property. * @return the meta-property, not null */ public final MetaProperty<List<RegionDocument>> regionParents() { return _regionParents; } /** * The meta-property for the {@code regionChildren} property. * @return the meta-property, not null */ public final MetaProperty<List<RegionDocument>> regionChildren() { return _regionChildren; } /** * The meta-property for the {@code versioned} property. * @return the meta-property, not null */ public final MetaProperty<RegionDocument> versioned() { return _versioned; } //----------------------------------------------------------------------- @Override protected Object propertyGet(Bean bean, String propertyName, boolean quiet) { switch (propertyName.hashCode()) { case -1820969354: // regionMaster return ((WebRegionData) bean).getRegionMaster(); case -2147467077: // uriRegionId return ((WebRegionData) bean).getUriRegionId(); case 666567687: // uriVersionId return ((WebRegionData) bean).getUriVersionId(); case -934795532: // region return ((WebRegionData) bean).getRegion(); case 2045674357: // regionParents return ((WebRegionData) bean).getRegionParents(); case -524241645: // regionChildren return ((WebRegionData) bean).getRegionChildren(); case -1407102089: // versioned return ((WebRegionData) bean).getVersioned(); } return super.propertyGet(bean, propertyName, quiet); } @SuppressWarnings("unchecked") @Override protected void propertySet(Bean bean, String propertyName, Object newValue, boolean quiet) { switch (propertyName.hashCode()) { case -1820969354: // regionMaster ((WebRegionData) bean).setRegionMaster((RegionMaster) newValue); return; case -2147467077: // uriRegionId ((WebRegionData) bean).setUriRegionId((String) newValue); return; case 666567687: // uriVersionId ((WebRegionData) bean).setUriVersionId((String) newValue); return; case -934795532: // region ((WebRegionData) bean).setRegion((RegionDocument) newValue); return; case 2045674357: // regionParents ((WebRegionData) bean).setRegionParents((List<RegionDocument>) newValue); return; case -524241645: // regionChildren ((WebRegionData) bean).setRegionChildren((List<RegionDocument>) newValue); return; case -1407102089: // versioned ((WebRegionData) bean).setVersioned((RegionDocument) newValue); return; } super.propertySet(bean, propertyName, newValue, quiet); } } ///CLOVER:ON //-------------------------- AUTOGENERATED END -------------------------- }