Uses of Class
com.nelioalves.cursomc.domain.Cliente
-
Packages that use Cliente Package Description com.nelioalves.cursomc.domain com.nelioalves.cursomc.dto com.nelioalves.cursomc.repositories com.nelioalves.cursomc.resources com.nelioalves.cursomc.services -
-
Uses of Cliente in com.nelioalves.cursomc.domain
Methods in com.nelioalves.cursomc.domain that return Cliente Modifier and Type Method Description ClienteEndereco. getCliente()ClientePedido. getCliente()Methods in com.nelioalves.cursomc.domain with parameters of type Cliente Modifier and Type Method Description voidEndereco. setCliente(Cliente cliente)voidPedido. setCliente(Cliente cliente)Constructors in com.nelioalves.cursomc.domain with parameters of type Cliente Constructor Description Endereco(Integer id, String logradouro, String numero, String complemento, String bairro, String cep, Cliente cliente, Cidade cidade)Pedido(Integer id, Date instante, Cliente cliente, Endereco endereco) -
Uses of Cliente in com.nelioalves.cursomc.dto
Constructors in com.nelioalves.cursomc.dto with parameters of type Cliente Constructor Description ClienteDTO1(Cliente cliente) -
Uses of Cliente in com.nelioalves.cursomc.repositories
Methods in com.nelioalves.cursomc.repositories that return Cliente Modifier and Type Method Description ClienteClienteRepository. findByEmail(String email)Procura um Cliente por emailMethods in com.nelioalves.cursomc.repositories with parameters of type Cliente Modifier and Type Method Description org.springframework.data.domain.Page<Pedido>PedidoRepository. findByCliente(Cliente cliente, org.springframework.data.domain.Pageable pageRequest)Procura Pedidos por um Clinte Pedidos são retornandos em uma página(Page) -
Uses of Cliente in com.nelioalves.cursomc.resources
Methods in com.nelioalves.cursomc.resources that return types with arguments of type Cliente Modifier and Type Method Description org.springframework.http.ResponseEntity<Cliente>ClienteResource. find(Integer id)Procura um Cliente por id -
Uses of Cliente in com.nelioalves.cursomc.services
Methods in com.nelioalves.cursomc.services that return Cliente Modifier and Type Method Description ClienteClienteService. find(Integer id)Procura um Cliente por idClienteClienteService. insert(Cliente cliente)Insere um ClienteClienteClienteService. toCliente(ClienteDTO1 clienteDTO1)Conversão de ClienteDTO1 para ClieteClienteClienteService. toCliente(ClienteDTO2 clienteDTO2)Conversão de ClienteDTO2 para ClienteClienteClienteService. update(Cliente cliente)Atualiza um ClienteMethods in com.nelioalves.cursomc.services that return types with arguments of type Cliente Modifier and Type Method Description List<Cliente>ClienteService. findAll()Procura todos os Clientesorg.springframework.data.domain.Page<Cliente>ClienteService. findPage(Integer page, Integer linesPerPage, String direction, String orderBy)Procura Clientes e os retornam em um PageMethods in com.nelioalves.cursomc.services with parameters of type Cliente Modifier and Type Method Description ClienteClienteService. insert(Cliente cliente)Insere um Clienteprotected org.springframework.mail.SimpleMailMessageAbstractEmailService. prepareNewPasswordEmail(Cliente cliente, String newPassword)Prepara um email(SimpleMailMessage) contendo a nova senha do ClientevoidAbstractEmailService. sendNewPasswordEmail(Cliente cliente, String newPassword)Faz envio do emailvoidEmailService. sendNewPasswordEmail(Cliente cliente, String newPassword)ClienteClienteService. update(Cliente cliente)Atualiza um Cliente
-