001package org.kuali.ole.describe.keyvalue;
002
003import org.kuali.ole.describe.bo.OleShelvingScheme;
004import org.kuali.rice.core.api.util.ConcreteKeyValue;
005import org.kuali.rice.core.api.util.KeyValue;
006import org.kuali.rice.krad.keyvalues.KeyValuesBase;
007import org.kuali.rice.krad.service.KRADServiceLocator;
008
009import java.util.ArrayList;
010import java.util.Collection;
011import java.util.List;
012
013/**
014 * ShelvingScheme used to render the values for ShelvingScheme dropdown control.
015 */
016public class ShelvingScheme extends KeyValuesBase {
017    /**
018     * This method returns the List of ConcreteKeyValue,
019     * ConcreteKeyValue has two arguments shelvingSchemeCode and
020     * shelvingSchemeName.
021     *
022     * @return List<KeyValue>
023     */
024    @Override
025    public List<KeyValue> getKeyValues() {
026        List<KeyValue> options = new ArrayList<KeyValue>();
027        Collection<OleShelvingScheme> oleShelvingSchemes = KRADServiceLocator.getBusinessObjectService().findAll(OleShelvingScheme.class);
028        // options.add(new ConcreteKeyValue("", ""));
029        for (OleShelvingScheme type : oleShelvingSchemes) {
030            if (type.isActive()) {
031                options.add(new ConcreteKeyValue(type.getShelvingSchemeCode(), type.getShelvingSchemeName()));
032            }
033        }
034        return options;
035    }
036}