Package es.emergya.bbdd.bean

Examples of es.emergya.bbdd.bean.Configuracion


  @Transactional(propagation = Propagation.REQUIRES_NEW, readOnly = true, rollbackFor = Throwable.class)
  public String getStringValue(String key) {
    String res = getConfiguration(key);
    try {
      Configuracion c = this.get(key);
      if (c != null) {
        res = c.getValor();
        if (!c.getUpdatable())
          setConfiguration(key, res);
      }
    } catch (Throwable t) {
      log.error("Configuracion no encontrada", t);
    }
View Full Code Here

TOP

Related Classes of es.emergya.bbdd.bean.Configuracion

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.