Package org.openqreg.bean

Examples of org.openqreg.bean.Lan


   * @return lanname if it is found, else return empty string
   */
  public static String getLanname(String lancode){
    String lanname = "";
    try{
      Lan lan = (Lan)LanFinderBase.findByPrimaryKey(new LanKey(lancode));
      if(lan != null && lan.getLannamn() != null){
        lanname = lan.getLannamn();
      }
    }catch(SQLException sqle){
      log.log(Level.ERROR, sqle);
    }
    return lanname;
View Full Code Here

TOP

Related Classes of org.openqreg.bean.Lan

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.