Uses of Class
com.nelioalves.cursomc.domain.Categoria
-
Packages that use Categoria Package Description com.nelioalves.cursomc.domain com.nelioalves.cursomc.dto com.nelioalves.cursomc.repositories com.nelioalves.cursomc.resources com.nelioalves.cursomc.services -
-
Uses of Categoria in com.nelioalves.cursomc.domain
Methods in com.nelioalves.cursomc.domain that return types with arguments of type Categoria Modifier and Type Method Description List<Categoria>Produto. getCategoriaList()Method parameters in com.nelioalves.cursomc.domain with type arguments of type Categoria Modifier and Type Method Description voidProduto. setCategoriaList(List<Categoria> categoriaLst) -
Uses of Categoria in com.nelioalves.cursomc.dto
Constructors in com.nelioalves.cursomc.dto with parameters of type Categoria Constructor Description CategoriaDTO(Categoria categoria) -
Uses of Categoria in com.nelioalves.cursomc.repositories
Method parameters in com.nelioalves.cursomc.repositories with type arguments of type Categoria Modifier and Type Method Description org.springframework.data.domain.Page<Produto>ProdutoRepository. findDistinctByNomeContainingAndCategoriasIn(String nome, List<Categoria> categorias, org.springframework.data.domain.Pageable pageable)Procura por Produtos com suas Categorias -
Uses of Categoria in com.nelioalves.cursomc.resources
Methods in com.nelioalves.cursomc.resources that return types with arguments of type Categoria Modifier and Type Method Description org.springframework.http.ResponseEntity<Categoria>CategoriaResource. find(Integer id)Procura uma Categoria por idorg.springframework.http.ResponseEntity<Categoria>CategoriaResource. update(@Valid CategoriaDTO categoriaDTO, Integer id)Atualiza um Categoria -
Uses of Categoria in com.nelioalves.cursomc.services
Methods in com.nelioalves.cursomc.services that return Categoria Modifier and Type Method Description CategoriaCategoriaService. find(Integer id)Procura uma Categoria por idCategoriaCategoriaService. insert(Categoria categoria)Insere uma CategoriaCategoriaCategoriaService. toCategoria(CategoriaDTO categoriaDTO)Converte um CategoriaDTO em uma CategoriaCategoriaCategoriaService. update(Categoria categoria)Atualiza uma CategoriaMethods in com.nelioalves.cursomc.services that return types with arguments of type Categoria Modifier and Type Method Description List<Categoria>CategoriaService. findAll()Procura todas as Categoriasorg.springframework.data.domain.Page<Categoria>CategoriaService. findPage(Integer page, Integer linesPerPage, String direction, String orderBy)Procura Categorias e as retornam em um PageMethods in com.nelioalves.cursomc.services with parameters of type Categoria Modifier and Type Method Description CategoriaCategoriaService. insert(Categoria categoria)Insere uma CategoriaCategoriaCategoriaService. update(Categoria categoria)Atualiza uma Categoria
-