001// -------------------------------------------------------------------------------- 002// Copyright 2002-2026 Echo Three, LLC 003// 004// Licensed under the Apache License, Version 2.0 (the "License"); 005// you may not use this file except in compliance with the License. 006// You may obtain a copy of the License at 007// 008// http://www.apache.org/licenses/LICENSE-2.0 009// 010// Unless required by applicable law or agreed to in writing, software 011// distributed under the License is distributed on an "AS IS" BASIS, 012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013// See the License for the specific language governing permissions and 014// limitations under the License. 015// -------------------------------------------------------------------------------- 016// Generated File -- DO NOT EDIT BY HAND 017// -------------------------------------------------------------------------------- 018 019/** 020 * ForumThreadDetail.java 021 */ 022 023package com.echothree.model.data.forum.server.entity; 024 025import com.echothree.model.data.forum.common.pk.ForumThreadDetailPK; 026 027import com.echothree.model.data.forum.common.pk.ForumThreadPK; 028import com.echothree.model.data.icon.common.pk.IconPK; 029 030import com.echothree.model.data.forum.server.entity.ForumThread; 031import com.echothree.model.data.icon.server.entity.Icon; 032 033import com.echothree.model.data.forum.server.factory.ForumThreadFactory; 034import com.echothree.model.data.icon.server.factory.IconFactory; 035 036import com.echothree.model.data.forum.common.pk.ForumThreadDetailPK; 037 038import com.echothree.model.data.forum.server.value.ForumThreadDetailValue; 039 040import com.echothree.model.data.forum.server.factory.ForumThreadDetailFactory; 041 042import com.echothree.util.common.exception.PersistenceException; 043import com.echothree.util.common.exception.PersistenceDatabaseException; 044import com.echothree.util.common.exception.PersistenceNotNullException; 045import com.echothree.util.common.exception.PersistenceReadOnlyException; 046 047import com.echothree.util.common.persistence.BasePK; 048 049import com.echothree.util.common.persistence.type.ByteArray; 050 051import com.echothree.util.server.persistence.BaseEntity; 052import com.echothree.util.server.persistence.EntityPermission; 053import com.echothree.util.server.persistence.Session; 054import com.echothree.util.server.persistence.ThreadSession; 055 056import java.io.Serializable; 057 058import javax.annotation.Nonnull; 059import javax.annotation.Nullable; 060 061public class ForumThreadDetail 062 extends BaseEntity 063 implements Serializable { 064 065 private ForumThreadDetailPK _pk; 066 private ForumThreadDetailValue _value; 067 068 /** Creates a new instance of ForumThreadDetail */ 069 public ForumThreadDetail() 070 throws PersistenceException { 071 super(); 072 } 073 074 /** Creates a new instance of ForumThreadDetail */ 075 public ForumThreadDetail(ForumThreadDetailValue value, EntityPermission entityPermission) { 076 super(entityPermission); 077 078 _value = value; 079 _pk = value.getPrimaryKey(); 080 } 081 082 @Override 083 @Nonnull 084 public ForumThreadDetailFactory getBaseFactoryInstance() { 085 return ForumThreadDetailFactory.getInstance(); 086 } 087 088 @Override 089 public boolean hasBeenModified() { 090 return _value.hasBeenModified(); 091 } 092 093 @Override 094 public int hashCode() { 095 return _pk.hashCode(); 096 } 097 098 @Override 099 @Nonnull 100 public String toString() { 101 return _pk.toString(); 102 } 103 104 @Override 105 public boolean equals(Object other) { 106 if(this == other) 107 return true; 108 109 if(other instanceof ForumThreadDetail that) { 110 ForumThreadDetailValue thatValue = that.getForumThreadDetailValue(); 111 return _value.equals(thatValue); 112 } else { 113 return false; 114 } 115 } 116 117 @Override 118 public void store() 119 throws PersistenceDatabaseException { 120 getBaseFactoryInstance().store(this); 121 } 122 123 @Override 124 public void remove() 125 throws PersistenceDatabaseException { 126 getBaseFactoryInstance().remove(this); 127 } 128 129 @Nonnull 130 public ForumThreadDetailValue getForumThreadDetailValue() { 131 return _value; 132 } 133 134 public void setForumThreadDetailValue(@Nonnull ForumThreadDetailValue value) 135 throws PersistenceReadOnlyException { 136 checkReadWrite(); 137 _value = value; 138 } 139 140 @Override 141 @Nonnull 142 public ForumThreadDetailPK getPrimaryKey() { 143 return _pk; 144 } 145 146 @Nonnull 147 public ForumThreadPK getForumThreadPK() { 148 return _value.getForumThreadPK(); 149 } 150 151 @Nonnull 152 public ForumThread getForumThread(EntityPermission entityPermission) { 153 return ForumThreadFactory.getInstance().getEntityFromPK(entityPermission, getForumThreadPK()); 154 } 155 156 @Nonnull 157 public ForumThread getForumThread() { 158 return getForumThread(EntityPermission.READ_ONLY); 159 } 160 161 @Nonnull 162 public ForumThread getForumThreadForUpdate() { 163 return getForumThread(EntityPermission.READ_WRITE); 164 } 165 166 public void setForumThreadPK(@Nonnull ForumThreadPK forumThreadPK) 167 throws PersistenceNotNullException, PersistenceReadOnlyException { 168 checkReadWrite(); 169 _value.setForumThreadPK(forumThreadPK); 170 } 171 172 public void setForumThread(@Nonnull ForumThread entity) { 173 setForumThreadPK(entity == null ? null : entity.getPrimaryKey()); 174 } 175 176 public boolean getForumThreadPKHasBeenModified() { 177 return _value.getForumThreadPKHasBeenModified(); 178 } 179 180 @Nonnull 181 public String getForumThreadName() { 182 return _value.getForumThreadName(); 183 } 184 185 public void setForumThreadName(@Nonnull String forumThreadName) 186 throws PersistenceNotNullException, PersistenceReadOnlyException { 187 checkReadWrite(); 188 _value.setForumThreadName(forumThreadName); 189 } 190 191 public boolean getForumThreadNameHasBeenModified() { 192 return _value.getForumThreadNameHasBeenModified(); 193 } 194 195 @Nullable 196 public IconPK getIconPK() { 197 return _value.getIconPK(); 198 } 199 200 @Nullable 201 public Icon getIcon(EntityPermission entityPermission) { 202 IconPK pk = getIconPK(); 203 Icon entity = pk == null? null: IconFactory.getInstance().getEntityFromPK(entityPermission, pk); 204 205 return entity; 206 } 207 208 @Nullable 209 public Icon getIcon() { 210 return getIcon(EntityPermission.READ_ONLY); 211 } 212 213 @Nullable 214 public Icon getIconForUpdate() { 215 return getIcon(EntityPermission.READ_WRITE); 216 } 217 218 public void setIconPK(@Nullable IconPK iconPK) 219 throws PersistenceNotNullException, PersistenceReadOnlyException { 220 checkReadWrite(); 221 _value.setIconPK(iconPK); 222 } 223 224 public void setIcon(@Nullable Icon entity) { 225 setIconPK(entity == null ? null : entity.getPrimaryKey()); 226 } 227 228 public boolean getIconPKHasBeenModified() { 229 return _value.getIconPKHasBeenModified(); 230 } 231 232 @Nonnull 233 public Long getPostedTime() { 234 return _value.getPostedTime(); 235 } 236 237 public void setPostedTime(@Nonnull Long postedTime) 238 throws PersistenceNotNullException, PersistenceReadOnlyException { 239 checkReadWrite(); 240 _value.setPostedTime(postedTime); 241 } 242 243 public boolean getPostedTimeHasBeenModified() { 244 return _value.getPostedTimeHasBeenModified(); 245 } 246 247 @Nonnull 248 public Integer getSortOrder() { 249 return _value.getSortOrder(); 250 } 251 252 public void setSortOrder(@Nonnull Integer sortOrder) 253 throws PersistenceNotNullException, PersistenceReadOnlyException { 254 checkReadWrite(); 255 _value.setSortOrder(sortOrder); 256 } 257 258 public boolean getSortOrderHasBeenModified() { 259 return _value.getSortOrderHasBeenModified(); 260 } 261 262 @Nonnull 263 public Long getFromTime() { 264 return _value.getFromTime(); 265 } 266 267 public void setFromTime(@Nonnull Long fromTime) 268 throws PersistenceNotNullException, PersistenceReadOnlyException { 269 checkReadWrite(); 270 _value.setFromTime(fromTime); 271 } 272 273 public boolean getFromTimeHasBeenModified() { 274 return _value.getFromTimeHasBeenModified(); 275 } 276 277 @Nonnull 278 public Long getThruTime() { 279 return _value.getThruTime(); 280 } 281 282 public void setThruTime(@Nonnull Long thruTime) 283 throws PersistenceNotNullException, PersistenceReadOnlyException { 284 checkReadWrite(); 285 _value.setThruTime(thruTime); 286 } 287 288 public boolean getThruTimeHasBeenModified() { 289 return _value.getThruTimeHasBeenModified(); 290 } 291 292}