weaver 2003/10/05 17:31:00
Modified: portal/src/java/org/apache/jetspeed/engine
JetspeedEngine.java
Log:
- changes due to new Pluto drop
- reflects the changes in the PortletContainer's init() method
Revision Changes Path
1.2 +4 -4
jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/engine/JetspeedEngine.java
Index: JetspeedEngine.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/engine/JetspeedEngine.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- JetspeedEngine.java 28 Jul 2003 23:47:38 -0000 1.1
+++ JetspeedEngine.java 6 Oct 2003 00:31:00 -0000 1.2
@@ -202,8 +202,8 @@
InformationProviderServiceService ips =
InformationProviderManager.getService();
ips.init(config, null);
environment.addServiceForClass(InformationProviderService.class, ips);
-
- container.init(config, environment);
+ //TODO !!! Pluto has changed this siganture There is now a container
unique id string and Properties. WE need to figure what these are really for.
+ container.init("jetspeed", config, environment, new Properties());
}
catch (Exception e)
{
@@ -227,7 +227,7 @@
try
{
PortletContainer container =
PortletContainerFactory.getPortletContainer();
- container.destroy();
+ container.shutdown();
}
catch (PortletContainerException e)
{
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]