|
1 | 1 | /* |
2 | | - * Copyright 2017 Google Inc. |
| 2 | + * Copyright 2024 Google Inc. |
3 | 3 | * |
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
5 | 5 | * you may not use this file except in compliance with the License. |
|
22 | 22 | import java.util.List; |
23 | 23 | import java.util.Objects; |
24 | 24 |
|
| 25 | +import org.hibernate.validator.constraints.NotEmpty; |
| 26 | +import org.springframework.beans.factory.annotation.Autowired; |
| 27 | +import org.springframework.stereotype.Controller; |
| 28 | +import org.springframework.web.bind.annotation.RequestMapping; |
| 29 | +import org.springframework.web.bind.annotation.RequestMethod; |
| 30 | +import org.springframework.web.bind.annotation.ResponseBody; |
| 31 | +import org.springframework.web.servlet.ModelAndView; |
| 32 | + |
25 | 33 | import com.google.appengine.api.datastore.DatastoreService; |
| 34 | + |
26 | 35 | import jakarta.servlet.http.HttpServletRequest; |
27 | 36 | import lombok.AccessLevel; |
28 | 37 | import lombok.AllArgsConstructor; |
29 | 38 | import lombok.Data; |
30 | 39 | import lombok.NoArgsConstructor; |
31 | 40 | import lombok.NonNull; |
32 | 41 | import lombok.extern.slf4j.Slf4j; |
33 | | -import org.hibernate.validator.constraints.NotEmpty; |
34 | | -import org.springframework.beans.factory.annotation.Autowired; |
35 | | -import org.springframework.stereotype.Controller; |
36 | | -import org.springframework.web.bind.annotation.RequestMapping; |
37 | | -import org.springframework.web.bind.annotation.RequestMethod; |
38 | | -import org.springframework.web.bind.annotation.ResponseBody; |
39 | | -import org.springframework.web.servlet.ModelAndView; |
40 | 42 |
|
41 | 43 | @Controller |
42 | 44 | @Slf4j |
|
0 commit comments