1 package org.kuali.ole.loaders.describe.service;
2
3 import com.sun.jersey.api.core.HttpContext;
4 import org.kuali.ole.describe.bo.OleStatisticalSearchingCodes;
5 import org.kuali.ole.loaders.common.bo.OLELoaderResponseBo;
6 import org.kuali.ole.loaders.describe.bo.OLEStatisticalSearchingCodeBo;
7
8 import java.util.List;
9
10
11
12
13 public interface OLEStatisticalSearchingCodeLoaderHelperService {
14
15 public OleStatisticalSearchingCodes getStatisticalSearchingCodeById(String statisticalSearchingCodeId);
16
17 public OleStatisticalSearchingCodes getStatisticalSearchingCodeByCode(String statisticalSearchingCodeCode);
18
19 public List<OleStatisticalSearchingCodes> getAllStatisticalSearchingCode();
20
21 public Object formStatisticalSearchingCodeExportResponse(Object object, String statisticalSearchingCodeContext, String uri, boolean addContext);
22
23 public Object formAllStatisticalSearchingCodeExportResponse(HttpContext context, List<OleStatisticalSearchingCodes> oleStatisticalSearchingCodeList, String statisticalSearchingCodeContext, String uri);
24
25 public OLELoaderResponseBo updateOleStatisticalSearchingCode(OleStatisticalSearchingCodes oleStatisticalSearchingCode, OLEStatisticalSearchingCodeBo oleStatisticalSearchingCodeBo, HttpContext context);
26 }