View Javadoc

1   /**
2    * Copyright 2005-2013 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.impl.peopleflow;
17  
18  import org.apache.commons.lang.StringUtils;
19  import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
20  import org.kuali.rice.core.api.uif.RemotableAttributeField;
21  import org.kuali.rice.kew.api.KewApiServiceLocator;
22  import org.kuali.rice.kew.api.repository.type.KewTypeDefinition;
23  import org.kuali.rice.kew.framework.peopleflow.PeopleFlowTypeService;
24  import org.kuali.rice.krad.inquiry.InquirableImpl;
25  import org.kuali.rice.krad.uif.container.Container;
26  import org.kuali.rice.krad.uif.view.View;
27  import org.kuali.rice.krad.web.form.InquiryForm;
28  import org.kuali.rice.krad.web.form.MaintenanceForm;
29  
30  import javax.xml.namespace.QName;
31  import java.util.ArrayList;
32  import java.util.List;
33  
34  /**
35   * Custom view helper for the people flow inquiry view to retrieve the type attribute remotable fields
36   *
37   * @author Kuali Rice Team (rice.collab@kuali.org)
38   */
39  public class PeopleFlowInquirableImpl extends InquirableImpl {
40      private static final long serialVersionUID = -8392423307944257532L;
41  
42      /**
43       * Invokes the {@link org.kuali.rice.kew.api.repository.type.KewTypeRepositoryService} to retrieve the remotable
44       * field definitions for the attributes associated with the selected type
45       *
46       * @param view - view instance
47       * @param model - object containing the form data, from which the selected type will be pulled
48       * @param container - container that holds the remotable fields
49       * @return List<RemotableAttributeField> instances for the type attributes, or empty list if not attributes exist
50       */
51      public List<RemotableAttributeField> retrieveTypeAttributes(View view, Object model, Container container) {
52          List<RemotableAttributeField> remoteFields = new ArrayList<RemotableAttributeField>();
53  
54          PeopleFlowBo peopleFlow = (PeopleFlowBo) ((InquiryForm) model).getDataObject();
55  
56          // retrieve the type service and invoke to get the remotable field definitions
57          if (peopleFlow != null && StringUtils.isNotBlank(peopleFlow.getTypeId())) {
58              String typeId = peopleFlow.getTypeId();
59              KewTypeDefinition typeDefinition = KewApiServiceLocator.getKewTypeRepositoryService().getTypeById(typeId);
60              PeopleFlowTypeService peopleFlowTypeService = GlobalResourceLoader.<PeopleFlowTypeService>getService(
61                      QName.valueOf(typeDefinition.getServiceName()));
62              remoteFields = peopleFlowTypeService.getAttributeFields(typeId);
63          }
64  
65          return remoteFields;
66      }
67  }