[svn r291] made build full package again for updates datafeeds
This commit is contained in:
parent
fff421eff2
commit
32a23704bd
|
@ -8,5 +8,6 @@
|
|||
<classpathentry kind="lib" path="lib/juel-2.1.0-rc1.jar"/>
|
||||
<classpathentry kind="lib" path="lib/juel-2.1.0-rc1-impl.jar"/>
|
||||
<classpathentry kind="lib" path="lib/jms-api.jar"/>
|
||||
<classpathentry kind="lib" path="lib/servlet-api.jar"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
BIN
lib/servlet-api.jar
Normal file
BIN
lib/servlet-api.jar
Normal file
Binary file not shown.
|
@ -27,7 +27,6 @@
|
|||
package com.idcanet.foei.server.startup;
|
||||
|
||||
import com.idcanet.foei.core.FoeiConfigurator;
|
||||
import com.idcanet.foei.core.FoeiContext;
|
||||
import com.idcanet.foei.server.FoeiContextManager;
|
||||
import com.idcanet.foei.server.FoeiContextManagerFactory;
|
||||
|
||||
|
@ -36,8 +35,8 @@ import java.util.Properties;
|
|||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
//import javax.servlet.ServletContextEvent;
|
||||
//import javax.servlet.ServletContextListener;
|
||||
import javax.servlet.ServletContextEvent;
|
||||
import javax.servlet.ServletContextListener;
|
||||
|
||||
/**
|
||||
* Helps to startup Foei in a J2EE context.
|
||||
|
@ -47,7 +46,7 @@ import java.util.logging.Logger;
|
|||
* @author Willem Cazander
|
||||
* @version 1.0 Jan 20, 2006
|
||||
*/
|
||||
public class FoeiStartupListener { //implements ServletContextListener {
|
||||
public class FoeiStartupListener implements ServletContextListener {
|
||||
|
||||
/** The logger to log to. */
|
||||
private Logger logger = null;
|
||||
|
@ -57,7 +56,7 @@ public class FoeiStartupListener { //implements ServletContextListener {
|
|||
|
||||
/**
|
||||
* Starts Foei
|
||||
*//*
|
||||
*/
|
||||
public void contextInitialized(ServletContextEvent event) {
|
||||
logger = Logger.getLogger(FoeiStartupListener.class.getName());
|
||||
|
||||
|
@ -90,12 +89,12 @@ public class FoeiStartupListener { //implements ServletContextListener {
|
|||
logger.log(Level.WARNING,"Error while starting FoeiContext: "+e.getMessage(),e);
|
||||
}
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Stop Foei
|
||||
*/
|
||||
public void contextDestroyed() { //(ServletContextEvent event) {
|
||||
public void contextDestroyed(ServletContextEvent event) {
|
||||
logger.info("Stopping Foei Contexts");
|
||||
try {
|
||||
FoeiContextManagerFactory.getFoeiContextManager().destroyAll();
|
||||
|
|
Loading…
Reference in a new issue