001/*
002 * Copyright (c) 2013 Nu Echo Inc. All rights reserved.
003 */
004
005package com.nuecho.rivr.voicexml.servlet;
006
007import javax.servlet.http.*;
008
009import org.w3c.dom.*;
010
011import com.nuecho.rivr.voicexml.rendering.voicexml.*;
012
013/**
014 * @author Nu Echo Inc.
015 */
016public interface VoiceXmlRootDocumentFactory {
017
018    Document getDocument(HttpServletRequest request) throws VoiceXmlDocumentRenderingException;
019
020}