001// -------------------------------------------------------------------------------- 002// Copyright 2002-2024 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 * MoodDetail.java 021 */ 022 023package com.echothree.model.data.party.server.entity; 024 025import com.echothree.model.data.party.common.pk.MoodDetailPK; 026 027import com.echothree.model.data.party.common.pk.MoodPK; 028import com.echothree.model.data.icon.common.pk.IconPK; 029 030import com.echothree.model.data.party.server.entity.Mood; 031import com.echothree.model.data.icon.server.entity.Icon; 032 033import com.echothree.model.data.party.server.factory.MoodFactory; 034import com.echothree.model.data.icon.server.factory.IconFactory; 035 036import com.echothree.model.data.party.common.pk.MoodDetailPK; 037 038import com.echothree.model.data.party.server.value.MoodDetailValue; 039 040import com.echothree.model.data.party.server.factory.MoodDetailFactory; 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 058public class MoodDetail 059 extends BaseEntity 060 implements Serializable { 061 062 private MoodDetailPK _pk; 063 private MoodDetailValue _value; 064 065 /** Creates a new instance of MoodDetail */ 066 public MoodDetail() 067 throws PersistenceException { 068 super(); 069 } 070 071 /** Creates a new instance of MoodDetail */ 072 public MoodDetail(MoodDetailValue value, EntityPermission entityPermission) { 073 super(entityPermission); 074 075 _value = value; 076 _pk = value.getPrimaryKey(); 077 } 078 079 @Override 080 public MoodDetailFactory getBaseFactoryInstance() { 081 return MoodDetailFactory.getInstance(); 082 } 083 084 @Override 085 public boolean hasBeenModified() { 086 return _value.hasBeenModified(); 087 } 088 089 @Override 090 public int hashCode() { 091 return _pk.hashCode(); 092 } 093 094 @Override 095 public String toString() { 096 return _pk.toString(); 097 } 098 099 @Override 100 public boolean equals(Object other) { 101 if(this == other) 102 return true; 103 104 if(other instanceof MoodDetail) { 105 MoodDetail that = (MoodDetail)other; 106 107 MoodDetailValue thatValue = that.getMoodDetailValue(); 108 return _value.equals(thatValue); 109 } else { 110 return false; 111 } 112 } 113 114 @Override 115 public void store(Session session) 116 throws PersistenceDatabaseException { 117 getBaseFactoryInstance().store(session, this); 118 } 119 120 @Override 121 public void remove(Session session) 122 throws PersistenceDatabaseException { 123 getBaseFactoryInstance().remove(session, this); 124 } 125 126 @Override 127 public void remove() 128 throws PersistenceDatabaseException { 129 getBaseFactoryInstance().remove(ThreadSession.currentSession(), this); 130 } 131 132 public MoodDetailValue getMoodDetailValue() { 133 return _value; 134 } 135 136 public void setMoodDetailValue(MoodDetailValue value) 137 throws PersistenceReadOnlyException { 138 checkReadWrite(); 139 _value = value; 140 } 141 142 @Override 143 public MoodDetailPK getPrimaryKey() { 144 return _pk; 145 } 146 147 public MoodPK getMoodPK() { 148 return _value.getMoodPK(); 149 } 150 151 public Mood getMood(Session session, EntityPermission entityPermission) { 152 return MoodFactory.getInstance().getEntityFromPK(session, entityPermission, getMoodPK()); 153 } 154 155 public Mood getMood(EntityPermission entityPermission) { 156 return getMood(ThreadSession.currentSession(), entityPermission); 157 } 158 159 public Mood getMood(Session session) { 160 return getMood(session, EntityPermission.READ_ONLY); 161 } 162 163 public Mood getMood() { 164 return getMood(ThreadSession.currentSession(), EntityPermission.READ_ONLY); 165 } 166 167 public Mood getMoodForUpdate(Session session) { 168 return getMood(session, EntityPermission.READ_WRITE); 169 } 170 171 public Mood getMoodForUpdate() { 172 return getMood(ThreadSession.currentSession(), EntityPermission.READ_WRITE); 173 } 174 175 public void setMoodPK(MoodPK moodPK) 176 throws PersistenceNotNullException, PersistenceReadOnlyException { 177 checkReadWrite(); 178 _value.setMoodPK(moodPK); 179 } 180 181 public void setMood(Mood entity) { 182 setMoodPK(entity == null? null: entity.getPrimaryKey()); 183 } 184 185 public boolean getMoodPKHasBeenModified() { 186 return _value.getMoodPKHasBeenModified(); 187 } 188 189 public String getMoodName() { 190 return _value.getMoodName(); 191 } 192 193 public void setMoodName(String moodName) 194 throws PersistenceNotNullException, PersistenceReadOnlyException { 195 checkReadWrite(); 196 _value.setMoodName(moodName); 197 } 198 199 public boolean getMoodNameHasBeenModified() { 200 return _value.getMoodNameHasBeenModified(); 201 } 202 203 public IconPK getIconPK() { 204 return _value.getIconPK(); 205 } 206 207 public Icon getIcon(Session session, EntityPermission entityPermission) { 208 IconPK pk = getIconPK(); 209 Icon entity = pk == null? null: IconFactory.getInstance().getEntityFromPK(session, entityPermission, pk); 210 211 return entity; 212 } 213 214 public Icon getIcon(EntityPermission entityPermission) { 215 return getIcon(ThreadSession.currentSession(), entityPermission); 216 } 217 218 public Icon getIcon(Session session) { 219 return getIcon(session, EntityPermission.READ_ONLY); 220 } 221 222 public Icon getIcon() { 223 return getIcon(ThreadSession.currentSession(), EntityPermission.READ_ONLY); 224 } 225 226 public Icon getIconForUpdate(Session session) { 227 return getIcon(session, EntityPermission.READ_WRITE); 228 } 229 230 public Icon getIconForUpdate() { 231 return getIcon(ThreadSession.currentSession(), EntityPermission.READ_WRITE); 232 } 233 234 public void setIconPK(IconPK iconPK) 235 throws PersistenceNotNullException, PersistenceReadOnlyException { 236 checkReadWrite(); 237 _value.setIconPK(iconPK); 238 } 239 240 public void setIcon(Icon entity) { 241 setIconPK(entity == null? null: entity.getPrimaryKey()); 242 } 243 244 public boolean getIconPKHasBeenModified() { 245 return _value.getIconPKHasBeenModified(); 246 } 247 248 public Boolean getIsDefault() { 249 return _value.getIsDefault(); 250 } 251 252 public void setIsDefault(Boolean isDefault) 253 throws PersistenceNotNullException, PersistenceReadOnlyException { 254 checkReadWrite(); 255 _value.setIsDefault(isDefault); 256 } 257 258 public boolean getIsDefaultHasBeenModified() { 259 return _value.getIsDefaultHasBeenModified(); 260 } 261 262 public Integer getSortOrder() { 263 return _value.getSortOrder(); 264 } 265 266 public void setSortOrder(Integer sortOrder) 267 throws PersistenceNotNullException, PersistenceReadOnlyException { 268 checkReadWrite(); 269 _value.setSortOrder(sortOrder); 270 } 271 272 public boolean getSortOrderHasBeenModified() { 273 return _value.getSortOrderHasBeenModified(); 274 } 275 276 public Long getFromTime() { 277 return _value.getFromTime(); 278 } 279 280 public void setFromTime(Long fromTime) 281 throws PersistenceNotNullException, PersistenceReadOnlyException { 282 checkReadWrite(); 283 _value.setFromTime(fromTime); 284 } 285 286 public boolean getFromTimeHasBeenModified() { 287 return _value.getFromTimeHasBeenModified(); 288 } 289 290 public Long getThruTime() { 291 return _value.getThruTime(); 292 } 293 294 public void setThruTime(Long thruTime) 295 throws PersistenceNotNullException, PersistenceReadOnlyException { 296 checkReadWrite(); 297 _value.setThruTime(thruTime); 298 } 299 300 public boolean getThruTimeHasBeenModified() { 301 return _value.getThruTimeHasBeenModified(); 302 } 303 304}