/** * Copyright (C) 2012 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.component.factory.user; import java.util.LinkedHashMap; 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.component.ComponentInfo; import com.opengamma.component.ComponentRepository; import com.opengamma.component.factory.AbstractComponentFactory; import com.opengamma.livedata.UserPrincipal; /** * Component factory for a shared user */ @BeanDefinition public class SharedUserComponentFactory extends AbstractComponentFactory { /** * The user name. */ @PropertyDefinition(validate = "notNull") private String _userName; //------------------------------------------------------------------------- @Override public void init(ComponentRepository repo, LinkedHashMap<String, String> configuration) throws Exception { UserPrincipal sharedUser = UserPrincipal.getLocalUser(getUserName()); ComponentInfo info = new ComponentInfo(UserPrincipal.class, "shared"); repo.registerComponent(info, sharedUser); } //------------------------- AUTOGENERATED START ------------------------- ///CLOVER:OFF /** * The meta-bean for {@code SharedUserComponentFactory}. * @return the meta-bean, not null */ public static SharedUserComponentFactory.Meta meta() { return SharedUserComponentFactory.Meta.INSTANCE; } static { JodaBeanUtils.registerMetaBean(SharedUserComponentFactory.Meta.INSTANCE); } @Override public SharedUserComponentFactory.Meta metaBean() { return SharedUserComponentFactory.Meta.INSTANCE; } //----------------------------------------------------------------------- /** * Gets the user name. * @return the value of the property, not null */ public String getUserName() { return _userName; } /** * Sets the user name. * @param userName the new value of the property, not null */ public void setUserName(String userName) { JodaBeanUtils.notNull(userName, "userName"); this._userName = userName; } /** * Gets the the {@code userName} property. * @return the property, not null */ public final Property<String> userName() { return metaBean().userName().createProperty(this); } //----------------------------------------------------------------------- @Override public SharedUserComponentFactory clone() { return JodaBeanUtils.cloneAlways(this); } @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj != null && obj.getClass() == this.getClass()) { SharedUserComponentFactory other = (SharedUserComponentFactory) obj; return JodaBeanUtils.equal(getUserName(), other.getUserName()) && super.equals(obj); } return false; } @Override public int hashCode() { int hash = 7; hash = hash * 31 + JodaBeanUtils.hashCode(getUserName()); return hash ^ super.hashCode(); } @Override public String toString() { StringBuilder buf = new StringBuilder(64); buf.append("SharedUserComponentFactory{"); 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("userName").append('=').append(JodaBeanUtils.toString(getUserName())).append(',').append(' '); } //----------------------------------------------------------------------- /** * The meta-bean for {@code SharedUserComponentFactory}. */ public static class Meta extends AbstractComponentFactory.Meta { /** * The singleton instance of the meta-bean. */ static final Meta INSTANCE = new Meta(); /** * The meta-property for the {@code userName} property. */ private final MetaProperty<String> _userName = DirectMetaProperty.ofReadWrite( this, "userName", SharedUserComponentFactory.class, String.class); /** * The meta-properties. */ private final Map<String, MetaProperty<?>> _metaPropertyMap$ = new DirectMetaPropertyMap( this, (DirectMetaPropertyMap) super.metaPropertyMap(), "userName"); /** * Restricted constructor. */ protected Meta() { } @Override protected MetaProperty<?> metaPropertyGet(String propertyName) { switch (propertyName.hashCode()) { case -266666762: // userName return _userName; } return super.metaPropertyGet(propertyName); } @Override public BeanBuilder<? extends SharedUserComponentFactory> builder() { return new DirectBeanBuilder<SharedUserComponentFactory>(new SharedUserComponentFactory()); } @Override public Class<? extends SharedUserComponentFactory> beanType() { return SharedUserComponentFactory.class; } @Override public Map<String, MetaProperty<?>> metaPropertyMap() { return _metaPropertyMap$; } //----------------------------------------------------------------------- /** * The meta-property for the {@code userName} property. * @return the meta-property, not null */ public final MetaProperty<String> userName() { return _userName; } //----------------------------------------------------------------------- @Override protected Object propertyGet(Bean bean, String propertyName, boolean quiet) { switch (propertyName.hashCode()) { case -266666762: // userName return ((SharedUserComponentFactory) bean).getUserName(); } return super.propertyGet(bean, propertyName, quiet); } @Override protected void propertySet(Bean bean, String propertyName, Object newValue, boolean quiet) { switch (propertyName.hashCode()) { case -266666762: // userName ((SharedUserComponentFactory) bean).setUserName((String) newValue); return; } super.propertySet(bean, propertyName, newValue, quiet); } @Override protected void validate(Bean bean) { JodaBeanUtils.notNull(((SharedUserComponentFactory) bean)._userName, "userName"); super.validate(bean); } } ///CLOVER:ON //-------------------------- AUTOGENERATED END -------------------------- }