vidakovic commented on code in PR #5856:
URL: https://github.com/apache/fineract/pull/5856#discussion_r3261804134


##########
fineract-provider/src/main/java/org/apache/fineract/portfolio/collateralmanagement/data/CollateralProductCreateRequest.java:
##########
@@ -16,28 +16,36 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.apache.fineract.template.data;
+package org.apache.fineract.portfolio.collateralmanagement.data;
 
-import jakarta.validation.constraints.Size;
 import java.io.Serial;
 import java.io.Serializable;
+import java.math.BigDecimal;
 import lombok.AllArgsConstructor;
 import lombok.Builder;
 import lombok.Data;
 import lombok.NoArgsConstructor;
 
-@Builder
 @Data
+@Builder
 @NoArgsConstructor
 @AllArgsConstructor
-public class TemplateCreateRequest implements Serializable {
+public class CollateralProductCreateRequest implements Serializable {
 
     @Serial
     private static final long serialVersionUID = 1L;
 
-    @Size(max = 200, message = 
"{org.apache.fineract.infrastructure.template.name.size}")
     private String name;

Review Comment:
   No Jakarta Validation annotations? 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to