|
From: <rm...@hy...> - 2007-03-22 15:46:10
|
Author: rmorgan Date: 2007-03-22 07:46:07 -0800 (Thu, 22 Mar 2007) New Revision: 3812 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3812 Modified: trunk/src/org/hyperic/hq/bizapp/client/shell/ClientShellEntityFetcher.java trunk/src/org/hyperic/hq/bizapp/server/session/LiveDataBossEJBImpl.java trunk/src/org/hyperic/hq/livedata/server/session/LiveDataManagerEJBImpl.java Log: Fix build. Modified: trunk/src/org/hyperic/hq/bizapp/client/shell/ClientShellEntityFetcher.java =================================================================== --- trunk/src/org/hyperic/hq/bizapp/client/shell/ClientShellEntityFetcher.java 2007-03-22 11:35:31 UTC (rev 3811) +++ trunk/src/org/hyperic/hq/bizapp/client/shell/ClientShellEntityFetcher.java 2007-03-22 15:46:07 UTC (rev 3812) @@ -1174,7 +1174,7 @@ public String[] getLiveDataCommands(AppdefEntityID id) throws RemoteException, NamingException, - ClientShellAuthenticationException, PluginNotFoundException + ClientShellAuthenticationException, PluginException { LiveDataBoss boss; Modified: trunk/src/org/hyperic/hq/bizapp/server/session/LiveDataBossEJBImpl.java =================================================================== --- trunk/src/org/hyperic/hq/bizapp/server/session/LiveDataBossEJBImpl.java 2007-03-22 11:35:31 UTC (rev 3811) +++ trunk/src/org/hyperic/hq/bizapp/server/session/LiveDataBossEJBImpl.java 2007-03-22 15:46:07 UTC (rev 3812) @@ -35,6 +35,7 @@ import org.hyperic.hq.livedata.shared.LiveDataManagerLocal; import org.hyperic.hq.livedata.server.session.LiveDataManagerEJBImpl; import org.hyperic.hq.product.PluginNotFoundException; +import org.hyperic.hq.product.PluginException; import javax.ejb.SessionBean; import javax.ejb.CreateException; @@ -89,7 +90,7 @@ * @ejb:interface-method */ public String[] getLiveDataCommands(int sessionId, AppdefEntityID id) - throws PluginNotFoundException + throws PluginException { LiveDataManagerLocal manager = LiveDataManagerEJBImpl.getOne(); Modified: trunk/src/org/hyperic/hq/livedata/server/session/LiveDataManagerEJBImpl.java =================================================================== --- trunk/src/org/hyperic/hq/livedata/server/session/LiveDataManagerEJBImpl.java 2007-03-22 11:35:31 UTC (rev 3811) +++ trunk/src/org/hyperic/hq/livedata/server/session/LiveDataManagerEJBImpl.java 2007-03-22 15:46:07 UTC (rev 3812) @@ -30,6 +30,7 @@ import org.hyperic.hq.product.LiveDataPluginManager; import org.hyperic.hq.product.ProductPlugin; import org.hyperic.hq.product.PluginNotFoundException; +import org.hyperic.hq.product.PluginException; import org.hyperic.hq.product.server.session.ProductManagerEJBImpl; import org.hyperic.hq.livedata.agent.client.LiveDataClient; import org.hyperic.hq.appdef.shared.AgentConnectionUtil; @@ -121,7 +122,7 @@ * @ejb:interface-method */ public String[] getCommands(AppdefEntityID id) - throws PluginNotFoundException + throws PluginException { try { String plugin = getPlugin(id); |