Package com.opengamma.masterdb.security.hibernate.bond

Examples of com.opengamma.masterdb.security.hibernate.bond.IssuerTypeBean


  // IssuerTypeBean
  @Override
  public IssuerTypeBean getOrCreateIssuerTypeBean(final String type) {
    final Query query = getSession().getNamedQuery("IssuerTypeBean.one");
    query.setString("name", type);
    IssuerTypeBean bean = (IssuerTypeBean) query.uniqueResult();
    if (bean == null) {
      bean = persistBean(new IssuerTypeBean(type));
    }
    return bean;
  }
View Full Code Here

TOP

Related Classes of com.opengamma.masterdb.security.hibernate.bond.IssuerTypeBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.