Examples of LdapGruppenDAO


Examples of de.sub.goobi.persistence.LdapGruppenDAO

  }

  public void setLdapGruppeAuswahl(Integer inAuswahl) {
    if (inAuswahl.intValue() != 0) {
      try {
        this.myClass.setLdapGruppe(new LdapGruppenDAO().get(inAuswahl));
      } catch (DAOException e) {
        Helper.setFehlerMeldung("Error on writing to database", "");
        logger.error(e);
      }
    }
View Full Code Here

Examples of de.sub.goobi.persistence.LdapGruppenDAO

    }
  }

  public List<SelectItem> getLdapGruppeAuswahlListe() throws DAOException {
    List<SelectItem> myLdapGruppen = new ArrayList<SelectItem>();
    List<LdapGruppe> temp = new LdapGruppenDAO().search("from LdapGruppe ORDER BY titel");
    for (LdapGruppe gru : temp) {
      myLdapGruppen.add(new SelectItem(gru.getId(), gru.getTitel(), null));
    }
    return myLdapGruppen;
  }
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.