/web/jsf/src/main/java/org/appfuse/webapp/util/FacesUtils.java

http://github.com/myabc/appfuse · Java · 183 lines · 99 code · 22 blank · 62 comment · 9 complexity · 5a9d33849efe48c880266128b51287c5 MD5 · raw file

  1. package org.appfuse.webapp.util;
  2. import javax.faces.FactoryFinder;
  3. import javax.faces.application.Application;
  4. import javax.faces.application.ApplicationFactory;
  5. import javax.faces.application.FacesMessage;
  6. import javax.faces.context.FacesContext;
  7. import javax.faces.el.ValueBinding;
  8. import javax.faces.webapp.UIComponentTag;
  9. import javax.servlet.ServletContext;
  10. import javax.servlet.http.HttpServletRequest;
  11. import javax.servlet.http.HttpServletResponse;
  12. import javax.servlet.http.HttpSession;
  13. /**
  14. * Utility class for JavaServer Faces. Found in JavaWorld article:
  15. * http://www.javaworld.com/javaworld/jw-07-2004/jw-0719-jsf.html
  16. *
  17. * @author <a href="mailto:derek_shen@hotmail.com">Derek Y. Shen</a>
  18. */
  19. public class FacesUtils {
  20. /**
  21. * Get servlet context.
  22. *
  23. * @return the servlet context
  24. */
  25. public static ServletContext getServletContext() {
  26. return (ServletContext) FacesContext.getCurrentInstance()
  27. .getExternalContext().getContext();
  28. }
  29. /**
  30. * Get managed bean based on the bean name.
  31. *
  32. * @param beanName the bean name
  33. * @return the managed bean associated with the bean name
  34. */
  35. public static Object getManagedBean(String beanName) {
  36. Object o =
  37. getValueBinding(getJsfEl(beanName)).getValue(FacesContext.getCurrentInstance());
  38. return o;
  39. }
  40. /**
  41. * Remove the managed bean based on the bean name.
  42. *
  43. * @param beanName the bean name of the managed bean to be removed
  44. */
  45. public static void resetManagedBean(String beanName) {
  46. getValueBinding(getJsfEl(beanName)).setValue(FacesContext.getCurrentInstance(),
  47. null);
  48. }
  49. /**
  50. * Store the managed bean inside the session scope.
  51. *
  52. * @param beanName the name of the managed bean to be stored
  53. * @param managedBean the managed bean to be stored
  54. */
  55. @SuppressWarnings("unchecked")
  56. public static void setManagedBeanInSession(String beanName,
  57. Object managedBean) {
  58. FacesContext.getCurrentInstance().getExternalContext().getSessionMap()
  59. .put(beanName, managedBean);
  60. }
  61. /**
  62. * Get parameter value from request scope.
  63. *
  64. * @param name the name of the parameter
  65. * @return the parameter value
  66. */
  67. public static String getRequestParameter(String name) {
  68. return (String) FacesContext.getCurrentInstance().getExternalContext()
  69. .getRequestParameterMap().get(name);
  70. }
  71. /**
  72. * Add information message.
  73. *
  74. * @param msg the information message
  75. */
  76. public static void addInfoMessage(String msg) {
  77. addInfoMessage(null, msg);
  78. }
  79. /**
  80. * Add information message to a sepcific client.
  81. *
  82. * @param clientId the client id
  83. * @param msg the information message
  84. */
  85. public static void addInfoMessage(String clientId, String msg) {
  86. FacesContext.getCurrentInstance().addMessage(clientId,
  87. new FacesMessage(FacesMessage.SEVERITY_INFO,
  88. msg, msg));
  89. }
  90. /**
  91. * Add error message.
  92. *
  93. * @param msg the error message
  94. */
  95. public static void addErrorMessage(String msg) {
  96. addErrorMessage(null, msg);
  97. }
  98. /**
  99. * Add error message to a sepcific client.
  100. *
  101. * @param clientId the client id
  102. * @param msg the error message
  103. */
  104. public static void addErrorMessage(String clientId, String msg) {
  105. FacesContext.getCurrentInstance().addMessage(clientId,
  106. new FacesMessage(FacesMessage.SEVERITY_ERROR,
  107. msg, msg));
  108. }
  109. /**
  110. * Evaluate the integer value of a JSF expression.
  111. *
  112. * @param el the JSF expression
  113. * @return the integer value associated with the JSF expression
  114. */
  115. public static Integer evalInt(String el) {
  116. if (el == null) {
  117. return null;
  118. }
  119. if (UIComponentTag.isValueReference(el)) {
  120. Object value = getElValue(el);
  121. if (value == null) {
  122. return null;
  123. } else if (value instanceof Integer) {
  124. return (Integer) value;
  125. } else {
  126. return new Integer(value.toString());
  127. }
  128. } else {
  129. return new Integer(el);
  130. }
  131. }
  132. private static Application getApplication() {
  133. ApplicationFactory appFactory =
  134. (ApplicationFactory) FactoryFinder.getFactory(FactoryFinder.APPLICATION_FACTORY);
  135. return appFactory.getApplication();
  136. }
  137. private static ValueBinding getValueBinding(String el) {
  138. return getApplication().createValueBinding(el);
  139. }
  140. public static HttpServletRequest getRequest() {
  141. return (HttpServletRequest) FacesContext.getCurrentInstance()
  142. .getExternalContext()
  143. .getRequest();
  144. }
  145. public static HttpServletResponse getResponse() {
  146. return (HttpServletResponse) FacesContext.getCurrentInstance()
  147. .getExternalContext()
  148. .getResponse();
  149. }
  150. public static HttpSession getSession() {
  151. return (HttpSession) FacesContext.getCurrentInstance()
  152. .getExternalContext()
  153. .getSession(false);
  154. }
  155. private static Object getElValue(String el) {
  156. return getValueBinding(el).getValue(FacesContext.getCurrentInstance());
  157. }
  158. private static String getJsfEl(String value) {
  159. return "#{" + value + "}";
  160. }
  161. }