Uses of Record Class
com.mirna.hospitalmanagementapi.domain.dtos.AddressDTO
Packages that use AddressDTO
Package
Description
-
Uses of AddressDTO in com.mirna.hospitalmanagementapi.domain.dtos
Methods in com.mirna.hospitalmanagementapi.domain.dtos that return AddressDTOModifier and TypeMethodDescription@NotNull(message="address cannot be null") @Valid AddressDTODoctorDTO.address()Returns the value of theaddressrecord component.DoctorUpdatedDataDTO.address()Returns the value of theaddressrecord component.Constructors in com.mirna.hospitalmanagementapi.domain.dtos with parameters of type AddressDTOModifierConstructorDescriptionDoctorDTO(@NotBlank(message="name cannot be blank") String name, @NotBlank(message="email cannot be blank") @Email(message="invalid format for email") String email, @NotBlank(message="crm cannot be blank") @Pattern(regexp="\\d{4,6}",message="invalid format for crm") String crm, @NotBlank(message="telephone cannot be blank") String telephone, @NotNull(message="speciality cannot be null") @Valid Specialty specialty, @NotNull(message="address cannot be null") @Valid AddressDTO address) Creates an instance of aDoctorDTOrecord class.DoctorUpdatedDataDTO(@NotNull(message="id cannot be null") Long id, String name, String telephone, AddressDTO address) Creates an instance of aDoctorUpdatedDataDTOrecord class. -
Uses of AddressDTO in com.mirna.hospitalmanagementapi.domain.entities
Constructors in com.mirna.hospitalmanagementapi.domain.entities with parameters of type AddressDTO