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 * SecurityRoleGroupDetail.java
021 */
022
023package com.echothree.model.data.security.server.entity;
024
025import com.echothree.model.data.security.common.pk.SecurityRoleGroupDetailPK;
026
027import com.echothree.model.data.security.common.pk.SecurityRoleGroupPK;
028
029import com.echothree.model.data.security.server.entity.SecurityRoleGroup;
030
031import com.echothree.model.data.security.server.factory.SecurityRoleGroupFactory;
032
033import com.echothree.model.data.security.common.pk.SecurityRoleGroupDetailPK;
034
035import com.echothree.model.data.security.server.value.SecurityRoleGroupDetailValue;
036
037import com.echothree.model.data.security.server.factory.SecurityRoleGroupDetailFactory;
038
039import com.echothree.util.common.exception.PersistenceException;
040import com.echothree.util.common.exception.PersistenceDatabaseException;
041import com.echothree.util.common.exception.PersistenceNotNullException;
042import com.echothree.util.common.exception.PersistenceReadOnlyException;
043
044import com.echothree.util.common.persistence.BasePK;
045
046import com.echothree.util.common.persistence.type.ByteArray;
047
048import com.echothree.util.server.persistence.BaseEntity;
049import com.echothree.util.server.persistence.EntityPermission;
050import com.echothree.util.server.persistence.Session;
051import com.echothree.util.server.persistence.ThreadSession;
052
053import java.io.Serializable;
054
055import javax.annotation.Nonnull;
056import javax.annotation.Nullable;
057
058public class SecurityRoleGroupDetail
059        extends BaseEntity
060        implements Serializable {
061    
062    private SecurityRoleGroupDetailPK _pk;
063    private SecurityRoleGroupDetailValue _value;
064    
065    /** Creates a new instance of SecurityRoleGroupDetail */
066    public SecurityRoleGroupDetail()
067            throws PersistenceException {
068        super();
069    }
070    
071    /** Creates a new instance of SecurityRoleGroupDetail */
072    public SecurityRoleGroupDetail(SecurityRoleGroupDetailValue value, EntityPermission entityPermission) {
073        super(entityPermission);
074        
075        _value = value;
076        _pk = value.getPrimaryKey();
077    }
078    
079    @Override
080    @Nonnull
081    public SecurityRoleGroupDetailFactory getBaseFactoryInstance() {
082        return SecurityRoleGroupDetailFactory.getInstance();
083    }
084    
085    @Override
086    public boolean hasBeenModified() {
087        return _value.hasBeenModified();
088    }
089    
090    @Override
091    public int hashCode() {
092        return _pk.hashCode();
093    }
094    
095    @Override
096    @Nonnull
097    public String toString() {
098        return _pk.toString();
099    }
100    
101    @Override
102    public boolean equals(Object other) {
103        if(this == other)
104            return true;
105        
106        if(other instanceof SecurityRoleGroupDetail that) {
107            SecurityRoleGroupDetailValue thatValue = that.getSecurityRoleGroupDetailValue();
108            return _value.equals(thatValue);
109        } else {
110            return false;
111        }
112    }
113    
114    @Override
115    public void store()
116            throws PersistenceDatabaseException {
117        getBaseFactoryInstance().store(this);
118    }
119    
120    @Override
121    public void remove()
122            throws PersistenceDatabaseException {
123        getBaseFactoryInstance().remove(this);
124    }
125    
126    @Nonnull
127    public SecurityRoleGroupDetailValue getSecurityRoleGroupDetailValue() {
128        return _value;
129    }
130    
131    public void setSecurityRoleGroupDetailValue(@Nonnull SecurityRoleGroupDetailValue value)
132            throws PersistenceReadOnlyException {
133        checkReadWrite();
134        _value = value;
135    }
136    
137    @Override
138    @Nonnull
139    public SecurityRoleGroupDetailPK getPrimaryKey() {
140        return _pk;
141    }
142    
143    @Nonnull
144    public SecurityRoleGroupPK getSecurityRoleGroupPK() {
145        return _value.getSecurityRoleGroupPK();
146    }
147    
148    @Nonnull
149    public SecurityRoleGroup getSecurityRoleGroup(EntityPermission entityPermission) {
150        return SecurityRoleGroupFactory.getInstance().getEntityFromPK(entityPermission, getSecurityRoleGroupPK());
151    }
152    
153    @Nonnull
154    public SecurityRoleGroup getSecurityRoleGroup() {
155        return getSecurityRoleGroup(EntityPermission.READ_ONLY);
156    }
157    
158    @Nonnull
159    public SecurityRoleGroup getSecurityRoleGroupForUpdate() {
160        return getSecurityRoleGroup(EntityPermission.READ_WRITE);
161    }
162    
163    public void setSecurityRoleGroupPK(@Nonnull SecurityRoleGroupPK securityRoleGroupPK)
164            throws PersistenceNotNullException, PersistenceReadOnlyException {
165        checkReadWrite();
166        _value.setSecurityRoleGroupPK(securityRoleGroupPK);
167    }
168    
169    public void setSecurityRoleGroup(@Nonnull SecurityRoleGroup entity) {
170        setSecurityRoleGroupPK(entity == null ? null : entity.getPrimaryKey());
171    }
172    
173    public boolean getSecurityRoleGroupPKHasBeenModified() {
174        return _value.getSecurityRoleGroupPKHasBeenModified();
175    }
176    
177    @Nonnull
178    public String getSecurityRoleGroupName() {
179        return _value.getSecurityRoleGroupName();
180    }
181    
182    public void setSecurityRoleGroupName(@Nonnull String securityRoleGroupName)
183            throws PersistenceNotNullException, PersistenceReadOnlyException {
184        checkReadWrite();
185        _value.setSecurityRoleGroupName(securityRoleGroupName);
186    }
187    
188    public boolean getSecurityRoleGroupNameHasBeenModified() {
189        return _value.getSecurityRoleGroupNameHasBeenModified();
190    }
191    
192    @Nullable
193    public SecurityRoleGroupPK getParentSecurityRoleGroupPK() {
194        return _value.getParentSecurityRoleGroupPK();
195    }
196    
197    @Nullable
198    public SecurityRoleGroup getParentSecurityRoleGroup(EntityPermission entityPermission) {
199        SecurityRoleGroupPK pk = getParentSecurityRoleGroupPK();
200        SecurityRoleGroup entity = pk == null? null: SecurityRoleGroupFactory.getInstance().getEntityFromPK(entityPermission, pk);
201        
202        return entity;
203    }
204    
205    @Nullable
206    public SecurityRoleGroup getParentSecurityRoleGroup() {
207        return getParentSecurityRoleGroup(EntityPermission.READ_ONLY);
208    }
209    
210    @Nullable
211    public SecurityRoleGroup getParentSecurityRoleGroupForUpdate() {
212        return getParentSecurityRoleGroup(EntityPermission.READ_WRITE);
213    }
214    
215    public void setParentSecurityRoleGroupPK(@Nullable SecurityRoleGroupPK parentSecurityRoleGroupPK)
216            throws PersistenceNotNullException, PersistenceReadOnlyException {
217        checkReadWrite();
218        _value.setParentSecurityRoleGroupPK(parentSecurityRoleGroupPK);
219    }
220    
221    public void setParentSecurityRoleGroup(@Nullable SecurityRoleGroup entity) {
222        setParentSecurityRoleGroupPK(entity == null ? null : entity.getPrimaryKey());
223    }
224    
225    public boolean getParentSecurityRoleGroupPKHasBeenModified() {
226        return _value.getParentSecurityRoleGroupPKHasBeenModified();
227    }
228    
229    @Nonnull
230    public Boolean getIsDefault() {
231        return _value.getIsDefault();
232    }
233    
234    public void setIsDefault(@Nonnull Boolean isDefault)
235            throws PersistenceNotNullException, PersistenceReadOnlyException {
236        checkReadWrite();
237        _value.setIsDefault(isDefault);
238    }
239    
240    public boolean getIsDefaultHasBeenModified() {
241        return _value.getIsDefaultHasBeenModified();
242    }
243    
244    @Nonnull
245    public Integer getSortOrder() {
246        return _value.getSortOrder();
247    }
248    
249    public void setSortOrder(@Nonnull Integer sortOrder)
250            throws PersistenceNotNullException, PersistenceReadOnlyException {
251        checkReadWrite();
252        _value.setSortOrder(sortOrder);
253    }
254    
255    public boolean getSortOrderHasBeenModified() {
256        return _value.getSortOrderHasBeenModified();
257    }
258    
259    @Nonnull
260    public Long getFromTime() {
261        return _value.getFromTime();
262    }
263    
264    public void setFromTime(@Nonnull Long fromTime)
265            throws PersistenceNotNullException, PersistenceReadOnlyException {
266        checkReadWrite();
267        _value.setFromTime(fromTime);
268    }
269    
270    public boolean getFromTimeHasBeenModified() {
271        return _value.getFromTimeHasBeenModified();
272    }
273    
274    @Nonnull
275    public Long getThruTime() {
276        return _value.getThruTime();
277    }
278    
279    public void setThruTime(@Nonnull Long thruTime)
280            throws PersistenceNotNullException, PersistenceReadOnlyException {
281        checkReadWrite();
282        _value.setThruTime(thruTime);
283    }
284    
285    public boolean getThruTimeHasBeenModified() {
286        return _value.getThruTimeHasBeenModified();
287    }
288    
289}