View Javadoc

1   /*
2    * Copyright 2005-2007 The Kuali Foundation
3    * 
4    * 
5    * Licensed under the Educational Community License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    * 
9    * http://www.opensource.org/licenses/ecl2.php
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.kuali.rice.core.util;
18  
19  import java.lang.reflect.Field;
20  import java.lang.reflect.Modifier;
21  import java.util.HashMap;
22  import java.util.Map;
23  
24  /**
25   * Have constants class extend this class to expose them to JSTL as a HashMap.
26   * 
27   * @author Kuali Rice Team (rice.collab@kuali.org)
28   */
29  public class JSTLConstants extends HashMap {
30  
31      private static final long serialVersionUID = 6701136401021219281L;
32      private boolean initialised = false;
33  
34      public JSTLConstants() {
35      	publishFields(this, this.getClass());
36          initialised = true;
37      }
38      
39      public JSTLConstants(Class constantsClass) {
40          publishFields(this, constantsClass);
41          initialised = true;
42      }
43  
44      /**
45       * Publishes all of the static, final, non-private fields of the given Class as entries in the given HashMap instance
46       * 
47       * @param constantMap
48       * @param c
49       */
50      protected void publishFields(Map constantMap, Class c) {
51          Field[] fields = c.getDeclaredFields();
52          for (Field field : fields) {
53              int modifier = field.getModifiers();
54  
55              // publish values of static, final, non-private members
56              if (Modifier.isStatic(modifier) && Modifier.isFinal(modifier) && !Modifier.isPrivate(modifier)) {
57                  try {
58                      String fieldName = field.getName();
59  
60                      constantMap.put(fieldName, field.get(null));
61                  } catch (IllegalAccessException e) {}
62              }
63          }
64  
65          // publish values of appropriate fields of member classes
66          publishMemberClassFields(constantMap, c);
67      }
68  
69      /**
70       * Publishes all of the static, final, non-private fields of the non-anonymous member classes of the given Class as entries in
71       * the given HashMap instance
72       * 
73       * @param constantMap
74       * @param c
75       */
76      protected void publishMemberClassFields(Map constantMap, Class c) {
77          Class[] memberClasses = c.getClasses();
78  
79          for (Class memberClass : memberClasses) {
80              if (!memberClass.isAnonymousClass()) {
81                  String memberPrefix = memberClass.getSimpleName();
82  
83                  Map subclassMap = new HashMap();
84                  publishFields(subclassMap, memberClass);
85                  constantMap.put(memberClass.getSimpleName(), subclassMap);
86              }
87          }
88      }
89  
90      public void clear() {
91          if (!initialised)
92              super.clear();
93          else
94              throw new UnsupportedOperationException("Cannot modify this map");
95      }
96  
97      public Object put(Object key, Object value) {
98          if (!initialised)
99              return super.put(key, value);
100         else
101             throw new UnsupportedOperationException("Cannot modify this map");
102     }
103 
104     public void putAll(Map m) {
105         if (!initialised)
106             super.putAll(m);
107         else
108             throw new UnsupportedOperationException("Cannot modify this map");
109     }
110 
111     public Object remove(Object key) {
112         if (!initialised)
113             return super.remove(key);
114         else
115             throw new UnsupportedOperationException("Cannot modify this map");
116     }
117 }