1 package org.tigris.scarab.util.xmlissues; 2 3 48 49 public class XmlAttachment implements java.io.Serializable 50 { 51 private String id = null; 52 private String name = null; 53 private String type = null; 54 private String data = null; 55 private String filename = null; 56 private String mimetype = null; 57 private CreatedDate createdDate = null; 58 private ModifiedDate modifiedDate = null; 59 private String createdBy = null; 60 private String modifiedBy = null; 61 private boolean deleted = false; 62 private boolean reconcilePath = false; 63 64 public XmlAttachment() 65 { 66 } 67 68 public String getId() 69 { 70 return id; 71 } 72 73 public void setId(String id) 74 { 75 this.id = id; 76 } 77 78 public void setName(String name) 79 { 80 this.name = name; 81 } 82 83 public String getName() 84 { 85 return this.name; 86 } 87 88 public void setType(String type) 89 { 90 this.type = type; 91 } 92 93 public String getType() 94 { 95 return this.type; 96 } 97 98 public void setData(String data) 99 { 100 this.data = data; 101 } 102 103 public String getData() 104 { 105 return this.data; 106 } 107 108 public void setFilename(String filename) 109 { 110 this.filename = filename; 111 } 112 113 public String getFilename() 114 { 115 return this.filename; 116 } 117 118 public void setMimetype(String mimetype) 119 { 120 this.mimetype = mimetype; 121 } 122 123 public String getMimetype() 124 { 125 return this.mimetype; 126 } 127 128 public void setCreatedDate(CreatedDate createdDate) 129 { 130 this.createdDate = createdDate; 131 } 132 133 public CreatedDate getCreatedDate() 134 { 135 return this.createdDate; 136 } 137 138 public void setModifiedDate(ModifiedDate modifiedDate) 139 { 140 this.modifiedDate = modifiedDate; 141 } 142 143 public ModifiedDate getModifiedDate() 144 { 145 return this.modifiedDate; 146 } 147 148 public void setCreatedBy(String createdBy) 149 { 150 this.createdBy = createdBy; 151 } 152 153 public String getCreatedBy() 154 { 155 return this.createdBy; 156 } 157 158 public void setModifiedBy(String modifiedBy) 159 { 160 this.modifiedBy = modifiedBy; 161 } 162 163 public String getModifiedBy() 164 { 165 return this.modifiedBy; 166 } 167 168 public void setDeleted(boolean deleted) 169 { 170 this.deleted = deleted; 171 } 172 173 public boolean getDeleted() 174 { 175 return this.deleted; 176 } 177 178 public void setReconcilePath(boolean reconcilePath) 179 { 180 this.reconcilePath = reconcilePath; 181 } 182 183 public boolean getReconcilePath() 184 { 185 return this.reconcilePath; 186 } 187 } 188 | Popular Tags |