Skip to content

Commit f07299c

Browse files
committed
LPD-47427 - Fix NAME and DESCRIPTION so it looks the best in the UI
1 parent 2940adf commit f07299c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

workspaces/liferay-sample-workspace/client-extensions/liferay-sample-commerce-shipping-engine/src/main/java/com/liferay/sample/DescriptionRestController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public ResponseEntity<String> post(
3737
return new ResponseEntity<>(
3838
new JSONObject(
3939
).put(
40-
"description", "Shipping Engine Description"
40+
"description", "Ship via Sample Shipping Engine."
4141
).toString(),
4242
HttpStatus.OK);
4343
}

workspaces/liferay-sample-workspace/client-extensions/liferay-sample-commerce-shipping-engine/src/main/java/com/liferay/sample/NameRestController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public ResponseEntity<String> post(
3737
return new ResponseEntity<>(
3838
new JSONObject(
3939
).put(
40-
"name", "Shipping Engine Name"
40+
"name", "Sample Shipping Engine"
4141
).toString(),
4242
HttpStatus.OK);
4343
}

workspaces/liferay-sample-workspace/client-extensions/liferay-sample-commerce-shipping-engine/src/main/java/com/liferay/sample/OptionLabelRestController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public ResponseEntity<String> post(
4444
return new ResponseEntity<>(
4545
new JSONObject(
4646
).put(
47-
"name", "Shipping Option Name"
47+
"name", "Sample Shipping Option"
4848
).toString(),
4949
HttpStatus.OK);
5050
}

workspaces/liferay-sample-workspace/client-extensions/liferay-sample-commerce-tax-engine/src/main/java/com/liferay/sample/DescriptionRestController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public ResponseEntity<String> post(
3737
return new ResponseEntity<>(
3838
new JSONObject(
3939
).put(
40-
"description", "Tax Engine Description"
40+
"description", "Calculate tax via Sample Tax Engine."
4141
).toString(),
4242
HttpStatus.OK);
4343
}

workspaces/liferay-sample-workspace/client-extensions/liferay-sample-commerce-tax-engine/src/main/java/com/liferay/sample/NameRestController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public ResponseEntity<String> post(
3737
return new ResponseEntity<>(
3838
new JSONObject(
3939
).put(
40-
"name", "Tax Engine Name"
40+
"name", "Sample Tax Engine"
4141
).toString(),
4242
HttpStatus.OK);
4343
}

workspaces/liferay-stripe-workspace/client-extensions/liferay-stripe-commerce-tax-engine/src/main/java/com/liferay/stripe/DescriptionRestController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public ResponseEntity<String> post(
3737
return new ResponseEntity<>(
3838
new JSONObject(
3939
).put(
40-
"description", "Liferay Stripe Commerce Tax Engine"
40+
"description", "Calculate tax using Stripe Tax."
4141
).toString(),
4242
HttpStatus.OK);
4343
}

workspaces/liferay-stripe-workspace/client-extensions/liferay-stripe-commerce-tax-engine/src/main/java/com/liferay/stripe/NameRestController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public ResponseEntity<String> post(
3737
return new ResponseEntity<>(
3838
new JSONObject(
3939
).put(
40-
"name", "Liferay Stripe Commerce Tax Engine"
40+
"name", "Stripe Tax"
4141
).toString(),
4242
HttpStatus.OK);
4343
}

0 commit comments

Comments
 (0)