001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.shopping.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link ShoppingOrder}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       ShoppingOrder
024     * @generated
025     */
026    public class ShoppingOrderWrapper implements ShoppingOrder {
027            public ShoppingOrderWrapper(ShoppingOrder shoppingOrder) {
028                    _shoppingOrder = shoppingOrder;
029            }
030    
031            /**
032            * Gets the primary key of this shopping order.
033            *
034            * @return the primary key of this shopping order
035            */
036            public long getPrimaryKey() {
037                    return _shoppingOrder.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this shopping order
042            *
043            * @param pk the primary key of this shopping order
044            */
045            public void setPrimaryKey(long pk) {
046                    _shoppingOrder.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the order id of this shopping order.
051            *
052            * @return the order id of this shopping order
053            */
054            public long getOrderId() {
055                    return _shoppingOrder.getOrderId();
056            }
057    
058            /**
059            * Sets the order id of this shopping order.
060            *
061            * @param orderId the order id of this shopping order
062            */
063            public void setOrderId(long orderId) {
064                    _shoppingOrder.setOrderId(orderId);
065            }
066    
067            /**
068            * Gets the group id of this shopping order.
069            *
070            * @return the group id of this shopping order
071            */
072            public long getGroupId() {
073                    return _shoppingOrder.getGroupId();
074            }
075    
076            /**
077            * Sets the group id of this shopping order.
078            *
079            * @param groupId the group id of this shopping order
080            */
081            public void setGroupId(long groupId) {
082                    _shoppingOrder.setGroupId(groupId);
083            }
084    
085            /**
086            * Gets the company id of this shopping order.
087            *
088            * @return the company id of this shopping order
089            */
090            public long getCompanyId() {
091                    return _shoppingOrder.getCompanyId();
092            }
093    
094            /**
095            * Sets the company id of this shopping order.
096            *
097            * @param companyId the company id of this shopping order
098            */
099            public void setCompanyId(long companyId) {
100                    _shoppingOrder.setCompanyId(companyId);
101            }
102    
103            /**
104            * Gets the user id of this shopping order.
105            *
106            * @return the user id of this shopping order
107            */
108            public long getUserId() {
109                    return _shoppingOrder.getUserId();
110            }
111    
112            /**
113            * Sets the user id of this shopping order.
114            *
115            * @param userId the user id of this shopping order
116            */
117            public void setUserId(long userId) {
118                    _shoppingOrder.setUserId(userId);
119            }
120    
121            /**
122            * Gets the user uuid of this shopping order.
123            *
124            * @return the user uuid of this shopping order
125            * @throws SystemException if a system exception occurred
126            */
127            public java.lang.String getUserUuid()
128                    throws com.liferay.portal.kernel.exception.SystemException {
129                    return _shoppingOrder.getUserUuid();
130            }
131    
132            /**
133            * Sets the user uuid of this shopping order.
134            *
135            * @param userUuid the user uuid of this shopping order
136            */
137            public void setUserUuid(java.lang.String userUuid) {
138                    _shoppingOrder.setUserUuid(userUuid);
139            }
140    
141            /**
142            * Gets the user name of this shopping order.
143            *
144            * @return the user name of this shopping order
145            */
146            public java.lang.String getUserName() {
147                    return _shoppingOrder.getUserName();
148            }
149    
150            /**
151            * Sets the user name of this shopping order.
152            *
153            * @param userName the user name of this shopping order
154            */
155            public void setUserName(java.lang.String userName) {
156                    _shoppingOrder.setUserName(userName);
157            }
158    
159            /**
160            * Gets the create date of this shopping order.
161            *
162            * @return the create date of this shopping order
163            */
164            public java.util.Date getCreateDate() {
165                    return _shoppingOrder.getCreateDate();
166            }
167    
168            /**
169            * Sets the create date of this shopping order.
170            *
171            * @param createDate the create date of this shopping order
172            */
173            public void setCreateDate(java.util.Date createDate) {
174                    _shoppingOrder.setCreateDate(createDate);
175            }
176    
177            /**
178            * Gets the modified date of this shopping order.
179            *
180            * @return the modified date of this shopping order
181            */
182            public java.util.Date getModifiedDate() {
183                    return _shoppingOrder.getModifiedDate();
184            }
185    
186            /**
187            * Sets the modified date of this shopping order.
188            *
189            * @param modifiedDate the modified date of this shopping order
190            */
191            public void setModifiedDate(java.util.Date modifiedDate) {
192                    _shoppingOrder.setModifiedDate(modifiedDate);
193            }
194    
195            /**
196            * Gets the number of this shopping order.
197            *
198            * @return the number of this shopping order
199            */
200            public java.lang.String getNumber() {
201                    return _shoppingOrder.getNumber();
202            }
203    
204            /**
205            * Sets the number of this shopping order.
206            *
207            * @param number the number of this shopping order
208            */
209            public void setNumber(java.lang.String number) {
210                    _shoppingOrder.setNumber(number);
211            }
212    
213            /**
214            * Gets the tax of this shopping order.
215            *
216            * @return the tax of this shopping order
217            */
218            public double getTax() {
219                    return _shoppingOrder.getTax();
220            }
221    
222            /**
223            * Sets the tax of this shopping order.
224            *
225            * @param tax the tax of this shopping order
226            */
227            public void setTax(double tax) {
228                    _shoppingOrder.setTax(tax);
229            }
230    
231            /**
232            * Gets the shipping of this shopping order.
233            *
234            * @return the shipping of this shopping order
235            */
236            public double getShipping() {
237                    return _shoppingOrder.getShipping();
238            }
239    
240            /**
241            * Sets the shipping of this shopping order.
242            *
243            * @param shipping the shipping of this shopping order
244            */
245            public void setShipping(double shipping) {
246                    _shoppingOrder.setShipping(shipping);
247            }
248    
249            /**
250            * Gets the alt shipping of this shopping order.
251            *
252            * @return the alt shipping of this shopping order
253            */
254            public java.lang.String getAltShipping() {
255                    return _shoppingOrder.getAltShipping();
256            }
257    
258            /**
259            * Sets the alt shipping of this shopping order.
260            *
261            * @param altShipping the alt shipping of this shopping order
262            */
263            public void setAltShipping(java.lang.String altShipping) {
264                    _shoppingOrder.setAltShipping(altShipping);
265            }
266    
267            /**
268            * Gets the requires shipping of this shopping order.
269            *
270            * @return the requires shipping of this shopping order
271            */
272            public boolean getRequiresShipping() {
273                    return _shoppingOrder.getRequiresShipping();
274            }
275    
276            /**
277            * Determines whether this shopping order is requires shipping.
278            *
279            * @return whether this shopping order is requires shipping
280            */
281            public boolean isRequiresShipping() {
282                    return _shoppingOrder.isRequiresShipping();
283            }
284    
285            /**
286            * Sets whether this {$entity.humanName} is requires shipping.
287            *
288            * @param requiresShipping the requires shipping of this shopping order
289            */
290            public void setRequiresShipping(boolean requiresShipping) {
291                    _shoppingOrder.setRequiresShipping(requiresShipping);
292            }
293    
294            /**
295            * Gets the insure of this shopping order.
296            *
297            * @return the insure of this shopping order
298            */
299            public boolean getInsure() {
300                    return _shoppingOrder.getInsure();
301            }
302    
303            /**
304            * Determines whether this shopping order is insure.
305            *
306            * @return whether this shopping order is insure
307            */
308            public boolean isInsure() {
309                    return _shoppingOrder.isInsure();
310            }
311    
312            /**
313            * Sets whether this {$entity.humanName} is insure.
314            *
315            * @param insure the insure of this shopping order
316            */
317            public void setInsure(boolean insure) {
318                    _shoppingOrder.setInsure(insure);
319            }
320    
321            /**
322            * Gets the insurance of this shopping order.
323            *
324            * @return the insurance of this shopping order
325            */
326            public double getInsurance() {
327                    return _shoppingOrder.getInsurance();
328            }
329    
330            /**
331            * Sets the insurance of this shopping order.
332            *
333            * @param insurance the insurance of this shopping order
334            */
335            public void setInsurance(double insurance) {
336                    _shoppingOrder.setInsurance(insurance);
337            }
338    
339            /**
340            * Gets the coupon codes of this shopping order.
341            *
342            * @return the coupon codes of this shopping order
343            */
344            public java.lang.String getCouponCodes() {
345                    return _shoppingOrder.getCouponCodes();
346            }
347    
348            /**
349            * Sets the coupon codes of this shopping order.
350            *
351            * @param couponCodes the coupon codes of this shopping order
352            */
353            public void setCouponCodes(java.lang.String couponCodes) {
354                    _shoppingOrder.setCouponCodes(couponCodes);
355            }
356    
357            /**
358            * Gets the coupon discount of this shopping order.
359            *
360            * @return the coupon discount of this shopping order
361            */
362            public double getCouponDiscount() {
363                    return _shoppingOrder.getCouponDiscount();
364            }
365    
366            /**
367            * Sets the coupon discount of this shopping order.
368            *
369            * @param couponDiscount the coupon discount of this shopping order
370            */
371            public void setCouponDiscount(double couponDiscount) {
372                    _shoppingOrder.setCouponDiscount(couponDiscount);
373            }
374    
375            /**
376            * Gets the billing first name of this shopping order.
377            *
378            * @return the billing first name of this shopping order
379            */
380            public java.lang.String getBillingFirstName() {
381                    return _shoppingOrder.getBillingFirstName();
382            }
383    
384            /**
385            * Sets the billing first name of this shopping order.
386            *
387            * @param billingFirstName the billing first name of this shopping order
388            */
389            public void setBillingFirstName(java.lang.String billingFirstName) {
390                    _shoppingOrder.setBillingFirstName(billingFirstName);
391            }
392    
393            /**
394            * Gets the billing last name of this shopping order.
395            *
396            * @return the billing last name of this shopping order
397            */
398            public java.lang.String getBillingLastName() {
399                    return _shoppingOrder.getBillingLastName();
400            }
401    
402            /**
403            * Sets the billing last name of this shopping order.
404            *
405            * @param billingLastName the billing last name of this shopping order
406            */
407            public void setBillingLastName(java.lang.String billingLastName) {
408                    _shoppingOrder.setBillingLastName(billingLastName);
409            }
410    
411            /**
412            * Gets the billing email address of this shopping order.
413            *
414            * @return the billing email address of this shopping order
415            */
416            public java.lang.String getBillingEmailAddress() {
417                    return _shoppingOrder.getBillingEmailAddress();
418            }
419    
420            /**
421            * Sets the billing email address of this shopping order.
422            *
423            * @param billingEmailAddress the billing email address of this shopping order
424            */
425            public void setBillingEmailAddress(java.lang.String billingEmailAddress) {
426                    _shoppingOrder.setBillingEmailAddress(billingEmailAddress);
427            }
428    
429            /**
430            * Gets the billing company of this shopping order.
431            *
432            * @return the billing company of this shopping order
433            */
434            public java.lang.String getBillingCompany() {
435                    return _shoppingOrder.getBillingCompany();
436            }
437    
438            /**
439            * Sets the billing company of this shopping order.
440            *
441            * @param billingCompany the billing company of this shopping order
442            */
443            public void setBillingCompany(java.lang.String billingCompany) {
444                    _shoppingOrder.setBillingCompany(billingCompany);
445            }
446    
447            /**
448            * Gets the billing street of this shopping order.
449            *
450            * @return the billing street of this shopping order
451            */
452            public java.lang.String getBillingStreet() {
453                    return _shoppingOrder.getBillingStreet();
454            }
455    
456            /**
457            * Sets the billing street of this shopping order.
458            *
459            * @param billingStreet the billing street of this shopping order
460            */
461            public void setBillingStreet(java.lang.String billingStreet) {
462                    _shoppingOrder.setBillingStreet(billingStreet);
463            }
464    
465            /**
466            * Gets the billing city of this shopping order.
467            *
468            * @return the billing city of this shopping order
469            */
470            public java.lang.String getBillingCity() {
471                    return _shoppingOrder.getBillingCity();
472            }
473    
474            /**
475            * Sets the billing city of this shopping order.
476            *
477            * @param billingCity the billing city of this shopping order
478            */
479            public void setBillingCity(java.lang.String billingCity) {
480                    _shoppingOrder.setBillingCity(billingCity);
481            }
482    
483            /**
484            * Gets the billing state of this shopping order.
485            *
486            * @return the billing state of this shopping order
487            */
488            public java.lang.String getBillingState() {
489                    return _shoppingOrder.getBillingState();
490            }
491    
492            /**
493            * Sets the billing state of this shopping order.
494            *
495            * @param billingState the billing state of this shopping order
496            */
497            public void setBillingState(java.lang.String billingState) {
498                    _shoppingOrder.setBillingState(billingState);
499            }
500    
501            /**
502            * Gets the billing zip of this shopping order.
503            *
504            * @return the billing zip of this shopping order
505            */
506            public java.lang.String getBillingZip() {
507                    return _shoppingOrder.getBillingZip();
508            }
509    
510            /**
511            * Sets the billing zip of this shopping order.
512            *
513            * @param billingZip the billing zip of this shopping order
514            */
515            public void setBillingZip(java.lang.String billingZip) {
516                    _shoppingOrder.setBillingZip(billingZip);
517            }
518    
519            /**
520            * Gets the billing country of this shopping order.
521            *
522            * @return the billing country of this shopping order
523            */
524            public java.lang.String getBillingCountry() {
525                    return _shoppingOrder.getBillingCountry();
526            }
527    
528            /**
529            * Sets the billing country of this shopping order.
530            *
531            * @param billingCountry the billing country of this shopping order
532            */
533            public void setBillingCountry(java.lang.String billingCountry) {
534                    _shoppingOrder.setBillingCountry(billingCountry);
535            }
536    
537            /**
538            * Gets the billing phone of this shopping order.
539            *
540            * @return the billing phone of this shopping order
541            */
542            public java.lang.String getBillingPhone() {
543                    return _shoppingOrder.getBillingPhone();
544            }
545    
546            /**
547            * Sets the billing phone of this shopping order.
548            *
549            * @param billingPhone the billing phone of this shopping order
550            */
551            public void setBillingPhone(java.lang.String billingPhone) {
552                    _shoppingOrder.setBillingPhone(billingPhone);
553            }
554    
555            /**
556            * Gets the ship to billing of this shopping order.
557            *
558            * @return the ship to billing of this shopping order
559            */
560            public boolean getShipToBilling() {
561                    return _shoppingOrder.getShipToBilling();
562            }
563    
564            /**
565            * Determines whether this shopping order is ship to billing.
566            *
567            * @return whether this shopping order is ship to billing
568            */
569            public boolean isShipToBilling() {
570                    return _shoppingOrder.isShipToBilling();
571            }
572    
573            /**
574            * Sets whether this {$entity.humanName} is ship to billing.
575            *
576            * @param shipToBilling the ship to billing of this shopping order
577            */
578            public void setShipToBilling(boolean shipToBilling) {
579                    _shoppingOrder.setShipToBilling(shipToBilling);
580            }
581    
582            /**
583            * Gets the shipping first name of this shopping order.
584            *
585            * @return the shipping first name of this shopping order
586            */
587            public java.lang.String getShippingFirstName() {
588                    return _shoppingOrder.getShippingFirstName();
589            }
590    
591            /**
592            * Sets the shipping first name of this shopping order.
593            *
594            * @param shippingFirstName the shipping first name of this shopping order
595            */
596            public void setShippingFirstName(java.lang.String shippingFirstName) {
597                    _shoppingOrder.setShippingFirstName(shippingFirstName);
598            }
599    
600            /**
601            * Gets the shipping last name of this shopping order.
602            *
603            * @return the shipping last name of this shopping order
604            */
605            public java.lang.String getShippingLastName() {
606                    return _shoppingOrder.getShippingLastName();
607            }
608    
609            /**
610            * Sets the shipping last name of this shopping order.
611            *
612            * @param shippingLastName the shipping last name of this shopping order
613            */
614            public void setShippingLastName(java.lang.String shippingLastName) {
615                    _shoppingOrder.setShippingLastName(shippingLastName);
616            }
617    
618            /**
619            * Gets the shipping email address of this shopping order.
620            *
621            * @return the shipping email address of this shopping order
622            */
623            public java.lang.String getShippingEmailAddress() {
624                    return _shoppingOrder.getShippingEmailAddress();
625            }
626    
627            /**
628            * Sets the shipping email address of this shopping order.
629            *
630            * @param shippingEmailAddress the shipping email address of this shopping order
631            */
632            public void setShippingEmailAddress(java.lang.String shippingEmailAddress) {
633                    _shoppingOrder.setShippingEmailAddress(shippingEmailAddress);
634            }
635    
636            /**
637            * Gets the shipping company of this shopping order.
638            *
639            * @return the shipping company of this shopping order
640            */
641            public java.lang.String getShippingCompany() {
642                    return _shoppingOrder.getShippingCompany();
643            }
644    
645            /**
646            * Sets the shipping company of this shopping order.
647            *
648            * @param shippingCompany the shipping company of this shopping order
649            */
650            public void setShippingCompany(java.lang.String shippingCompany) {
651                    _shoppingOrder.setShippingCompany(shippingCompany);
652            }
653    
654            /**
655            * Gets the shipping street of this shopping order.
656            *
657            * @return the shipping street of this shopping order
658            */
659            public java.lang.String getShippingStreet() {
660                    return _shoppingOrder.getShippingStreet();
661            }
662    
663            /**
664            * Sets the shipping street of this shopping order.
665            *
666            * @param shippingStreet the shipping street of this shopping order
667            */
668            public void setShippingStreet(java.lang.String shippingStreet) {
669                    _shoppingOrder.setShippingStreet(shippingStreet);
670            }
671    
672            /**
673            * Gets the shipping city of this shopping order.
674            *
675            * @return the shipping city of this shopping order
676            */
677            public java.lang.String getShippingCity() {
678                    return _shoppingOrder.getShippingCity();
679            }
680    
681            /**
682            * Sets the shipping city of this shopping order.
683            *
684            * @param shippingCity the shipping city of this shopping order
685            */
686            public void setShippingCity(java.lang.String shippingCity) {
687                    _shoppingOrder.setShippingCity(shippingCity);
688            }
689    
690            /**
691            * Gets the shipping state of this shopping order.
692            *
693            * @return the shipping state of this shopping order
694            */
695            public java.lang.String getShippingState() {
696                    return _shoppingOrder.getShippingState();
697            }
698    
699            /**
700            * Sets the shipping state of this shopping order.
701            *
702            * @param shippingState the shipping state of this shopping order
703            */
704            public void setShippingState(java.lang.String shippingState) {
705                    _shoppingOrder.setShippingState(shippingState);
706            }
707    
708            /**
709            * Gets the shipping zip of this shopping order.
710            *
711            * @return the shipping zip of this shopping order
712            */
713            public java.lang.String getShippingZip() {
714                    return _shoppingOrder.getShippingZip();
715            }
716    
717            /**
718            * Sets the shipping zip of this shopping order.
719            *
720            * @param shippingZip the shipping zip of this shopping order
721            */
722            public void setShippingZip(java.lang.String shippingZip) {
723                    _shoppingOrder.setShippingZip(shippingZip);
724            }
725    
726            /**
727            * Gets the shipping country of this shopping order.
728            *
729            * @return the shipping country of this shopping order
730            */
731            public java.lang.String getShippingCountry() {
732                    return _shoppingOrder.getShippingCountry();
733            }
734    
735            /**
736            * Sets the shipping country of this shopping order.
737            *
738            * @param shippingCountry the shipping country of this shopping order
739            */
740            public void setShippingCountry(java.lang.String shippingCountry) {
741                    _shoppingOrder.setShippingCountry(shippingCountry);
742            }
743    
744            /**
745            * Gets the shipping phone of this shopping order.
746            *
747            * @return the shipping phone of this shopping order
748            */
749            public java.lang.String getShippingPhone() {
750                    return _shoppingOrder.getShippingPhone();
751            }
752    
753            /**
754            * Sets the shipping phone of this shopping order.
755            *
756            * @param shippingPhone the shipping phone of this shopping order
757            */
758            public void setShippingPhone(java.lang.String shippingPhone) {
759                    _shoppingOrder.setShippingPhone(shippingPhone);
760            }
761    
762            /**
763            * Gets the cc name of this shopping order.
764            *
765            * @return the cc name of this shopping order
766            */
767            public java.lang.String getCcName() {
768                    return _shoppingOrder.getCcName();
769            }
770    
771            /**
772            * Sets the cc name of this shopping order.
773            *
774            * @param ccName the cc name of this shopping order
775            */
776            public void setCcName(java.lang.String ccName) {
777                    _shoppingOrder.setCcName(ccName);
778            }
779    
780            /**
781            * Gets the cc type of this shopping order.
782            *
783            * @return the cc type of this shopping order
784            */
785            public java.lang.String getCcType() {
786                    return _shoppingOrder.getCcType();
787            }
788    
789            /**
790            * Sets the cc type of this shopping order.
791            *
792            * @param ccType the cc type of this shopping order
793            */
794            public void setCcType(java.lang.String ccType) {
795                    _shoppingOrder.setCcType(ccType);
796            }
797    
798            /**
799            * Gets the cc number of this shopping order.
800            *
801            * @return the cc number of this shopping order
802            */
803            public java.lang.String getCcNumber() {
804                    return _shoppingOrder.getCcNumber();
805            }
806    
807            /**
808            * Sets the cc number of this shopping order.
809            *
810            * @param ccNumber the cc number of this shopping order
811            */
812            public void setCcNumber(java.lang.String ccNumber) {
813                    _shoppingOrder.setCcNumber(ccNumber);
814            }
815    
816            /**
817            * Gets the cc exp month of this shopping order.
818            *
819            * @return the cc exp month of this shopping order
820            */
821            public int getCcExpMonth() {
822                    return _shoppingOrder.getCcExpMonth();
823            }
824    
825            /**
826            * Sets the cc exp month of this shopping order.
827            *
828            * @param ccExpMonth the cc exp month of this shopping order
829            */
830            public void setCcExpMonth(int ccExpMonth) {
831                    _shoppingOrder.setCcExpMonth(ccExpMonth);
832            }
833    
834            /**
835            * Gets the cc exp year of this shopping order.
836            *
837            * @return the cc exp year of this shopping order
838            */
839            public int getCcExpYear() {
840                    return _shoppingOrder.getCcExpYear();
841            }
842    
843            /**
844            * Sets the cc exp year of this shopping order.
845            *
846            * @param ccExpYear the cc exp year of this shopping order
847            */
848            public void setCcExpYear(int ccExpYear) {
849                    _shoppingOrder.setCcExpYear(ccExpYear);
850            }
851    
852            /**
853            * Gets the cc ver number of this shopping order.
854            *
855            * @return the cc ver number of this shopping order
856            */
857            public java.lang.String getCcVerNumber() {
858                    return _shoppingOrder.getCcVerNumber();
859            }
860    
861            /**
862            * Sets the cc ver number of this shopping order.
863            *
864            * @param ccVerNumber the cc ver number of this shopping order
865            */
866            public void setCcVerNumber(java.lang.String ccVerNumber) {
867                    _shoppingOrder.setCcVerNumber(ccVerNumber);
868            }
869    
870            /**
871            * Gets the comments of this shopping order.
872            *
873            * @return the comments of this shopping order
874            */
875            public java.lang.String getComments() {
876                    return _shoppingOrder.getComments();
877            }
878    
879            /**
880            * Sets the comments of this shopping order.
881            *
882            * @param comments the comments of this shopping order
883            */
884            public void setComments(java.lang.String comments) {
885                    _shoppingOrder.setComments(comments);
886            }
887    
888            /**
889            * Gets the pp txn id of this shopping order.
890            *
891            * @return the pp txn id of this shopping order
892            */
893            public java.lang.String getPpTxnId() {
894                    return _shoppingOrder.getPpTxnId();
895            }
896    
897            /**
898            * Sets the pp txn id of this shopping order.
899            *
900            * @param ppTxnId the pp txn id of this shopping order
901            */
902            public void setPpTxnId(java.lang.String ppTxnId) {
903                    _shoppingOrder.setPpTxnId(ppTxnId);
904            }
905    
906            /**
907            * Gets the pp payment status of this shopping order.
908            *
909            * @return the pp payment status of this shopping order
910            */
911            public java.lang.String getPpPaymentStatus() {
912                    return _shoppingOrder.getPpPaymentStatus();
913            }
914    
915            /**
916            * Sets the pp payment status of this shopping order.
917            *
918            * @param ppPaymentStatus the pp payment status of this shopping order
919            */
920            public void setPpPaymentStatus(java.lang.String ppPaymentStatus) {
921                    _shoppingOrder.setPpPaymentStatus(ppPaymentStatus);
922            }
923    
924            /**
925            * Gets the pp payment gross of this shopping order.
926            *
927            * @return the pp payment gross of this shopping order
928            */
929            public double getPpPaymentGross() {
930                    return _shoppingOrder.getPpPaymentGross();
931            }
932    
933            /**
934            * Sets the pp payment gross of this shopping order.
935            *
936            * @param ppPaymentGross the pp payment gross of this shopping order
937            */
938            public void setPpPaymentGross(double ppPaymentGross) {
939                    _shoppingOrder.setPpPaymentGross(ppPaymentGross);
940            }
941    
942            /**
943            * Gets the pp receiver email of this shopping order.
944            *
945            * @return the pp receiver email of this shopping order
946            */
947            public java.lang.String getPpReceiverEmail() {
948                    return _shoppingOrder.getPpReceiverEmail();
949            }
950    
951            /**
952            * Sets the pp receiver email of this shopping order.
953            *
954            * @param ppReceiverEmail the pp receiver email of this shopping order
955            */
956            public void setPpReceiverEmail(java.lang.String ppReceiverEmail) {
957                    _shoppingOrder.setPpReceiverEmail(ppReceiverEmail);
958            }
959    
960            /**
961            * Gets the pp payer email of this shopping order.
962            *
963            * @return the pp payer email of this shopping order
964            */
965            public java.lang.String getPpPayerEmail() {
966                    return _shoppingOrder.getPpPayerEmail();
967            }
968    
969            /**
970            * Sets the pp payer email of this shopping order.
971            *
972            * @param ppPayerEmail the pp payer email of this shopping order
973            */
974            public void setPpPayerEmail(java.lang.String ppPayerEmail) {
975                    _shoppingOrder.setPpPayerEmail(ppPayerEmail);
976            }
977    
978            /**
979            * Gets the send order email of this shopping order.
980            *
981            * @return the send order email of this shopping order
982            */
983            public boolean getSendOrderEmail() {
984                    return _shoppingOrder.getSendOrderEmail();
985            }
986    
987            /**
988            * Determines whether this shopping order is send order email.
989            *
990            * @return whether this shopping order is send order email
991            */
992            public boolean isSendOrderEmail() {
993                    return _shoppingOrder.isSendOrderEmail();
994            }
995    
996            /**
997            * Sets whether this {$entity.humanName} is send order email.
998            *
999            * @param sendOrderEmail the send order email of this shopping order
1000            */
1001            public void setSendOrderEmail(boolean sendOrderEmail) {
1002                    _shoppingOrder.setSendOrderEmail(sendOrderEmail);
1003            }
1004    
1005            /**
1006            * Gets the send shipping email of this shopping order.
1007            *
1008            * @return the send shipping email of this shopping order
1009            */
1010            public boolean getSendShippingEmail() {
1011                    return _shoppingOrder.getSendShippingEmail();
1012            }
1013    
1014            /**
1015            * Determines whether this shopping order is send shipping email.
1016            *
1017            * @return whether this shopping order is send shipping email
1018            */
1019            public boolean isSendShippingEmail() {
1020                    return _shoppingOrder.isSendShippingEmail();
1021            }
1022    
1023            /**
1024            * Sets whether this {$entity.humanName} is send shipping email.
1025            *
1026            * @param sendShippingEmail the send shipping email of this shopping order
1027            */
1028            public void setSendShippingEmail(boolean sendShippingEmail) {
1029                    _shoppingOrder.setSendShippingEmail(sendShippingEmail);
1030            }
1031    
1032            public boolean isNew() {
1033                    return _shoppingOrder.isNew();
1034            }
1035    
1036            public void setNew(boolean n) {
1037                    _shoppingOrder.setNew(n);
1038            }
1039    
1040            public boolean isCachedModel() {
1041                    return _shoppingOrder.isCachedModel();
1042            }
1043    
1044            public void setCachedModel(boolean cachedModel) {
1045                    _shoppingOrder.setCachedModel(cachedModel);
1046            }
1047    
1048            public boolean isEscapedModel() {
1049                    return _shoppingOrder.isEscapedModel();
1050            }
1051    
1052            public void setEscapedModel(boolean escapedModel) {
1053                    _shoppingOrder.setEscapedModel(escapedModel);
1054            }
1055    
1056            public java.io.Serializable getPrimaryKeyObj() {
1057                    return _shoppingOrder.getPrimaryKeyObj();
1058            }
1059    
1060            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
1061                    return _shoppingOrder.getExpandoBridge();
1062            }
1063    
1064            public void setExpandoBridgeAttributes(
1065                    com.liferay.portal.service.ServiceContext serviceContext) {
1066                    _shoppingOrder.setExpandoBridgeAttributes(serviceContext);
1067            }
1068    
1069            public java.lang.Object clone() {
1070                    return _shoppingOrder.clone();
1071            }
1072    
1073            public int compareTo(
1074                    com.liferay.portlet.shopping.model.ShoppingOrder shoppingOrder) {
1075                    return _shoppingOrder.compareTo(shoppingOrder);
1076            }
1077    
1078            public int hashCode() {
1079                    return _shoppingOrder.hashCode();
1080            }
1081    
1082            public com.liferay.portlet.shopping.model.ShoppingOrder toEscapedModel() {
1083                    return _shoppingOrder.toEscapedModel();
1084            }
1085    
1086            public java.lang.String toString() {
1087                    return _shoppingOrder.toString();
1088            }
1089    
1090            public java.lang.String toXmlString() {
1091                    return _shoppingOrder.toXmlString();
1092            }
1093    
1094            public ShoppingOrder getWrappedShoppingOrder() {
1095                    return _shoppingOrder;
1096            }
1097    
1098            private ShoppingOrder _shoppingOrder;
1099    }