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