/**
* @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);
}