Package de.sub.goobi.beans

Examples of de.sub.goobi.beans.Docket


    storeObj(t);
    return (Docket) retrieveObj(Docket.class, t.getId());
  }

  public Docket get(Integer id) throws DAOException {
    Docket rueckgabe = (Docket) retrieveObj(Docket.class, id);
    if (rueckgabe == null) {
      throw new DAOException("Object can not be found in database");
    }
    return rueckgabe;
  }
View Full Code Here


  private Docket myDocket = new Docket();
  private DocketDAO dao = new DocketDAO();
  private static final Logger logger = Logger.getLogger(DocketForm.class);

  public String Neu() {
    this.myDocket = new Docket();
    return "DocketEdit";
  }
View Full Code Here

TOP

Related Classes of de.sub.goobi.beans.Docket

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.