View Javadoc

1   /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.student.lum.statement.config.context;
17  
18  import java.util.Map;
19  
20  import org.kuali.student.common.exceptions.OperationFailedException;
21  import org.kuali.student.core.organization.dto.OrgInfo;
22  import org.kuali.student.core.organization.service.OrganizationService;
23  import org.kuali.student.core.statement.dto.ReqComponentInfo;
24  import org.kuali.student.lum.statement.typekey.ReqComponentFieldTypes;
25  
26  /**
27   * This class creates the template context for an organization.
28   */
29  public class OrganizationContextImpl extends BasicContextImpl {
30   
31  	private OrganizationService organizationService;
32  	
33  	public final static String ORG_TOKEN = "org";
34  
35  	public void setOrganizationService(OrganizationService organizationService) {
36  		this.organizationService = organizationService;
37  	}
38  
39  	private OrgInfo getOrganization(String orgId) throws OperationFailedException {
40  		if (orgId == null) {
41  			return null;
42  		}
43  		try {
44  			return organizationService.getOrganization(orgId);
45  		} catch (Exception e) {
46  			throw new OperationFailedException(e.getMessage(), e);
47  		}
48  	}
49  
50      /**
51       * Creates the context map (template data) for the requirement component.
52       * 
53       * @param reqComponent Requirement component
54       * @throws OperationFailedException Creating context map fails
55       */
56      public Map<String, Object> createContextMap(ReqComponentInfo reqComponent) throws OperationFailedException {
57          String orgId = getReqComponentFieldValue(reqComponent, ReqComponentFieldTypes.ORGANIZATION_KEY.getId());
58          OrgInfo org = getOrganization(orgId);
59          
60          Map<String, Object> contextMap = super.createContextMap(reqComponent);
61          contextMap.put(ORG_TOKEN, org);
62          return contextMap;
63      }
64  }