1 43 package net.jforum.entities; 44 45 49 public class Bookmark 50 { 51 private int id; 52 private int userId; 53 private int relationId; 54 private int relationType; 55 private boolean publicVisible; 56 private String title; 57 private String description; 58 59 public Bookmark() {} 60 61 64 public int getId() 65 { 66 return this.id; 67 } 68 69 72 public void setId(int id) 73 { 74 this.id = id; 75 } 76 77 80 public boolean isPublicVisible() 81 { 82 return this.publicVisible; 83 } 84 85 88 public void setPublicVisible(boolean publicVisible) 89 { 90 this.publicVisible = publicVisible; 91 } 92 93 96 public int getRelationId() 97 { 98 return this.relationId; 99 } 100 101 104 public void setRelationId(int relationId) 105 { 106 this.relationId = relationId; 107 } 108 109 112 public int getRelationType() 113 { 114 return this.relationType; 115 } 116 117 120 public void setRelationType(int relationType) 121 { 122 this.relationType = relationType; 123 } 124 125 128 public int getUserId() 129 { 130 return this.userId; 131 } 132 133 136 public void setUserId(int userId) 137 { 138 this.userId = userId; 139 } 140 141 144 public String getDescription() 145 { 146 return this.description; 147 } 148 149 152 public void setDescription(String description) 153 { 154 this.description = description; 155 } 156 157 160 public String getTitle() 161 { 162 return this.title; 163 } 164 165 168 public void setTitle(String title) 169 { 170 this.title = title; 171 } 172 } 173 | Popular Tags |