1 43 package net.jforum.entities; 44 45 49 public class AttachmentExtension 50 { 51 private int id; 52 private int extensionGroupId; 53 54 private boolean allow; 55 private boolean unknown; 56 57 private String comment; 58 private String extension; 59 private String uploadIcon; 60 61 64 public boolean isAllow() 65 { 66 return this.allow; 67 } 68 69 72 public void setAllow(boolean allow) 73 { 74 this.allow = allow; 75 } 76 77 80 public String getComment() 81 { 82 return this.comment; 83 } 84 85 88 public void setComment(String comment) 89 { 90 this.comment = comment; 91 } 92 93 96 public String getExtension() 97 { 98 return this.extension; 99 } 100 101 104 public void setExtension(String extension) 105 { 106 this.extension = extension; 107 } 108 109 112 public int getExtensionGroupId() 113 { 114 return this.extensionGroupId; 115 } 116 117 120 public void setExtensionGroupId(int extensionGroupId) 121 { 122 this.extensionGroupId = extensionGroupId; 123 } 124 125 128 public int getId() 129 { 130 return this.id; 131 } 132 135 public void setId(int id) 136 { 137 this.id = id; 138 } 139 140 143 public String getUploadIcon() 144 { 145 return this.uploadIcon; 146 } 147 148 151 public void setUploadIcon(String uploadIcon) 152 { 153 this.uploadIcon = uploadIcon; 154 } 155 156 159 public boolean isUnknown() 160 { 161 return this.unknown; 162 } 163 164 167 public void setUnknown(boolean unknown) 168 { 169 this.unknown = unknown; 170 } 171 } 172 | Popular Tags |