Exemplo n.º 1
0
  public long getLastModified(Object templateSource) {
    LiferayTemplateSource liferayTemplateSource = (LiferayTemplateSource) templateSource;

    return liferayTemplateSource.getLastModified();
  }
Exemplo n.º 2
0
  public Reader getReader(Object templateSource, String encoding) throws IOException {

    LiferayTemplateSource liferayTemplateSource = (LiferayTemplateSource) templateSource;

    return liferayTemplateSource.getReader(encoding);
  }
Exemplo n.º 3
0
  public void closeTemplateSource(Object templateSource) {
    LiferayTemplateSource liferayTemplateSource = (LiferayTemplateSource) templateSource;

    liferayTemplateSource.close();
  }