Паттерн: Шаблонный метод (Template Method)
Фрагмент: RequestProcessor.processContent() [java]
  1. protected void processContent(HttpServletRequest request,
  2. HttpServletResponse response) {
  3. String contentType =
  4. moduleConfig.getControllerConfig().getContentType();
  5.  
  6. if (contentType != null) {
  7. response.setContentType(contentType);
  8. }
  9. }