import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }
top of page

Our press team loves working with journalists around the world to share compelling, unique stories. If you’re a member of the media and would like to talk, please get in touch with the appropriate team or send an email to info@oaklanddontplay.com.

Only media inquiries will receive a response. If you’re a shopper and have a question about the site or some amazing Oakland Clothing, please visit: oaklanddonplay@gmail.com.

Owner shauncy Jackson being interviewed by Betty Yu from Kron 4

in the news

past events

Upcoming Events

December 2025
Mon
Tue
Wed
Thu
Fri
Sat
Sun
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
bottom of page