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 * ShippingMethodDetailValue.java
021 */
022
023package com.echothree.model.data.shipping.server.value;
024
025import com.echothree.model.data.shipping.common.pk.ShippingMethodDetailPK;
026
027import com.echothree.model.data.shipping.server.factory.ShippingMethodDetailFactory;
028
029import com.echothree.model.data.shipping.common.pk.ShippingMethodPK;
030import com.echothree.model.data.selector.common.pk.SelectorPK;
031
032import com.echothree.util.common.exception.PersistenceCloneException;
033import com.echothree.util.common.exception.PersistenceNotNullException;
034
035import com.echothree.util.server.persistence.BaseValue;
036
037import java.io.Serializable;
038
039public class ShippingMethodDetailValue
040        extends BaseValue<ShippingMethodDetailPK>
041        implements Cloneable, Serializable {
042    
043    private ShippingMethodPK shippingMethodPK;
044    private boolean shippingMethodPKHasBeenModified = false;
045    private String shippingMethodName;
046    private boolean shippingMethodNameHasBeenModified = false;
047    private SelectorPK geoCodeSelectorPK;
048    private boolean geoCodeSelectorPKHasBeenModified = false;
049    private SelectorPK itemSelectorPK;
050    private boolean itemSelectorPKHasBeenModified = false;
051    private Integer sortOrder;
052    private boolean sortOrderHasBeenModified = false;
053    private Long fromTime;
054    private boolean fromTimeHasBeenModified = false;
055    private Long thruTime;
056    private boolean thruTimeHasBeenModified = false;
057    
058    private transient Integer _hashCode = null;
059    private transient String _stringValue = null;
060    
061    private void constructFields(ShippingMethodPK shippingMethodPK, String shippingMethodName, SelectorPK geoCodeSelectorPK, SelectorPK itemSelectorPK, Integer sortOrder, Long fromTime, Long thruTime)
062            throws PersistenceNotNullException {
063        checkForNull(shippingMethodPK);
064        this.shippingMethodPK = shippingMethodPK;
065        checkForNull(shippingMethodName);
066        this.shippingMethodName = shippingMethodName;
067        this.geoCodeSelectorPK = geoCodeSelectorPK;
068        this.itemSelectorPK = itemSelectorPK;
069        checkForNull(sortOrder);
070        this.sortOrder = sortOrder;
071        checkForNull(fromTime);
072        this.fromTime = fromTime;
073        checkForNull(thruTime);
074        this.thruTime = thruTime;
075    }
076    
077    /** Creates a new instance of ShippingMethodDetailValue */
078    public ShippingMethodDetailValue(ShippingMethodDetailPK shippingMethodDetailPK, ShippingMethodPK shippingMethodPK, String shippingMethodName, SelectorPK geoCodeSelectorPK, SelectorPK itemSelectorPK, Integer sortOrder, Long fromTime, Long thruTime)
079            throws PersistenceNotNullException {
080        super(shippingMethodDetailPK);
081        constructFields(shippingMethodPK, shippingMethodName, geoCodeSelectorPK, itemSelectorPK, sortOrder, fromTime, thruTime);
082    }
083    
084    /** Creates a new instance of ShippingMethodDetailValue */
085    public ShippingMethodDetailValue(ShippingMethodPK shippingMethodPK, String shippingMethodName, SelectorPK geoCodeSelectorPK, SelectorPK itemSelectorPK, Integer sortOrder, Long fromTime, Long thruTime)
086            throws PersistenceNotNullException {
087        super();
088        constructFields(shippingMethodPK, shippingMethodName, geoCodeSelectorPK, itemSelectorPK, sortOrder, fromTime, thruTime);
089    }
090    
091   @Override
092   public ShippingMethodDetailFactory getBaseFactoryInstance() {
093        return ShippingMethodDetailFactory.getInstance();
094    }
095    
096    @Override
097    public ShippingMethodDetailValue clone() {
098        Object result;
099        
100        try {
101            result = super.clone();
102        } catch (CloneNotSupportedException cnse) {
103            // This shouldn't happen, fail when it does.
104            throw new PersistenceCloneException(cnse);
105        }
106        
107        return (ShippingMethodDetailValue)result;
108    }
109    
110   @Override
111    public ShippingMethodDetailPK getPrimaryKey() {
112        if(_primaryKey == null) {
113            _primaryKey = new ShippingMethodDetailPK(entityId);
114        }
115        
116        return _primaryKey;
117    }
118    
119    private void clearHashAndString() {
120        _hashCode = null;
121        _stringValue = null;
122    }
123    
124    @Override
125    public int hashCode() {
126        if(_hashCode == null) {
127            int hashCode = 17;
128            
129            hashCode = 37 * hashCode + ((entityId != null) ? entityId.hashCode() : 0);
130            
131            hashCode = 37 * hashCode + ((shippingMethodPK != null) ? shippingMethodPK.hashCode() : 0);
132            hashCode = 37 * hashCode + ((shippingMethodName != null) ? shippingMethodName.hashCode() : 0);
133            hashCode = 37 * hashCode + ((geoCodeSelectorPK != null) ? geoCodeSelectorPK.hashCode() : 0);
134            hashCode = 37 * hashCode + ((itemSelectorPK != null) ? itemSelectorPK.hashCode() : 0);
135            hashCode = 37 * hashCode + ((sortOrder != null) ? sortOrder.hashCode() : 0);
136            hashCode = 37 * hashCode + ((fromTime != null) ? fromTime.hashCode() : 0);
137            hashCode = 37 * hashCode + ((thruTime != null) ? thruTime.hashCode() : 0);
138            
139            _hashCode = hashCode;
140        }
141        
142        return _hashCode;
143    }
144    
145    @Override
146    public String toString() {
147        if(_stringValue == null) {
148            StringBuilder stringValue = new StringBuilder("{");
149            
150            stringValue.append("entityId=").append(getEntityId());
151            
152            stringValue.append(", shippingMethodPK=").append(getShippingMethodPK());
153            stringValue.append(", shippingMethodName=").append(getShippingMethodName());
154            stringValue.append(", geoCodeSelectorPK=").append(getGeoCodeSelectorPK());
155            stringValue.append(", itemSelectorPK=").append(getItemSelectorPK());
156            stringValue.append(", sortOrder=").append(getSortOrder());
157            stringValue.append(", fromTime=").append(getFromTime());
158            stringValue.append(", thruTime=").append(getThruTime());
159            
160            stringValue.append('}');
161            
162            _stringValue = stringValue.toString();
163        }
164        return _stringValue;
165    }
166    
167    @Override
168    public boolean equals(Object other) {
169        if(this == other)
170            return true;
171        
172        if(!hasIdentity())
173            return false;
174        
175        if(other instanceof  ShippingMethodDetailValue) {
176            ShippingMethodDetailValue that = (ShippingMethodDetailValue)other;
177            
178            if(!that.hasIdentity())
179                return false;
180            
181            Long thisEntityId = getEntityId();
182            Long thatEntityId = that.getEntityId();
183            
184            boolean objectsEqual = thisEntityId.equals(thatEntityId);
185            if(objectsEqual)
186                objectsEqual = objectsEqual && isIdentical(that);
187            
188            return objectsEqual;
189        } else {
190            return false;
191        }
192    }
193    
194    public boolean isIdentical(Object other) {
195        if(other instanceof ShippingMethodDetailValue) {
196            ShippingMethodDetailValue that = (ShippingMethodDetailValue)other;
197            boolean objectsEqual = true;
198            
199            
200            if(objectsEqual) {
201                ShippingMethodPK thisShippingMethodPK = getShippingMethodPK();
202                ShippingMethodPK thatShippingMethodPK = that.getShippingMethodPK();
203                
204                if(thisShippingMethodPK == null) {
205                    objectsEqual = objectsEqual && (thatShippingMethodPK == null);
206                } else {
207                    objectsEqual = objectsEqual && thisShippingMethodPK.equals(thatShippingMethodPK);
208                }
209            }
210            
211            if(objectsEqual) {
212                String thisShippingMethodName = getShippingMethodName();
213                String thatShippingMethodName = that.getShippingMethodName();
214                
215                if(thisShippingMethodName == null) {
216                    objectsEqual = objectsEqual && (thatShippingMethodName == null);
217                } else {
218                    objectsEqual = objectsEqual && thisShippingMethodName.equals(thatShippingMethodName);
219                }
220            }
221            
222            if(objectsEqual) {
223                SelectorPK thisGeoCodeSelectorPK = getGeoCodeSelectorPK();
224                SelectorPK thatGeoCodeSelectorPK = that.getGeoCodeSelectorPK();
225                
226                if(thisGeoCodeSelectorPK == null) {
227                    objectsEqual = objectsEqual && (thatGeoCodeSelectorPK == null);
228                } else {
229                    objectsEqual = objectsEqual && thisGeoCodeSelectorPK.equals(thatGeoCodeSelectorPK);
230                }
231            }
232            
233            if(objectsEqual) {
234                SelectorPK thisItemSelectorPK = getItemSelectorPK();
235                SelectorPK thatItemSelectorPK = that.getItemSelectorPK();
236                
237                if(thisItemSelectorPK == null) {
238                    objectsEqual = objectsEqual && (thatItemSelectorPK == null);
239                } else {
240                    objectsEqual = objectsEqual && thisItemSelectorPK.equals(thatItemSelectorPK);
241                }
242            }
243            
244            if(objectsEqual) {
245                Integer thisSortOrder = getSortOrder();
246                Integer thatSortOrder = that.getSortOrder();
247                
248                if(thisSortOrder == null) {
249                    objectsEqual = objectsEqual && (thatSortOrder == null);
250                } else {
251                    objectsEqual = objectsEqual && thisSortOrder.equals(thatSortOrder);
252                }
253            }
254            
255            if(objectsEqual) {
256                Long thisFromTime = getFromTime();
257                Long thatFromTime = that.getFromTime();
258                
259                if(thisFromTime == null) {
260                    objectsEqual = objectsEqual && (thatFromTime == null);
261                } else {
262                    objectsEqual = objectsEqual && thisFromTime.equals(thatFromTime);
263                }
264            }
265            
266            if(objectsEqual) {
267                Long thisThruTime = getThruTime();
268                Long thatThruTime = that.getThruTime();
269                
270                if(thisThruTime == null) {
271                    objectsEqual = objectsEqual && (thatThruTime == null);
272                } else {
273                    objectsEqual = objectsEqual && thisThruTime.equals(thatThruTime);
274                }
275            }
276            
277            return objectsEqual;
278        } else {
279            return false;
280        }
281    }
282    
283    @Override
284    public boolean hasBeenModified() {
285        return shippingMethodPKHasBeenModified || shippingMethodNameHasBeenModified || geoCodeSelectorPKHasBeenModified || itemSelectorPKHasBeenModified || sortOrderHasBeenModified || fromTimeHasBeenModified || thruTimeHasBeenModified;
286    }
287    
288    @Override
289    public void clearHasBeenModified() {
290        shippingMethodPKHasBeenModified = false;
291        shippingMethodNameHasBeenModified = false;
292        geoCodeSelectorPKHasBeenModified = false;
293        itemSelectorPKHasBeenModified = false;
294        sortOrderHasBeenModified = false;
295        fromTimeHasBeenModified = false;
296        thruTimeHasBeenModified = false;
297    }
298    
299    public ShippingMethodPK getShippingMethodPK() {
300        return shippingMethodPK;
301    }
302    
303    public void setShippingMethodPK(ShippingMethodPK shippingMethodPK)
304            throws PersistenceNotNullException {
305        checkForNull(shippingMethodPK);
306        
307        boolean update = true;
308        
309        if(this.shippingMethodPK != null) {
310            if(this.shippingMethodPK.equals(shippingMethodPK)) {
311                update = false;
312            }
313        } else if(shippingMethodPK == null) {
314            update = false;
315        }
316        
317        if(update) {
318            this.shippingMethodPK = shippingMethodPK;
319            shippingMethodPKHasBeenModified = true;
320            clearHashAndString();
321        }
322    }
323    
324    public boolean getShippingMethodPKHasBeenModified() {
325        return shippingMethodPKHasBeenModified;
326    }
327    
328    public String getShippingMethodName() {
329        return shippingMethodName;
330    }
331    
332    public void setShippingMethodName(String shippingMethodName)
333            throws PersistenceNotNullException {
334        checkForNull(shippingMethodName);
335        
336        boolean update = true;
337        
338        if(this.shippingMethodName != null) {
339            if(this.shippingMethodName.equals(shippingMethodName)) {
340                update = false;
341            }
342        } else if(shippingMethodName == null) {
343            update = false;
344        }
345        
346        if(update) {
347            this.shippingMethodName = shippingMethodName;
348            shippingMethodNameHasBeenModified = true;
349            clearHashAndString();
350        }
351    }
352    
353    public boolean getShippingMethodNameHasBeenModified() {
354        return shippingMethodNameHasBeenModified;
355    }
356    
357    public SelectorPK getGeoCodeSelectorPK() {
358        return geoCodeSelectorPK;
359    }
360    
361    public void setGeoCodeSelectorPK(SelectorPK geoCodeSelectorPK) {
362        boolean update = true;
363        
364        if(this.geoCodeSelectorPK != null) {
365            if(this.geoCodeSelectorPK.equals(geoCodeSelectorPK)) {
366                update = false;
367            }
368        } else if(geoCodeSelectorPK == null) {
369            update = false;
370        }
371        
372        if(update) {
373            this.geoCodeSelectorPK = geoCodeSelectorPK;
374            geoCodeSelectorPKHasBeenModified = true;
375            clearHashAndString();
376        }
377    }
378    
379    public boolean getGeoCodeSelectorPKHasBeenModified() {
380        return geoCodeSelectorPKHasBeenModified;
381    }
382    
383    public SelectorPK getItemSelectorPK() {
384        return itemSelectorPK;
385    }
386    
387    public void setItemSelectorPK(SelectorPK itemSelectorPK) {
388        boolean update = true;
389        
390        if(this.itemSelectorPK != null) {
391            if(this.itemSelectorPK.equals(itemSelectorPK)) {
392                update = false;
393            }
394        } else if(itemSelectorPK == null) {
395            update = false;
396        }
397        
398        if(update) {
399            this.itemSelectorPK = itemSelectorPK;
400            itemSelectorPKHasBeenModified = true;
401            clearHashAndString();
402        }
403    }
404    
405    public boolean getItemSelectorPKHasBeenModified() {
406        return itemSelectorPKHasBeenModified;
407    }
408    
409    public Integer getSortOrder() {
410        return sortOrder;
411    }
412    
413    public void setSortOrder(Integer sortOrder)
414            throws PersistenceNotNullException {
415        checkForNull(sortOrder);
416        
417        boolean update = true;
418        
419        if(this.sortOrder != null) {
420            if(this.sortOrder.equals(sortOrder)) {
421                update = false;
422            }
423        } else if(sortOrder == null) {
424            update = false;
425        }
426        
427        if(update) {
428            this.sortOrder = sortOrder;
429            sortOrderHasBeenModified = true;
430            clearHashAndString();
431        }
432    }
433    
434    public boolean getSortOrderHasBeenModified() {
435        return sortOrderHasBeenModified;
436    }
437    
438    public Long getFromTime() {
439        return fromTime;
440    }
441    
442    public void setFromTime(Long fromTime)
443            throws PersistenceNotNullException {
444        checkForNull(fromTime);
445        
446        boolean update = true;
447        
448        if(this.fromTime != null) {
449            if(this.fromTime.equals(fromTime)) {
450                update = false;
451            }
452        } else if(fromTime == null) {
453            update = false;
454        }
455        
456        if(update) {
457            this.fromTime = fromTime;
458            fromTimeHasBeenModified = true;
459            clearHashAndString();
460        }
461    }
462    
463    public boolean getFromTimeHasBeenModified() {
464        return fromTimeHasBeenModified;
465    }
466    
467    public Long getThruTime() {
468        return thruTime;
469    }
470    
471    public void setThruTime(Long thruTime)
472            throws PersistenceNotNullException {
473        checkForNull(thruTime);
474        
475        boolean update = true;
476        
477        if(this.thruTime != null) {
478            if(this.thruTime.equals(thruTime)) {
479                update = false;
480            }
481        } else if(thruTime == null) {
482            update = false;
483        }
484        
485        if(update) {
486            this.thruTime = thruTime;
487            thruTimeHasBeenModified = true;
488            clearHashAndString();
489        }
490    }
491    
492    public boolean getThruTimeHasBeenModified() {
493        return thruTimeHasBeenModified;
494    }
495    
496}