1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.sec.businessobject.options;
17
18 import java.util.ArrayList;
19 import java.util.List;
20
21 import org.kuali.ole.sec.SecConstants;
22 import org.kuali.ole.sec.service.AccessSecurityService;
23 import org.kuali.ole.sys.context.SpringContext;
24 import org.kuali.rice.core.api.util.ConcreteKeyValue;
25 import org.kuali.rice.core.api.util.KeyValue;
26 import org.kuali.rice.krad.keyvalues.KeyValuesBase;
27
28
29
30
31
32 public class SecurityTemplateIdFinder extends KeyValuesBase {
33
34 protected static List<KeyValue> OPTIONS;
35
36 protected void buildOptionsList() {
37 List<KeyValue> temp = new ArrayList<KeyValue>();
38 temp.add(new ConcreteKeyValue(SpringContext.getBean(AccessSecurityService.class).getInquiryWithFieldValueTemplate().getId(), "Balance Inquiry"));
39 temp.add(new ConcreteKeyValue(SpringContext.getBean(AccessSecurityService.class).getEditAccountingLineWithFieldValueTemplate().getId(), "Edit Accounting Line"));
40 temp.add(new ConcreteKeyValue(SpringContext.getBean(AccessSecurityService.class).getEditDocumentWithFieldValueTemplate().getId(), "Edit Document"));
41 temp.add(new ConcreteKeyValue(SpringContext.getBean(AccessSecurityService.class).getLookupWithFieldValueTemplate().getId(), "Lookup Records"));
42 temp.add(new ConcreteKeyValue(SpringContext.getBean(AccessSecurityService.class).getViewAccountingLineWithFieldValueTemplate().getId(), "View Accounting Line"));
43 temp.add(new ConcreteKeyValue(SpringContext.getBean(AccessSecurityService.class).getViewDocumentWithFieldValueTemplate().getId(), "View Document"));
44 temp.add(new ConcreteKeyValue(SpringContext.getBean(AccessSecurityService.class).getViewNotesAttachmentsWithFieldValueTemplate().getId(), "View Notes/Attachments"));
45 OPTIONS = temp;
46 }
47
48
49
50
51 public List<KeyValue> getKeyValues() {
52 if ( OPTIONS == null ) {
53 buildOptionsList();
54 }
55 return OPTIONS;
56 }
57 }