1 21 package com.jaspersoft.jasperserver.irplugin.wsclient; 22 23 27 28 public class FileContent { 29 private byte[] bytes; 30 private String mimeType; 31 private String name; 32 33 public FileContent() { 34 } 35 36 public void setData(byte[] bytes) { this.bytes = bytes; } 37 public void setMimeType(String mimeType) { this.mimeType = mimeType; } 38 39 public byte[] getData() { return bytes; } 40 public String getMimeType() { return mimeType; } 41 42 public void setName(String name) { this.name = name; } 43 public String getName() { return name; } 44 } 45 | Popular Tags |