Examples of LdapConfig


Examples of org.apache.openmeetings.db.entity.server.LdapConfig

   */
  public boolean getLdapPwdSynchStatus(Long ldapConfigId) { // TIBO
    // Retrieve Configuration Data
    HashMap<String, String> configData;

    LdapConfig ldapConfig = ldapConfigDao.get(ldapConfigId);

    try {
      configData = getLdapConfigData(ldapConfig.getConfigFileName());
    } catch (Exception e) {
      log.error("Error on getLdapPwdSynchStatus : " + e.getMessage());
      return true;
    }

View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

  public Long addLdapConfig(String name, Boolean addDomainToUserName,
      String configFileName, String domain, Long insertedby,
      Boolean isActive) {
    try {

      LdapConfig ldapConfig = new LdapConfig();
      ldapConfig.setAddDomainToUserName(addDomainToUserName);
      ldapConfig.setConfigFileName(configFileName);
      ldapConfig.setDeleted(false);
      ldapConfig.setDomain(domain);
      ldapConfig.setIsActive(isActive);
      ldapConfig.setName(name);
      ldapConfig.setInserted(new Date());
      if (insertedby != null) {
        log.debug("addLdapConfig :1: " + usersDao.get(insertedby));
        ldapConfig.setInsertedby(usersDao.get(insertedby));
      }

      log.debug("addLdapConfig :2: " + insertedby);

      ldapConfig = em.merge(ldapConfig);
      Long ldapConfigId = ldapConfig.getLdapConfigId();

      if (ldapConfigId > 0) {
        return ldapConfigId;
      } else {
        throw new Exception("Could not store SOAPLogin");
View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

  public Long updateLdapConfig(Long ldapConfigId, String name,
      Boolean addDomainToUserName, String configFileName, String domain,
      Long updatedby, Boolean isActive) {
    try {

      LdapConfig ldapConfig = this.get(ldapConfigId);

      if (ldapConfig == null) {
        return -1L;
      }

      ldapConfig.setAddDomainToUserName(addDomainToUserName);
      ldapConfig.setConfigFileName(configFileName);
      ldapConfig.setDeleted(false);
      ldapConfig.setDomain(domain);
      ldapConfig.setIsActive(isActive);
      ldapConfig.setName(name);
      ldapConfig.setUpdated(new Date());
      if (updatedby != null) {
        log.debug("updateLdapConfig :1: " + usersDao.get(updatedby));
        ldapConfig.setUpdatedby(usersDao.get(updatedby));
      }

      log.debug("updateLdapConfig :2: " + updatedby);

      ldapConfig = em.merge(ldapConfig);
      ldapConfigId = ldapConfig.getLdapConfigId();

      return ldapConfigId;

    } catch (Exception ex2) {
      log.error("[updateLdapConfig]: ", ex2);
View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

      TypedQuery<LdapConfig> query = em
          .createQuery(hql, LdapConfig.class);
      query.setParameter("ldapConfigId", ldapConfigId);
      query.setParameter("deleted", false);

      LdapConfig ldapConfig = null;
      try {
        ldapConfig = query.getSingleResult();
      } catch (NoResultException ex) {
      }
View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

    return query.getResultList();
  }

  public List<LdapConfig> getLdapConfigs() {
    //Add localhost Domain
    LdapConfig ldapConfig = new LdapConfig();
   
    ldapConfig.setName("local DB [internal]");
    ldapConfig.setLdapConfigId(-1);

    List<LdapConfig> result = new ArrayList<LdapConfig>();
    result.add(ldapConfig);
    result.addAll(getActiveLdapConfigs());
    return result;
View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

      , new SearchableDataProvider<LdapConfig>(LdapConfigDao.class)) {
      private static final long serialVersionUID = 8715559628755439596L;

      @Override
      protected void populateItem(final Item<LdapConfig> item) {
        final LdapConfig lc = item.getModelObject();
        item.add(new Label("ldapConfigId", "" + lc.getLdapConfigId()));
        item.add(new Label("name", "" + lc.getName()));
        item.add(new Label("configFileName", "" + lc.getConfigFileName()));
        item.add(new AjaxEventBehavior("onclick") {
          private static final long serialVersionUID = -8069413566800571061L;

          protected void onEvent(AjaxRequestTarget target) {
            form.setModelObject(lc);
            form.hideNewRecord();
            target.add(form, listContainer);
            target.appendJavaScript("omLdapPanelInit();");
          }
        });
        item.add(AttributeModifier.replace("class", "clickable "
            + ((item.getIndex() % 2 == 1) ? "even" : "odd")
            + (lc.getLdapConfigId() == form.getModelObject().getLdapConfigId() ? " selected" : "")));
      }
    };
    add(listContainer.add(dataView).setOutputMarkupId(true));
    PagedEntityListPanel navigator = new PagedEntityListPanel("navigator", dataView) {
      private static final long serialVersionUID = -1L;

      @Override
      protected void onEvent(AjaxRequestTarget target) {
        target.add(listContainer);
      }
    };
    DataViewContainer<LdapConfig> container = new DataViewContainer<LdapConfig>(listContainer, dataView, navigator);
    container.setLinks(new OmOrderByBorder<LdapConfig>("orderById", "ldapConfigId", container)
        , new OmOrderByBorder<LdapConfig>("orderByName", "name", container)
        , new OmOrderByBorder<LdapConfig>("orderByFile", "configFileName", container));
    add(container.orderLinks);
    add(navigator);
   
    form = new LdapForm("form", listContainer, new LdapConfig());
    form.showNewRecord();
        add(form);
   
  }
View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

  @Override
  protected void onSaveSubmit(AjaxRequestTarget target, Form<?> form) {
    Application.getBean(LdapConfigDao.class).update(getModelObject(),
        WebSession.getUserId());
    LdapConfig ldapConfig = Application.getBean(LdapConfigDao.class)
        .get(getModelObject().getLdapConfigId());
    this.setModelObject(ldapConfig);
    hideNewRecord();
    target.add(this);
    target.add(listContainer);
View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

    target.appendJavaScript("omLdapPanelInit();");
  }

  @Override
  protected void onNewSubmit(AjaxRequestTarget target, Form<?> form) {
    this.setModelObject(new LdapConfig());
    target.add(this);
    target.appendJavaScript("omLdapPanelInit();");
  }
View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

    target.appendJavaScript("omLdapPanelInit();");
  }

  @Override
  protected void onRefreshSubmit(AjaxRequestTarget target, Form<?> form) {
    LdapConfig ldapConfig = this.getModelObject();
    if (ldapConfig.getLdapConfigId() <= 0) {
      ldapConfig = Application.getBean(LdapConfigDao.class).get(
          ldapConfig.getLdapConfigId());
    } else {
      ldapConfig = new LdapConfig();
    }
    this.setModelObject(ldapConfig);
    target.add(this);
    target.appendJavaScript("omLdapPanelInit();");
  }
View Full Code Here

Examples of org.apache.openmeetings.db.entity.server.LdapConfig

  @Override
  protected void onDeleteSubmit(AjaxRequestTarget target, Form<?> form) {
    Application.getBean(LdapConfigDao.class).delete(
        this.getModelObject(), WebSession.getUserId());
    this.setModelObject(new LdapConfig());
    target.add(listContainer);
    target.add(this);
    target.appendJavaScript("omLdapPanelInit();");
  }
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.