Package com.swinarta.sunflower.core.model

Examples of com.swinarta.sunflower.core.model.ProductImage


  public FileRepresentation getRepresent() throws IOException{
   
    Integer id = RequestUtil.getInteger(getRequest().getAttributes().get("id"));
   
    try{
      ProductImage respImage = coreManager.get(ProductImage.class, id);

      File f = File.createTempFile("sunflower_", ".img");
           
      FileOutputStream fos = new FileOutputStream(f);
     
      fos.write(respImage.getImage());
     
      fos.close();
             
      FileRepresentation resp = new FileRepresentation(f, MediaType.IMAGE_ALL);
     
View Full Code Here

TOP

Related Classes of com.swinarta.sunflower.core.model.ProductImage

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.