Rev 530 | Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 528 | blopes | 1 | package br.com.ec.domain.service; |
| 2 | |||
| 3 | import org.primefaces.event.FileUploadEvent; |
||
| 4 | import org.primefaces.model.file.UploadedFile; |
||
| 5 | |||
| 6 | import br.com.ec.core.generic.GenericService; |
||
| 7 | import br.com.ec.domain.dto.ImagemDTO; |
||
| 8 | |||
| 9 | public interface ImagemService extends GenericService<ImagemDTO> { |
||
| 10 | |||
| 11 | ImagemDTO uploadImagem(FileUploadEvent arquivo); |
||
| 12 | |||
| 13 | String caminhoPadraoFotos(); |
||
| 14 | |||
| 15 | String caminhoPastaFotos(); |
||
| 16 | |||
| 17 | String caminhoPadraoImagens(); |
||
| 18 | |||
| 19 | String caminhoPastaImagens(); |
||
| 20 | |||
| 21 | String caminhoPadraoEstampas(); |
||
| 22 | |||
| 23 | String caminhoPastaEstampas(); |
||
| 24 | |||
| 25 | } |