Package de.sub.goobi.persistence

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


    }
  }

  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

Related Classes of de.sub.goobi.persistence.LdapGruppenDAO

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.