• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

helpdeveloper / java-modular-architecture / #31

pending completion
#31

push

web-flow
Merge 00fc632b0 into 20f7e5553

229 of 229 relevant lines covered (100.0%)

1.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/adapter/input/jaxrs-controller-v1/src/main/java/br/com/helpdev/controller/dto/RecipientDto.java
1
package br.com.helpdev.controller.dto;
2

3
import br.com.helpdev.domain.Recipient;
4
import javax.validation.constraints.NotBlank;
5
import lombok.Builder;
6
import lombok.Data;
7
import lombok.EqualsAndHashCode;
8
import lombok.ToString;
9

10
@Data
11
@EqualsAndHashCode
12
@ToString
13
@Builder
14
public class RecipientDto {
15

16
  @NotBlank(message = "Recipient name can't be null!")
17
  private String name;
18
  @NotBlank(message = "Recipient email can't be null!")
19
  private String email;
20
  @NotBlank(message = "Recipient phone number can't be null!")
21
  private String phoneNumber;
22
  @NotBlank(message = "Recipient phone id can't be null!")
23
  private String phoneId;
24

25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc