Examples of forceGet()


Examples of org.apache.openmeetings.db.dao.basic.ConfigurationDao.forceGet()

  }
 
  @Override
  protected void onSaveSubmit(AjaxRequestTarget target, Form<?> form) {
    ConfigurationDao cfgDao = getBean(ConfigurationDao.class);
    Configuration c = cfgDao.forceGet(getModelObject().getConf_key());
    if (c != null && c.isDeleted() && !c.getConfiguration_id().equals(getModelObject().getConfiguration_id())) {
      getModelObject().setConfiguration_id(c.getConfiguration_id());
    }
    setModelObject(getBean(ConfigurationDao.class).update(getModelObject(), WebSession.getUserId()));
    hideNewRecord();
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.