throws ServletException, IOException {
String websiteComponentIdentifier = req.getParameter("id");
//listing the table
Objectify ofy = PMF.getObjectify();
com.googlecode.objectify.Query<Image> q = ofy.query(Image.class).filter("webComponentIdentifier",websiteComponentIdentifier);
q.order("order");
// return to client
res.setContentType("application/json");
res.setCharacterEncoding("utf-8");
res.getWriter().write((new Gson().toJson(q.list())));