Package it.eng.spagobi.commons.dao

Examples of it.eng.spagobi.commons.dao.DomainDAOHibImpl


    }
   
    try {
      Domain domain = null;
      Config config = (Config)o;
      DomainDAOHibImpl domainImpl = new DomainDAOHibImpl();
      if(config.getValueTypeId() != null){
        domain = domainImpl.loadDomainById(config.getValueTypeId());
      }
      result = new JSONObject();
      result.put(CONFIG_CODE, config.getLabel()); // BIOBJ_TYPE
      result.put(CONFIG_NAME, config.getName()); // BI Object types
     
View Full Code Here


    config.setDescription(this.getAttributeAsString("DESCRIPTION"));
    config.setActive(this.getAttributeAsBoolean("IS_ACTIVE"));
    config.setValueCheck(this.getAttributeAsString("VALUE_CHECK"));
    config.setCategory(this.getAttributeAsString("CATEGORY"));
    if (this.requestContainsAttribute("VALUE_TYPE")) {
      DomainDAOHibImpl domain = new DomainDAOHibImpl();
      Domain dom = domain.loadDomainByCodeAndValue("PAR_TYPE", this
          .getAttributeAsString("VALUE_TYPE"));
      config.setValueTypeId(dom.getValueId());
    }

    logger.debug("OUT");
View Full Code Here

TOP

Related Classes of it.eng.spagobi.commons.dao.DomainDAOHibImpl

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.