* @return the SUCCESS result
*/
public String get() throws Exception {
if (this.getId() != null) {
document = baseService.getEntityById(Document.class, this.getId());
DocumentStatus status = document.getStatus();
if (status != null) {
statusID = status.getId();
}
DocumentCategory category = document.getCategory();
if (category != null) {
categoryID = category.getId();
}