mcardle 2005/08/18 18:32:29 CEST
Modified files:
core/src/java/org/jahia/registries ServicesRegistry.java
Log:
updates for ESI support
Revision Changes Path
1.21 +9 -0
jahia/core/src/java/org/jahia/registries/ServicesRegistry.java
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/core/src/java/org/jahia/registries/ServicesRegistry.java.diff?r1=1.20&r2=1.21&f=h
Index: ServicesRegistry.java
===================================================================
RCS file:
/home/cvs/repository/jahia/core/src/java/org/jahia/registries/ServicesRegistry.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ServicesRegistry.java 10 Aug 2005 08:27:02 -0000 1.20
+++ ServicesRegistry.java 18 Aug 2005 16:32:29 -0000 1.21
@@ -111,6 +111,7 @@
import org.jahia.bin.Jahia;
import org.jahia.hibernate.manager.SpringContextSingleton;
import org.apache.jetspeed.engine.SpringEngine;
+import org.jahia.services.esi.EsiService;
import org.springframework.beans.BeansException;
/**
@@ -246,6 +247,10 @@
private final String FILEEXTRACTION_SERVICE = "FileExtractionService";
+ //ESI caching Service
+ private final String ESI_SERVICE = "EsiService";
+
+
// BEGIN [added by Pascal Aubry for CAS authentication]
private final String CAS_SERVICE = "CasService";
// END [added by Pascal Aubry for CAS authentication]
@@ -588,6 +593,10 @@
}
// END [added by Pascal Aubry for CAS authentication]
+ public EsiService getEsiService () {
+ return (EsiService) getService(this.ESI_SERVICE);
+ }
+
public ClusterService getClusterService() {
return (ClusterService) getService(this.CLUSTER_SERVICE);
}