it should be indeed
Shouldn't the following be localizable?
Begin forwarded message:
> From: do-not-reply@jboss.org
> Date: August 24, 2010 6:45:51 PM GMT+02:00
> To: gatein-commits@lists.jboss.org
> Subject: [gatein-commits] gatein SVN: r3915 - exo/portal/branches/3.1.x/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component.
> Reply-To: gatein-commits@lists.jboss.org
>
> Author: hoang_to
> Date: 2010-08-24 12:45:50 -0400 (Tue, 24 Aug 2010)
> New Revision: 3915
>
> Modified:
> exo/portal/branches/3.1.x/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIPortletManagement.java
> Log:
> EXOGTN-23: Exceptions are not properly handled in Application Registry Service
>
> Modified: exo/portal/branches/3.1.x/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIPortletManagement.java
> ===================================================================
> --- exo/portal/branches/3.1.x/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIPortletManagement.java 2010-08-24 16:32:56 UTC (rev 3914)
> +++ exo/portal/branches/3.1.x/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIPortletManagement.java 2010-08-24 16:45:50 UTC (rev 3915)
> @@ -313,17 +313,38 @@
>
> public String getDisplayName()
> {
> - return getMetaValue(MetaInfo.DISPLAY_NAME, name_);
> + try
> + {
> + return getMetaValue(MetaInfo.DISPLAY_NAME, name_);
> + }
> + catch (Exception ex)
> + {
> + return "COULD NOT GET DISPLAY NAME OF THE PORTLET";
> + }
> }
>
> public String getDescription()
> {
> - return getMetaValue(MetaInfo.DESCRIPTION, name_);
> + try
> + {
> + return getMetaValue(MetaInfo.DESCRIPTION, name_);
> + }
> + catch (Exception ex)
> + {
> + return "COULD NOT GET DESCRIPTION OF THE PORTLET";
> + }
> }
>
> public PreferencesInfo getPortletPreferences()
> {
> - return portletInfo_.getPreferences();
> + try
> + {
> + return portletInfo_.getPreferences();
> + }
> + catch (Exception ex)
> + {
> + return null;
> + }
> }
>
> private String getMetaValue(String metaKey, String defaultValue)
>
> _______________________________________________
> gatein-commits mailing list
> gatein-commits@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/gatein-commits
Cordialement / Best,
Chris
==
Principal Software Engineer / JBoss Enterprise Middleware Red Hat, Inc.
Follow GateIn: http://blog.gatein.org / http://twitter.com/gatein
Follow me: http://metacosm.codepuccino.com / http://twitter.com/metacosm
_______________________________________________
gatein-dev mailing list
gatein-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/gatein-dev