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.krad.uif.lifecycle.finalize;
17  
18  import org.kuali.rice.krad.uif.component.Component;
19  import org.kuali.rice.krad.uif.component.DataBinding;
20  import org.kuali.rice.krad.uif.lifecycle.ViewLifecycle;
21  import org.kuali.rice.krad.uif.lifecycle.ViewLifecycleTaskBase;
22  import org.kuali.rice.krad.uif.util.LifecycleElement;
23  import org.kuali.rice.krad.uif.view.ViewModel;
24  
25  /**
26   * Sets data bindings to read-only at the end of the apply model phase.
27   * 
28   * @author Kuali Rice Team (rice.collab@kuali.org)
29   */
30  public class SetReadOnlyOnDataBindingTask extends ViewLifecycleTaskBase<DataBinding> {
31  
32      /**
33       * Default constructor.
34       */
35      public SetReadOnlyOnDataBindingTask() {
36          super(DataBinding.class);
37      }
38  
39      /**
40       * {@inheritDoc}
41       */
42      @Override
43      protected void performLifecycleTask() {
44          // implement readonly request overrides
45          LifecycleElement element = getElementState().getElement();
46          ViewModel viewModel = (ViewModel) ViewLifecycle.getModel();
47          if ((element instanceof DataBinding)
48                  && ViewLifecycle.getView().isSupportsRequestOverrideOfReadOnlyFields()
49                  && !viewModel.getReadOnlyFieldsList().isEmpty()) {
50              DataBinding dataBinding = (DataBinding) element;
51              String propertyName = dataBinding.getPropertyName();
52              if (viewModel.getReadOnlyFieldsList().contains(propertyName)) {
53                  ((Component) dataBinding).setReadOnly(true);
54              }
55          }
56      }
57  
58  }