public void servicePerfilturnoUlContent(HttpServletRequest request, HttpServletResponse response)
      throws IOException, ServletException {
    utf8RequestService(request);
    String[] methodos = new String[] {"getULContentPerfilturnoParsed"};
    String param = WebUtils.getStringParam(request, "value");

    PerfilturnoGroupBean mgb =
        PerfilturnoManager.getPerfilturnos(PerfilturnoManager.buildSearchCriteria(param));
    simpleResponseService(
        response,
        AjaxUtils.buildAjaxULContentFromListObj(
            mgb.getAlmacen(), methodos, PerfilturnoHelper.COMPLEX_ID_GET_METHOD, "Perfilturno"));
  }