com.firefly.mvc.web.WebContext Maven / Gradle / Ivy
package com.firefly.mvc.web;
import com.firefly.core.ApplicationContext;
public interface WebContext extends ApplicationContext {
String getViewPath();
String getEncoding();
HandlerChain match(String uri, String servletURI);
}