From: <tr...@hy...> - 2010-04-01 16:32:45
|
Author: trader Date: 2010-04-01 09:32:35 -0700 (Thu, 01 Apr 2010) New Revision: 14459 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=14459 Modified: trunk/plugins/websphere/src/org/hyperic/hq/plugin/websphere/WebsphereProductPlugin.java Log: HHQ-3849: More flexible interpretation of "useext" property for WebSphere plugin needed Modified: trunk/plugins/websphere/src/org/hyperic/hq/plugin/websphere/WebsphereProductPlugin.java =================================================================== --- trunk/plugins/websphere/src/org/hyperic/hq/plugin/websphere/WebsphereProductPlugin.java 2010-04-01 07:52:24 UTC (rev 14458) +++ trunk/plugins/websphere/src/org/hyperic/hq/plugin/websphere/WebsphereProductPlugin.java 2010-04-01 16:32:35 UTC (rev 14459) @@ -453,8 +453,10 @@ useJMX = !"false".equals(managerProps.getProperty("websphere.usejmx")); - useExt = "true".equals(managerProps.getProperty("websphere.useext")); - log.debug("useExt=" + useExt); + final String propKey = "websphere.useext"; + String useExtString = managerProps.getProperty(propKey, "false"); + useExt = new Boolean(useExtString).booleanValue(); + log.debug(propKey + "=" + useExt); String installDir = managerProps.getProperty(PROP_INSTALLPATH); |