001    package org.opencfml.cfx;
002    
003    
004    /**
005     * Alternative Implementation of Jeremy Allaire's CustomTag Interface
006     */
007    public interface CustomTag {
008            /**
009             * methods to invoke tag
010             * @param request
011             * @param response
012             * @throws Exception
013             */
014            public void processRequest(Request request, Response response) throws Exception;
015    }