Package org.mifosplatform.infrastructure.documentmanagement.exception

Examples of org.mifosplatform.infrastructure.documentmanagement.exception.InvalidEntityTypeForDocumentManagementException


        contentRepository.deleteFile(document.getName(), document.getLocation());
        return new CommandProcessingResult(document.getId());
    }

    private void validateParentEntityType(final DocumentCommand documentCommand) {
        if (!checkValidEntityType(documentCommand.getParentEntityType())) { throw new InvalidEntityTypeForDocumentManagementException(
                documentCommand.getParentEntityType()); }
    }
View Full Code Here

TOP

Related Classes of org.mifosplatform.infrastructure.documentmanagement.exception.InvalidEntityTypeForDocumentManagementException

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.