View Javadoc
1   package org.kuali.ole.describe.keyvalue;
2   
3   import org.kuali.ole.describe.bo.OleEncodingLevel;
4   import org.kuali.rice.core.api.util.ConcreteKeyValue;
5   import org.kuali.rice.core.api.util.KeyValue;
6   import org.kuali.rice.krad.keyvalues.KeyValuesBase;
7   import org.kuali.rice.krad.service.KRADServiceLocator;
8   
9   import java.util.ArrayList;
10  import java.util.Collection;
11  import java.util.List;
12  
13  /**
14   * EncodingLevel used to render the values for EncodingLevel dropdown control.
15   */
16  public class EncodingLevel extends KeyValuesBase {
17      /**
18       * This method returns the List of  ConcreteKeyValues,
19       * ConcreteKeyValue has two arguments encodingLevelCode and
20       * encodingLevelName.
21       *
22       * @return List<KeyValue>
23       */
24      @Override
25      public List<KeyValue> getKeyValues() {
26          List<KeyValue> options = new ArrayList<KeyValue>();
27          Collection<OleEncodingLevel> oleEncodingLevels = KRADServiceLocator.getBusinessObjectService().findAll(OleEncodingLevel.class);
28          options.add(new ConcreteKeyValue("", ""));
29          for (OleEncodingLevel type : oleEncodingLevels) {
30              options.add(new ConcreteKeyValue(type.getEncodingLevelCode(), type.getEncodingLevelName()));
31          }
32          return options;
33      }
34  }