Uses of Class
com.nelioalves.cursomc.dto.ClienteDTO1
-
Packages that use ClienteDTO1 Package Description com.nelioalves.cursomc.resources com.nelioalves.cursomc.services com.nelioalves.cursomc.services.validation -
-
Uses of ClienteDTO1 in com.nelioalves.cursomc.resources
Methods in com.nelioalves.cursomc.resources that return types with arguments of type ClienteDTO1 Modifier and Type Method Description org.springframework.http.ResponseEntity<List<ClienteDTO1>>ClienteResource. findAll()Procura todos os Clientesorg.springframework.http.ResponseEntity<org.springframework.data.domain.Page<ClienteDTO1>>ClienteResource. findPage(Integer page, Integer linesPerPages, String direction, String orderBy)Procura Clientes e os retornam em um página(Page)Methods in com.nelioalves.cursomc.resources with parameters of type ClienteDTO1 Modifier and Type Method Description org.springframework.http.ResponseEntity<Void>ClienteResource. update(@Valid ClienteDTO1 clienteDTO1, Integer id)Atualiza um Cliente -
Uses of ClienteDTO1 in com.nelioalves.cursomc.services
Methods in com.nelioalves.cursomc.services with parameters of type ClienteDTO1 Modifier and Type Method Description ClienteClienteService. toCliente(ClienteDTO1 clienteDTO1)Conversão de ClienteDTO1 para Cliete -
Uses of ClienteDTO1 in com.nelioalves.cursomc.services.validation
Methods in com.nelioalves.cursomc.services.validation with parameters of type ClienteDTO1 Modifier and Type Method Description booleanClienteUpdateValidator. isValid(ClienteDTO1 clienteDTO1, javax.validation.ConstraintValidatorContext constraintValidatorContext)Método para validar os atributos de um ClienteDTO1
-