Commit 816b2644 authored by rani0808's avatar rani0808

Removed tostring method from POJO's

parent 8324a573
...@@ -123,19 +123,6 @@ public class LineItem { ...@@ -123,19 +123,6 @@ public class LineItem {
public void setEligibleReturnLocationCode(String eligibleReturnLocationCode) { public void setEligibleReturnLocationCode(String eligibleReturnLocationCode) {
this.eligibleReturnLocationCode = eligibleReturnLocationCode; this.eligibleReturnLocationCode = eligibleReturnLocationCode;
} }
@Override
public String toString() {
return "LineItem [lineItemNumber=" + lineItemNumber + ", skuNumber=" + skuNumber + ", itemColorDesc="
+ itemColorDesc + ", size=" + size + ", orderedQty=" + orderedQty + ", productName=" + productName
+ ", itemType=" + itemType + ", shipChrgApplInd=" + shipChrgApplInd + ", estimatedShipDate="
+ estimatedShipDate + ", linePriceInfo=" + linePriceInfo + ", taxCode=" + taxCode + ", autoAddInd="
+ autoAddInd + ", lineTax=" + lineTax + ", originalLineItemId=" + originalLineItemId
+ ", vendorUpcCode=" + vendorUpcCode + ", brandCode=" + brandCode + ", eligibleReturnLocationCode="
+ eligibleReturnLocationCode + "]";
}
} }
...@@ -45,13 +45,5 @@ public class PaymentMethod { ...@@ -45,13 +45,5 @@ public class PaymentMethod {
public void setPaymentDetail(Map<String, Object> paymentDetail) { public void setPaymentDetail(Map<String, Object> paymentDetail) {
this.paymentDetail = paymentDetail; this.paymentDetail = paymentDetail;
} }
@Override
public String toString() {
return "PaymentMethod [paymetMethod=" + paymetMethod + ", creditCardNo=" + creditCardNo + ", creditCardType="
+ creditCardType + ", displayCreditCardNo=" + displayCreditCardNo + ", paymentStatus=" + paymentStatus
+ ", paymentDetail=" + paymentDetail + "]";
}
} }
...@@ -17,11 +17,6 @@ public class Promotions { ...@@ -17,11 +17,6 @@ public class Promotions {
} }
public void setAwards(Map<String, Object> awards) { public void setAwards(Map<String, Object> awards) {
Awards = awards; Awards = awards;
} }
@Override
public String toString() {
return "Promotions [PromotionDetails=" + PromotionDetails + ", Awards=" + Awards + "]";
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment