Package de.xanders.data.system.dao

Examples of de.xanders.data.system.dao.Document


    /**
     * @see DocumentService#getDocumentById(java.lang.Long)
     */
    protected DocumentVO handleGetDocumentById(Long documentId)
        throws java.lang.Exception {
      Document document = this.getDocumentDao().load(documentId);
      return this.getDocumentDao().toDocumentVO(document);
    }
View Full Code Here


    /**
     * @see DocumentService#saveDocument(DocumentVO)
     */
    protected void handleSaveDocument(DocumentVO documentVO)
        throws java.lang.Exception {
      Document document = this.getDocumentDao().documentVOToEntity(documentVO);
        if (document.getDocumentId() == null) {
            this.getDocumentDao().create(document);
        }
        else {
            this.getDocumentDao().update(document);           
        }   
View Full Code Here

TOP

Related Classes of de.xanders.data.system.dao.Document

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.