001package org.nuxeo.template.web.url; 002 003import org.nuxeo.ecm.platform.rendition.url.RenditionBasedCodec; 004 005public class TemplateRenderCodec extends RenditionBasedCodec { 006 007 public static final String PREFIX = "nxtemplate"; 008 009 @Override 010 public String getPrefix() { 011 if (prefix != null) { 012 return prefix; 013 } 014 return PREFIX; 015 } 016 017}