com.ja.smarkdown.config.servletcontext.SmarkdownConfigurationParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smarkdown-configuration-web-xml Show documentation
Show all versions of smarkdown-configuration-web-xml Show documentation
Reads Smarkdown configuration from the web.xml file. Uses a default configuration if no specific configuration is defined
in web.xml.
package com.ja.smarkdown.config.servletcontext;
import com.ja.smarkdown.json.AbstractParser;
import com.ja.smarkdown.model.config.SmarkdownConfiguration;
public class SmarkdownConfigurationParser extends
AbstractParser {
public SmarkdownConfigurationParser() {
super(SmarkdownConfiguration.class);
}
}