Package oss.ngocminh.lego.data

Examples of oss.ngocminh.lego.data.Entity


    List<Entity> images = new LinkedList<Entity>();
    int imageCount = Integer.parseInt(request.getParameter("imageCount"));
    for (int i = 1; i <= imageCount; i++) {
      String fileName = request.getParameter("image" + i);
      if (!StringUtils.isEmpty(fileName)) {
        Entity image = new EntityImpl();
        image.put("fileName", fileName);
        images.add(image);
      }
    }
    return images;
  }
View Full Code Here

TOP

Related Classes of oss.ngocminh.lego.data.Entity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.