View Javadoc
1   /**
2    * Copyright 2005-2016 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.rice.kew.rule.bo;
17  
18  import org.kuali.rice.core.api.exception.RiceRuntimeException;
19  import org.kuali.rice.core.api.util.ConcreteKeyValue;
20  import org.kuali.rice.core.api.util.KeyValue;
21  import org.kuali.rice.kew.api.rule.RoleName;
22  import org.kuali.rice.kew.rule.RuleBaseValues;
23  import org.kuali.rice.kew.rule.RuleDelegationBo;
24  import org.kuali.rice.kns.document.MaintenanceDocument;
25  import org.kuali.rice.kns.util.KNSGlobalVariables;
26  import org.kuali.rice.kns.web.struts.form.KualiMaintenanceForm;
27  import org.kuali.rice.krad.bo.PersistableBusinessObject;
28  import org.kuali.rice.krad.keyvalues.KeyValuesBase;
29  
30  import java.util.ArrayList;
31  import java.util.List;
32  
33  /**
34   * A values finder for generating a list of Role names that can be selected for a given RuleTemplate.
35   * 
36   * This is dependant on the template selected on the maintenance document so it needs to use
37   * GlobalVariables to get a reference to the KualiForm so it can examine the business object
38   * and extract the role names from the RuleTemplate.
39   * 
40   * @author Kuali Rice Team (rice.collab@kuali.org)
41   */
42  public class RoleNameValuesFinder extends KeyValuesBase {
43  	
44  	@Override
45  	public List<KeyValue> getKeyValues() {
46  		List<KeyValue> roleNames = new ArrayList<KeyValue>();
47  		if (KNSGlobalVariables.getKualiForm() != null && KNSGlobalVariables.getKualiForm() instanceof KualiMaintenanceForm) {
48  			KualiMaintenanceForm form = (KualiMaintenanceForm)KNSGlobalVariables.getKualiForm();
49  			MaintenanceDocument document = (MaintenanceDocument)form.getDocument();
50  			PersistableBusinessObject businessObject = document.getNewMaintainableObject().getBusinessObject();
51  			RuleBaseValues rule = null;
52  			if (businessObject instanceof RuleBaseValues) {
53  				rule = (RuleBaseValues)businessObject;
54  			} else if (businessObject instanceof RuleDelegationBo) {
55  				rule = ((RuleDelegationBo)businessObject).getDelegationRule();
56  			} else {
57  				throw new RiceRuntimeException("Cannot locate RuleBaseValues business object on maintenance document.  Business Object was " + businessObject);
58  			}
59  			RuleTemplateBo ruleTemplate = rule.getRuleTemplate();
60  			List<RoleName> roles = ruleTemplate.getRoles();
61  			for (RoleName role : roles) {
62  				roleNames.add(new ConcreteKeyValue(role.getName(), role.getLabel()));
63  			}
64  		}
65  		return roleNames;
66  	}
67  
68  }