Package org.openqreg.bean

Examples of org.openqreg.bean.Forsamling


   * @return forsamlingsname if it is found, else return empty string
   */
  public static String getForsamlingsname(String forsamlingscode){
    String forsamlingsname = "";
    try{
      Forsamling forsamling = (Forsamling)ForsamlingFinderBase.
            findByPrimaryKey(new ForsamlingKey(forsamlingscode));
      if(forsamling != null && forsamling.getForsamlingsnamn() != null){
        forsamlingsname = forsamling.getForsamlingsnamn();
      }
    }catch(SQLException sqle){
      log.log(Level.ERROR, sqle);
    }
    return forsamlingsname;
View Full Code Here

TOP

Related Classes of org.openqreg.bean.Forsamling

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.