1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package edu.sampleu.bookstore.document.keyvalue; |
17 | |
|
18 | |
import edu.sampleu.bookstore.bo.BookType; |
19 | |
import org.kuali.rice.core.api.util.ConcreteKeyValue; |
20 | |
import org.kuali.rice.krad.keyvalues.KeyValuesBase; |
21 | |
import org.kuali.rice.krad.service.KRADServiceLocator; |
22 | |
|
23 | |
import java.util.ArrayList; |
24 | |
import java.util.Collection; |
25 | |
import java.util.List; |
26 | |
|
27 | 0 | public class BookTypeKeyValues extends KeyValuesBase { |
28 | |
|
29 | |
public List getKeyValues() { |
30 | 0 | List keyValues = new ArrayList(); |
31 | |
|
32 | 0 | Collection<BookType> bos = KRADServiceLocator.getBusinessObjectService().findAll(BookType.class ); |
33 | |
|
34 | 0 | keyValues.add(new ConcreteKeyValue("", "")); |
35 | 0 | for ( BookType typ : bos ) { |
36 | 0 | keyValues.add(new ConcreteKeyValue(typ.getTypeCode(), typ.getName())); |
37 | |
} |
38 | |
|
39 | 0 | return keyValues; |
40 | |
} |
41 | |
|
42 | |
} |