Package com.calexo.openhra.interfaces.ejb

Examples of com.calexo.openhra.interfaces.ejb.ConfigHome


   */
  public static String getConfig(String pId)
  {
    //Logger log = Logger.getLogger(ToNamed.class);
   
    ConfigHome cfgHome;
    String ret=null;
    try {
      //cfgHome = ConfigUtil.getHome(getInitialContextProps());
      cfgHome = ConfigUtil.getHome();
      ret =  ((Config)cfgHome.findByPrimaryKey(pId)).getConfigString();
    } catch (Exception e) {
      //e.printStackTrace();
      System.err.println("getConfig(" + pId + ") introuvable");
      return null;
    }
View Full Code Here

TOP

Related Classes of com.calexo.openhra.interfaces.ejb.ConfigHome

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.