View Javadoc
1   /**
2    * Copyright 2005-2012 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.select.keyvalue;
17  
18  import org.kuali.ole.select.bo.OleLicenseRequestLocation;
19  import org.kuali.rice.core.api.util.ConcreteKeyValue;
20  import org.kuali.rice.core.api.util.KeyValue;
21  import org.kuali.rice.krad.keyvalues.KeyValuesBase;
22  import org.kuali.rice.krad.service.KRADServiceLocator;
23  
24  import java.util.ArrayList;
25  import java.util.Collection;
26  import java.util.List;
27  
28  /**
29   * OleLicenseRequestLocationKeyValues is the value finder class for OleLicenseRequestLocation
30   */
31  public class OleLicenseRequestLocationKeyValues extends KeyValuesBase {
32  
33      private boolean blankOption;
34  
35      /**
36       * Gets the blankOption attribute.
37       *
38       * @return Returns the blankOption
39       */
40      public boolean isBlankOption() {
41          return this.blankOption;
42      }
43  
44      /**
45       * Sets the blankOption attribute value.
46       *
47       * @param blankOption The blankOption to set.
48       */
49      public void setBlankOption(boolean blankOption) {
50          this.blankOption = blankOption;
51      }
52  
53      /**
54       * Gets the keyValues attribute.
55       *
56       * @return Returns the keyValues
57       */
58      @Override
59      public List getKeyValues() {
60          List<KeyValue> keyValues = new ArrayList<KeyValue>();
61          Collection<OleLicenseRequestLocation> licenseRequestCodes = KRADServiceLocator.getBusinessObjectService().findAll(OleLicenseRequestLocation.class);
62          keyValues.add(new ConcreteKeyValue("", ""));
63          for (OleLicenseRequestLocation licenseRequestCode : licenseRequestCodes) {
64              if (licenseRequestCode.isActive()) {
65                  keyValues.add(new ConcreteKeyValue(licenseRequestCode.getId(), licenseRequestCode.getName()));
66              }
67          }
68          return keyValues;
69      }
70  
71  }