Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9947 vikram.rag 1
package order;
2
 
3
import java.util.List;
4
 
5
import javax.xml.datatype.XMLGregorianCalendar;
6
 
7
import com.google.gson.annotations.SerializedName;
8
 
9
 
10
public class Order {
11
	@SerializedName("status")
12
    public String statusDateMessage;
13
    int sla;
14
    public String hasTickets;
15
 
16
    public int returnableQuantity;
17
    public String tickets;
18
    public String imei;
19
    public String invoice;
20
    public XMLGregorianCalendar invoiceDate;
21
    public short invoiceAmount;
22
    public float taxAmount;
23
    public String weight;
24
    @SerializedName("external_id")
25
    public String externalId;
26
    @SerializedName("order_item_id")
27
    public String orderItemId;
28
    public long sku;
29
    public String title;
30
    @SerializedName("listing_id")
31
    public String listingId;
32
    @SerializedName("product_image")
33
    public String productImage;
34
    public int quantity;
35
    @SerializedName("product_id")
36
    public String productId;
37
    public String freebie;
38
    @SerializedName("created_date")
39
    public String createdDate;
40
    @SerializedName("created_time")
41
    public String createdTime;
42
    @SerializedName("list_price")
43
    public double listPrice;
44
    @SerializedName("shipping_fees")
45
    public double shippingFees;
46
    public double emi;
47
    public double octroi;
48
    @SerializedName("total_price")
49
    public double totalPrice;
50
    @SerializedName("customer_name")	
51
    public String customerName;
52
    @SerializedName("shipping_address")
53
    public String shippingAddress;
54
    @SerializedName("shipping_address_name")
55
    public String shippingAddressName;
56
    @SerializedName("shipping_address_line1")
57
    public String shippingAddressLine1;
58
    @SerializedName("shipping_address_line2")
59
    public String shippingAddressLine2;
60
    @SerializedName("shipping_address_city")
61
    public String shippingAddressCity;
62
    @SerializedName("shipping_address_state")
63
    public String shippingAddressState;
64
    @SerializedName("shipping_address_pincode")
65
    public String shippingAddressPincode;
66
    //public long phone;
67
    public String status;
68
    @SerializedName("statusLabel")
69
    public String statusLabel;
70
    @SerializedName("tracking_id")
71
    public String trackingId;
72
    public List<String> actions;
73
    @SerializedName("flipkart_item_link")
74
    public String flipkartItemLink;
75
    @SerializedName("modified_date")
76
    public String modifiedDate;
77
    public String trackingHash;
78
    @SerializedName("cancel_reason")
79
    public String cancelReason;
80
    @SerializedName("cancel_sub_reason")
81
    public String cancelSubReason;
82
    public String returnReason;
83
    public String returnComment;
84
    public String pickup_by_date;
85
 
86
	public String getPickup_by_date() {
87
		return pickup_by_date;
88
	}
89
 
90
	public void setPickup_by_date(String pickup_by_date) {
91
		this.pickup_by_date = pickup_by_date;
92
	}
93
 
94
	public int getSla() {
95
		return sla;
96
	}
97
 
98
	public void setSla(int sla) {
99
		this.sla = sla;
100
	}
101
 
102
	/**
103
     * Gets the value of the statusDateMessage property.
104
     * 
105
     * @return
106
     *     possible object is
107
     *     {@link String }
108
     *     
109
     */
110
    public String getStatusDateMessage() {
111
        return statusDateMessage;
112
    }
113
 
114
    /**
115
     * Sets the value of the statusDateMessage property.
116
     * 
117
     * @param value
118
     *     allowed object is
119
     *     {@link String }
120
     *     
121
     */
122
    public void setStatusDateMessage(String value) {
123
        this.statusDateMessage = value;
124
    }
125
 
126
    /**
127
     * Gets the value of the hasTickets property.
128
     * 
129
     * @return
130
     *     possible object is
131
     *     {@link String }
132
     *     
133
     */
134
    public String getHasTickets() {
135
        return hasTickets;
136
    }
137
 
138
    /**
139
     * Sets the value of the hasTickets property.
140
     * 
141
     * @param value
142
     *     allowed object is
143
     *     {@link String }
144
     *     
145
     */
146
    public void setHasTickets(String value) {
147
        this.hasTickets = value;
148
    }
149
 
150
    /**
151
     * Gets the value of the returnableQuantity property.
152
     * 
153
     */
154
    public int getReturnableQuantity() {
155
        return returnableQuantity;
156
    }
157
 
158
    /**
159
     * Sets the value of the returnableQuantity property.
160
     * 
161
     */
162
    public void setReturnableQuantity(int value) {
163
        this.returnableQuantity = value;
164
    }
165
 
166
    /**
167
     * Gets the value of the tickets property.
168
     * 
169
     * @return
170
     *     possible object is
171
     *     {@link String }
172
     *     
173
     */
174
    public String getTickets() {
175
        return tickets;
176
    }
177
 
178
    /**
179
     * Sets the value of the tickets property.
180
     * 
181
     * @param value
182
     *     allowed object is
183
     *     {@link String }
184
     *     
185
     */
186
    public void setTickets(String value) {
187
        this.tickets = value;
188
    }
189
 
190
    /**
191
     * Gets the value of the imei property.
192
     * 
193
     */
194
    public String getImei() {
195
        return imei;
196
    }
197
 
198
    /**
199
     * Sets the value of the imei property.
200
     * 
201
     */
202
    public void setImei(String value) {
203
        this.imei = value;
204
    }
205
 
206
    /**
207
     * Gets the value of the invoice property.
208
     * 
209
     */
210
    public String getInvoice() {
211
        return invoice;
212
    }
213
 
214
    /**
215
     * Sets the value of the invoice property.
216
     * 
217
     */
218
    public void setInvoice(String value) {
219
        this.invoice = value;
220
    }
221
 
222
    /**
223
     * Gets the value of the invoiceDate property.
224
     * 
225
     * @return
226
     *     possible object is
227
     *     {@link XMLGregorianCalendar }
228
     *     
229
     */
230
    public XMLGregorianCalendar getInvoiceDate() {
231
        return invoiceDate;
232
    }
233
 
234
    /**
235
     * Sets the value of the invoiceDate property.
236
     * 
237
     * @param value
238
     *     allowed object is
239
     *     {@link XMLGregorianCalendar }
240
     *     
241
     */
242
    public void setInvoiceDate(XMLGregorianCalendar value) {
243
        this.invoiceDate = value;
244
    }
245
 
246
    /**
247
     * Gets the value of the invoiceAmount property.
248
     * 
249
     */
250
    public short getInvoiceAmount() {
251
        return invoiceAmount;
252
    }
253
 
254
    /**
255
     * Sets the value of the invoiceAmount property.
256
     * 
257
     */
258
    public void setInvoiceAmount(short value) {
259
        this.invoiceAmount = value;
260
    }
261
 
262
    /**
263
     * Gets the value of the taxAmount property.
264
     * 
265
     */
266
    public float getTaxAmount() {
267
        return taxAmount;
268
    }
269
 
270
    /**
271
     * Sets the value of the taxAmount property.
272
     * 
273
     */
274
    public void setTaxAmount(float value) {
275
        this.taxAmount = value;
276
    }
277
 
278
    /**
279
     * Gets the value of the weight property.
280
     * 
281
     * @return
282
     *     possible object is
283
     *     {@link String }
284
     *     
285
     */
286
    public String getWeight() {
287
        return weight;
288
    }
289
 
290
    /**
291
     * Sets the value of the weight property.
292
     * 
293
     * @param value
294
     *     allowed object is
295
     *     {@link String }
296
     *     
297
     */
298
    public void setWeight(String value) {
299
        this.weight = value;
300
    }
301
 
302
    /**
303
     * Gets the value of the externalId property.
304
     * 
305
     * @return
306
     *     possible object is
307
     *     {@link String }
308
     *     
309
     */
310
    public String getExternalId() {
311
        return externalId;
312
    }
313
 
314
    /**
315
     * Sets the value of the externalId property.
316
     * 
317
     * @param value
318
     *     allowed object is
319
     *     {@link String }
320
     *     
321
     */
322
    public void setExternalId(String value) {
323
        this.externalId = value;
324
    }
325
 
326
    /**
327
     * Gets the value of the orderItemId property.
328
     * 
329
     */
330
    public String getOrderItemId() {
331
        return orderItemId;
332
    }
333
 
334
    /**
335
     * Sets the value of the orderItemId property.
336
     * 
337
     */
338
    public void setOrderItemId(String value) {
339
        this.orderItemId = value;
340
    }
341
 
342
    /**
343
     * Gets the value of the title property.
344
     * 
345
     * @return
346
     *     possible object is
347
     *     {@link String }
348
     *     
349
     */
350
    public String getTitle() {
351
        return title;
352
    }
353
 
354
    /**
355
     * Sets the value of the title property.
356
     * 
357
     * @param value
358
     *     allowed object is
359
     *     {@link String }
360
     *     
361
     */
362
    public void setTitle(String value) {
363
        this.title = value;
364
    }
365
 
366
    /**
367
     * Gets the value of the listingId property.
368
     * 
369
     * @return
370
     *     possible object is
371
     *     {@link String }
372
     *     
373
     */
374
    public String getListingId() {
375
        return listingId;
376
    }
377
 
378
    /**
379
     * Sets the value of the listingId property.
380
     * 
381
     * @param value
382
     *     allowed object is
383
     *     {@link String }
384
     *     
385
     */
386
    public void setListingId(String value) {
387
        this.listingId = value;
388
    }
389
 
390
    /**
391
     * Gets the value of the productImage property.
392
     * 
393
     * @return
394
     *     possible object is
395
     *     {@link String }
396
     *     
397
     */
398
    public String getProductImage() {
399
        return productImage;
400
    }
401
 
402
    /**
403
     * Sets the value of the productImage property.
404
     * 
405
     * @param value
406
     *     allowed object is
407
     *     {@link String }
408
     *     
409
     */
410
    public void setProductImage(String value) {
411
        this.productImage = value;
412
    }
413
 
414
    /**
415
     * Gets the value of the quantity property.
416
     * 
417
     */
418
    public int getQuantity() {
419
        return quantity;
420
    }
421
 
422
    /**
423
     * Sets the value of the quantity property.
424
     * 
425
     */
426
    public void setQuantity(int value) {
427
        this.quantity = value;
428
    }
429
 
430
    /**
431
     * Gets the value of the productId property.
432
     * 
433
     * @return
434
     *     possible object is
435
     *     {@link String }
436
     *     
437
     */
438
    public String getProductId() {
439
        return productId;
440
    }
441
 
442
    /**
443
     * Sets the value of the productId property.
444
     * 
445
     * @param value
446
     *     allowed object is
447
     *     {@link String }
448
     *     
449
     */
450
    public void setProductId(String value) {
451
        this.productId = value;
452
    }
453
 
454
    /**
455
     * Gets the value of the freebie property.
456
     * 
457
     * @return
458
     *     possible object is
459
     *     {@link String }
460
     *     
461
     */
462
    public String getFreebie() {
463
        return freebie;
464
    }
465
 
466
    /**
467
     * Sets the value of the freebie property.
468
     * 
469
     * @param value
470
     *     allowed object is
471
     *     {@link String }
472
     *     
473
     */
474
    public void setFreebie(String value) {
475
        this.freebie = value;
476
    }
477
 
478
    /**
479
     * Gets the value of the sku property.
480
     * 
481
     */
482
    public long getSku() {
483
        return sku;
484
    }
485
 
486
    /**
487
     * Sets the value of the sku property.
488
     * 
489
     */
490
    public void setSku(long value) {
491
        this.sku = value;
492
    }
493
 
494
    /**
495
     * Gets the value of the createdDate property.
496
     * 
497
     * @return
498
     *     possible object is
499
     *     {@link String }
500
     *     
501
     */
502
    public String getCreatedDate() {
503
        return createdDate;
504
    }
505
 
506
    /**
507
     * Sets the value of the createdDate property.
508
     * 
509
     * @param value
510
     *     allowed object is
511
     *     {@link String }
512
     *     
513
     */
514
    public void setCreatedDate(String value) {
515
        this.createdDate = value;
516
    }
517
 
518
    /**
519
     * Gets the value of the createdTime property.
520
     * 
521
     * @return
522
     *     possible object is
523
     *     {@link String }
524
     *     
525
     */
526
    public String getCreatedTime() {
527
        return createdTime;
528
    }
529
 
530
    /**
531
     * Sets the value of the createdTime property.
532
     * 
533
     * @param value
534
     *     allowed object is
535
     *     {@link String }
536
     *     
537
     */
538
    public void setCreatedTime(String value) {
539
        this.createdTime = value;
540
    }
541
 
542
    /**
543
     * Gets the value of the listPrice property.
544
     * 
545
     */
546
    public double getListPrice() {
547
        return listPrice;
548
    }
549
 
550
    /**
551
     * Sets the value of the listPrice property.
552
     * 
553
     */
554
    public void setListPrice(double value) {
555
        this.listPrice = value;
556
    }
557
 
558
    /**
559
     * Gets the value of the shippingFees property.
560
     * 
561
     */
562
    public double getShippingFees() {
563
        return shippingFees;
564
    }
565
 
566
    /**
567
     * Sets the value of the shippingFees property.
568
     * 
569
     */
570
    public void setShippingFees(double value) {
571
        this.shippingFees = value;
572
    }
573
 
574
    /**
575
     * Gets the value of the emi property.
576
     * 
577
     */
578
    public double getEmi() {
579
        return emi;
580
    }
581
 
582
    /**
583
     * Sets the value of the emi property.
584
     * 
585
     */
586
    public void setEmi(double value) {
587
        this.emi = value;
588
    }
589
 
590
    /**
591
     * Gets the value of the octroi property.
592
     * 
593
     */
594
    public double getOctroi() {
595
        return octroi;
596
    }
597
 
598
    /**
599
     * Sets the value of the octroi property.
600
     * 
601
     */
602
    public void setOctroi(double value) {
603
        this.octroi = value;
604
    }
605
 
606
    /**
607
     * Gets the value of the totalPrice property.
608
     * 
609
     */
610
    public double getTotalPrice() {
611
        return totalPrice;
612
    }
613
 
614
    /**
615
     * Sets the value of the totalPrice property.
616
     * 
617
     */
618
    public void setTotalPrice(double value) {
619
        this.totalPrice = value;
620
    }
621
 
622
    /**
623
     * Gets the value of the customerName property.
624
     * 
625
     * @return
626
     *     possible object is
627
     *     {@link String }
628
     *     
629
     */
630
    public String getCustomerName() {
631
        return customerName;
632
    }
633
 
634
    /**
635
     * Sets the value of the customerName property.
636
     * 
637
     * @param value
638
     *     allowed object is
639
     *     {@link String }
640
     *     
641
     */
642
    public void setCustomerName(String value) {
643
        this.customerName = value;
644
    }
645
 
646
    /**
647
     * Gets the value of the shippingAddress property.
648
     * 
649
     * @return
650
     *     possible object is
651
     *     {@link String }
652
     *     
653
     */
654
    public String getShippingAddress() {
655
        return shippingAddress;
656
    }
657
 
658
    /**
659
     * Sets the value of the shippingAddress property.
660
     * 
661
     * @param value
662
     *     allowed object is
663
     *     {@link String }
664
     *     
665
     */
666
    public void setShippingAddress(String value) {
667
        this.shippingAddress = value;
668
    }
669
 
670
    /**
671
     * Gets the value of the shippingAddressName property.
672
     * 
673
     * @return
674
     *     possible object is
675
     *     {@link String }
676
     *     
677
     */
678
    public String getShippingAddressName() {
679
        return shippingAddressName;
680
    }
681
 
682
    /**
683
     * Sets the value of the shippingAddressName property.
684
     * 
685
     * @param value
686
     *     allowed object is
687
     *     {@link String }
688
     *     
689
     */
690
    public void setShippingAddressName(String value) {
691
        this.shippingAddressName = value;
692
    }
693
 
694
    /**
695
     * Gets the value of the shippingAddressLine1 property.
696
     * 
697
     * @return
698
     *     possible object is
699
     *     {@link String }
700
     *     
701
     */
702
    public String getShippingAddressLine1() {
703
        return shippingAddressLine1;
704
    }
705
 
706
    /**
707
     * Sets the value of the shippingAddressLine1 property.
708
     * 
709
     * @param value
710
     *     allowed object is
711
     *     {@link String }
712
     *     
713
     */
714
    public void setShippingAddressLine1(String value) {
715
        this.shippingAddressLine1 = value;
716
    }
717
 
718
    /**
719
     * Gets the value of the shippingAddressLine2 property.
720
     * 
721
     * @return
722
     *     possible object is
723
     *     {@link String }
724
     *     
725
     */
726
    public String getShippingAddressLine2() {
727
        return shippingAddressLine2;
728
    }
729
 
730
    /**
731
     * Sets the value of the shippingAddressLine2 property.
732
     * 
733
     * @param value
734
     *     allowed object is
735
     *     {@link String }
736
     *     
737
     */
738
    public void setShippingAddressLine2(String value) {
739
        this.shippingAddressLine2 = value;
740
    }
741
 
742
    /**
743
     * Gets the value of the shippingAddressCity property.
744
     * 
745
     * @return
746
     *     possible object is
747
     *     {@link String }
748
     *     
749
     */
750
    public String getShippingAddressCity() {
751
        return shippingAddressCity;
752
    }
753
 
754
    /**
755
     * Sets the value of the shippingAddressCity property.
756
     * 
757
     * @param value
758
     *     allowed object is
759
     *     {@link String }
760
     *     
761
     */
762
    public void setShippingAddressCity(String value) {
763
        this.shippingAddressCity = value;
764
    }
765
 
766
    /**
767
     * Gets the value of the shippingAddressState property.
768
     * 
769
     * @return
770
     *     possible object is
771
     *     {@link String }
772
     *     
773
     */
774
    public String getShippingAddressState() {
775
        return shippingAddressState;
776
    }
777
 
778
    /**
779
     * Sets the value of the shippingAddressState property.
780
     * 
781
     * @param value
782
     *     allowed object is
783
     *     {@link String }
784
     *     
785
     */
786
    public void setShippingAddressState(String value) {
787
        this.shippingAddressState = value;
788
    }
789
 
790
    /**
791
     * Gets the value of the shippingAddressPincode property.
792
     * 
793
     */
794
    public String getShippingAddressPincode() {
795
        return shippingAddressPincode;
796
    }
797
 
798
    /**
799
     * Sets the value of the shippingAddressPincode property.
800
     * 
801
     */
802
    public void setShippingAddressPincode(String value) {
803
        this.shippingAddressPincode = value;
804
    }
805
 
806
    /**
807
     * Gets the value of the phone property.
808
     * 
809
     */
810
   /* public long getPhone() {
811
        return phone;
812
    }
813
*/
814
    /**
815
     * Sets the value of the phone property.
816
     * 
817
     */
818
    /*public void setPhone(long value) {
819
        this.phone = value;
820
    }*/
821
 
822
    /**
823
     * Gets the value of the status property.
824
     * 
825
     * @return
826
     *     possible object is
827
     *     {@link String }
828
     *     
829
     */
830
    public String getStatus() {
831
        return status;
832
    }
833
 
834
    /**
835
     * Sets the value of the status property.
836
     * 
837
     * @param value
838
     *     allowed object is
839
     *     {@link String }
840
     *     
841
     */
842
    public void setStatus(String value) {
843
        this.status = value;
844
    }
845
 
846
    /**
847
     * Gets the value of the statusLabel property.
848
     * 
849
     * @return
850
     *     possible object is
851
     *     {@link String }
852
     *     
853
     */
854
    public String getStatusLabel() {
855
        return statusLabel;
856
    }
857
 
858
    /**
859
     * Sets the value of the statusLabel property.
860
     * 
861
     * @param value
862
     *     allowed object is
863
     *     {@link String }
864
     *     
865
     */
866
    public void setStatusLabel(String value) {
867
        this.statusLabel = value;
868
    }
869
 
870
    /**
871
     * Gets the value of the trackingId property.
872
     * 
873
     * @return
874
     *     possible object is
875
     *     {@link String }
876
     *     
877
     */
878
    public String getTrackingId() {
879
        return trackingId;
880
    }
881
 
882
    /**
883
     * Sets the value of the trackingId property.
884
     * 
885
     * @param value
886
     *     allowed object is
887
     *     {@link String }
888
     *     
889
     */
890
    public void setTrackingId(String value) {
891
        this.trackingId = value;
892
    }
893
 
894
    /**
895
     * Gets the value of the actions property.
896
     * 
897
     * @return
898
     *     possible object is
899
     *     {@link String }
900
     *     
901
     */
902
    public List<String> getActions() {
903
        return actions;
904
    }
905
 
906
    /**
907
     * Sets the value of the actions property.
908
     * 
909
     * @param value
910
     *     allowed object is
911
     *     {@link String }
912
     *     
913
     */
914
    public void setActions(List<String> value) {
915
        this.actions = value;
916
    }
917
 
918
    /**
919
     * Gets the value of the flipkartItemLink property.
920
     * 
921
     * @return
922
     *     possible object is
923
     *     {@link String }
924
     *     
925
     */
926
    public String getFlipkartItemLink() {
927
        return flipkartItemLink;
928
    }
929
 
930
    /**
931
     * Sets the value of the flipkartItemLink property.
932
     * 
933
     * @param value
934
     *     allowed object is
935
     *     {@link String }
936
     *     
937
     */
938
    public void setFlipkartItemLink(String value) {
939
        this.flipkartItemLink = value;
940
    }
941
 
942
    /**
943
     * Gets the value of the modifiedDate property.
944
     * 
945
     * @return
946
     *     possible object is
947
     *     {@link String }
948
     *     
949
     */
950
    public String getModifiedDate() {
951
        return modifiedDate;
952
    }
953
 
954
    /**
955
     * Sets the value of the modifiedDate property.
956
     * 
957
     * @param value
958
     *     allowed object is
959
     *     {@link String }
960
     *     
961
     */
962
    public void setModifiedDate(String value) {
963
        this.modifiedDate = value;
964
    }
965
 
966
    /**
967
     * Gets the value of the trackingHash property.
968
     * 
969
     * @return
970
     *     possible object is
971
     *     {@link String }
972
     *     
973
     */
974
    public String getTrackingHash() {
975
        return trackingHash;
976
    }
977
 
978
    /**
979
     * Sets the value of the trackingHash property.
980
     * 
981
     * @param value
982
     *     allowed object is
983
     *     {@link String }
984
     *     
985
     */
986
    public void setTrackingHash(String value) {
987
        this.trackingHash = value;
988
    }
989
 
990
    /**
991
     * Gets the value of the cancelReason property.
992
     * 
993
     * @return
994
     *     possible object is
995
     *     {@link String }
996
     *     
997
     */
998
    public String getCancelReason() {
999
        return cancelReason;
1000
    }
1001
 
1002
    /**
1003
     * Sets the value of the cancelReason property.
1004
     * 
1005
     * @param value
1006
     *     allowed object is
1007
     *     {@link String }
1008
     *     
1009
     */
1010
    public void setCancelReason(String value) {
1011
        this.cancelReason = value;
1012
    }
1013
 
1014
    /**
1015
     * Gets the value of the cancelSubReason property.
1016
     * 
1017
     * @return
1018
     *     possible object is
1019
     *     {@link String }
1020
     *     
1021
     */
1022
    public String getCancelSubReason() {
1023
        return cancelSubReason;
1024
    }
1025
 
1026
    /**
1027
     * Sets the value of the cancelSubReason property.
1028
     * 
1029
     * @param value
1030
     *     allowed object is
1031
     *     {@link String }
1032
     *     
1033
     */
1034
    public void setCancelSubReason(String value) {
1035
        this.cancelSubReason = value;
1036
    }
1037
 
1038
    /**
1039
     * Gets the value of the returnReason property.
1040
     * 
1041
     * @return
1042
     *     possible object is
1043
     *     {@link String }
1044
     *     
1045
     */
1046
    public String getReturnReason() {
1047
        return returnReason;
1048
    }
1049
 
1050
    /**
1051
     * Sets the value of the returnReason property.
1052
     * 
1053
     * @param value
1054
     *     allowed object is
1055
     *     {@link String }
1056
     *     
1057
     */
1058
    public void setReturnReason(String value) {
1059
        this.returnReason = value;
1060
    }
1061
 
1062
    /**
1063
     * Gets the value of the returnComment property.
1064
     * 
1065
     * @return
1066
     *     possible object is
1067
     *     {@link String }
1068
     *     
1069
     */
1070
    public String getReturnComment() {
1071
        return returnComment;
1072
    }
1073
 
1074
    /**
1075
     * Sets the value of the returnComment property.
1076
     * 
1077
     * @param value
1078
     *     allowed object is
1079
     *     {@link String }
1080
     *     
1081
     */
1082
    public void setReturnComment(String value) {
1083
        this.returnComment = value;
1084
    }
1085
 
1086
}