001 package railo.runtime.tag; 002 003 public class ZipParamContent { 004 005 private Object content; 006 private String entryPath; 007 private String charset; 008 009 public ZipParamContent(Object content, String entryPath, String charset) { 010 this.content=content; 011 this.entryPath=entryPath; 012 this.charset=charset; 013 } 014 015 /** 016 * @return the content 017 */ 018 public Object getContent() { 019 return content; 020 } 021 022 /** 023 * @return the entryPath 024 */ 025 public String getEntryPath() { 026 return entryPath; 027 } 028 029 /** 030 * @return the charset 031 */ 032 public String getCharset() { 033 return charset; 034 } 035 036 037 }