View Javadoc
1   package org.kuali.ole.describe.keyvalue;
2   
3   import org.kuali.ole.describe.bo.OleElectronicLocationAndAccessRelationship;
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   * Relationship used to render the values for Relationship dropdown control.
15   */
16  public class Relationship extends KeyValuesBase {
17      /**
18       * This method returns the List of ConcreteKeyValue,
19       * ConcreteKeyValue has two arguments elaRelationshipCode and
20       * elaRelationshipName.
21       *
22       * @return List<KeyValue>
23       */
24      @Override
25      public List<KeyValue> getKeyValues() {
26          List<KeyValue> options = new ArrayList<KeyValue>();
27          Collection<OleElectronicLocationAndAccessRelationship> oleElectronicLocationAndAccessRelationships =
28                  KRADServiceLocator.getBusinessObjectService().findAll(OleElectronicLocationAndAccessRelationship.class);
29          options.add(new ConcreteKeyValue("", ""));
30          for (OleElectronicLocationAndAccessRelationship type : oleElectronicLocationAndAccessRelationships) {
31              options.add(new ConcreteKeyValue(type.getElaRelationshipCode(), type.getElaRelationshipName()));
32          }
33          return options;
34      }
35  }