| 1 | |
package org.kuali.student.common.assembly; |
| 2 | |
|
| 3 | |
import org.kuali.student.common.assembly.data.AssemblyException; |
| 4 | |
import org.kuali.student.common.exceptions.AlreadyExistsException; |
| 5 | |
import org.kuali.student.common.exceptions.CircularReferenceException; |
| 6 | |
import org.kuali.student.common.exceptions.CircularRelationshipException; |
| 7 | |
import org.kuali.student.common.exceptions.DataValidationErrorException; |
| 8 | |
import org.kuali.student.common.exceptions.DependentObjectsExistException; |
| 9 | |
import org.kuali.student.common.exceptions.DoesNotExistException; |
| 10 | |
import org.kuali.student.common.exceptions.InvalidParameterException; |
| 11 | |
import org.kuali.student.common.exceptions.MissingParameterException; |
| 12 | |
import org.kuali.student.common.exceptions.OperationFailedException; |
| 13 | |
import org.kuali.student.common.exceptions.PermissionDeniedException; |
| 14 | |
import org.kuali.student.common.exceptions.UnsupportedActionException; |
| 15 | |
import org.kuali.student.common.exceptions.VersionMismatchException; |
| 16 | |
|
| 17 | |
public interface BusinessServiceMethodInvoker { |
| 18 | |
@SuppressWarnings("unchecked") |
| 19 | |
public void invokeServiceCalls(BaseDTOAssemblyNode results) throws AlreadyExistsException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException, DependentObjectsExistException, CircularRelationshipException, AssemblyException, UnsupportedActionException, UnsupportedOperationException, CircularReferenceException; |
| 20 | |
} |