1 /**
2 *
3 */
4 package fr.paris.lutece.plugins.dila.service;
5
6 import java.util.Locale;
7
8
9 /**
10 * Dila cache service
11 */
12 public interface IDilaCacheService
13 {
14 /**
15 * Get html page for give key
16 * @param strCacheKey the cache key
17 * @param locale the local
18 * @return the html code
19 */
20 String getRessource( String strCacheKey, Locale locale );
21 }