Examples of Kommun


Examples of org.openqreg.bean.Kommun

   * @return kommunname if it is found, else return empty string
   */
  public static String getKommunname(String kommuncode){
    String kommunname = "";
    try{
      Kommun kommun = (Kommun)KommunFinderBase.findByPrimaryKey(new KommunKey(kommuncode));
      if(kommun != null && kommun.getKommunnamn() != null){
        kommunname = kommun.getKommunnamn();
      }
    }catch(SQLException sqle){
      log.log(Level.ERROR, sqle);
    }
    return kommunname;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.