001    package com.hammurapi.render;
002    
003    /**
004     * Constants used in multiple classes.
005     * @author Pavel Vlasov
006     *
007     */
008    public interface RenderingConstants {
009            String OUTLINE = "outline";
010            String OUTLINE_HTTP = "outline_http";
011            String CONTENTS = "contents";
012            String CONTENTS_HTTP = "contents_http";
013            String IMAGES = "images";
014            String GIF = "gif";
015            String RENDER_HELPER = "renderHelper";
016            String TO_RENDER = "toRender";
017    
018            /**
019             * Key for rendering start time.
020             */
021            String RENDER_START = "renderStart";
022    
023    }