Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
orders-monitoring-dashboard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ramakanth Dhane
orders-monitoring-dashboard
Commits
816b2644
Commit
816b2644
authored
Apr 22, 2020
by
rani0808
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed tostring method from POJO's
parent
8324a573
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
28 deletions
+2
-28
LineItem.java
...-service/src/main/java/com/nisum/omd/domain/LineItem.java
+1
-14
PaymentMethod.java
...ice/src/main/java/com/nisum/omd/domain/PaymentMethod.java
+0
-8
Promotions.java
...ervice/src/main/java/com/nisum/omd/domain/Promotions.java
+1
-6
No files found.
omd-checkout-service/src/main/java/com/nisum/omd/domain/LineItem.java
View file @
816b2644
...
@@ -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
+
"]"
;
}
}
}
omd-checkout-service/src/main/java/com/nisum/omd/domain/PaymentMethod.java
View file @
816b2644
...
@@ -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
+
"]"
;
}
}
}
omd-checkout-service/src/main/java/com/nisum/omd/domain/Promotions.java
View file @
816b2644
...
@@ -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
+
"]"
;
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment