Package org.apache.openmeetings.db.dao.basic

Examples of org.apache.openmeetings.db.dao.basic.ConfigurationDao


    AjaxFormValidatingBehavior.addToAllFormComponents(this, "keydown", Duration.ONE_SECOND);
  }
 
  @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

Related Classes of org.apache.openmeetings.db.dao.basic.ConfigurationDao

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.