/** * Copyright (C) 2012 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.masterdb.security.hibernate.forward; import com.opengamma.financial.security.forward.MetalForwardSecurity; /** * A Hibernate bean representation of {@link MetalForwardSecurity}. */ public class MetalForwardSecurityBean extends CommodityForwardSecurityBean { @Override public <T> T accept(Visitor<T> visitor) { return visitor.visitMetalForwardType(this); } }