use of com.revolsys.ui.html.view.DivElementContainer in project com.revolsys.open by revolsys.
the class DisplayConfigAction method process.
@Override
public void process(final HttpServletRequest request, final HttpServletResponse response) throws IOException, ServletException {
final DivElementContainer view = new DivElementContainer();
addSite(view, (Site) request.getAttribute("site"));
request.setAttribute("view", view);
response.setContentType("text/html");
view.serialize(response.getWriter());
}
Aggregations