1 18 package org.apache.beehive.netui.core.urltemplates; 19 20 import org.apache.beehive.netui.core.urltemplates.schema.UrlTemplateConfigDocument; 21 import org.apache.beehive.netui.core.urltemplates.schema.UrlTemplateConfigDocument.UrlTemplateConfig; 22 import org.apache.xmlbeans.XmlException; 23 24 import java.io.InputStream ; 25 import java.io.IOException ; 26 27 30 public class DefaultURLTemplateFileParser implements URLTemplateFileParser 31 { 32 public UrlTemplateConfig parse( InputStream istr ) throws XmlException, IOException 33 { 34 return UrlTemplateConfigDocument.Factory.parse( istr ).getUrlTemplateConfig(); 35 } 36 } 37 | Popular Tags |