1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.student.enrollment.class2.courseoffering.service;
18
19 import org.kuali.student.enrollment.courseofferingset.dto.SocInfo;
20 import org.kuali.student.r2.common.exceptions.InvalidParameterException;
21 import org.kuali.student.r2.common.exceptions.MissingParameterException;
22 import org.kuali.student.r2.common.exceptions.OperationFailedException;
23 import org.kuali.student.r2.common.exceptions.PermissionDeniedException;
24 import org.kuali.student.r2.core.acal.dto.TermInfo;
25
26
27
28
29
30
31 public interface CreateSocViewHelperService {
32 public SocInfo getMainSocForTerm(String termCode) throws Exception;
33 public SocInfo createSocForTerm(String termCode) throws Exception;
34 public TermInfo getTermByTermCode(String termCode) throws InvalidParameterException, MissingParameterException, PermissionDeniedException, OperationFailedException;
35 }