Rev 530 | Details | Compare with Previous | 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.model.file.UploadedFile; |
||
| 4 | |||
| 5 | import br.com.ec.core.generic.GenericService; |
||
| 6 | import br.com.ec.domain.dto.ImagemDTO; |
||
| 7 | |||
| 8 | public interface ImagemService extends GenericService<ImagemDTO> { |
||
| 9 | |||
| 530 | blopes | 10 | ImagemDTO uploadImagem(UploadedFile arquivoUpload, String nomeArquivo, String caminhoPasta); |
| 11 | |||
| 528 | blopes | 12 | String caminhoPadraoFotos(); |
| 13 | |||
| 14 | String caminhoPastaFotos(); |
||
| 15 | |||
| 16 | String caminhoPadraoImagens(); |
||
| 17 | |||
| 18 | String caminhoPastaImagens(); |
||
| 19 | |||
| 20 | String caminhoPadraoEstampas(); |
||
| 21 | |||
| 22 | String caminhoPastaEstampas(); |
||
| 23 | |||
| 530 | blopes | 24 | /*****************************************/ |
| 25 | |||
| 533 | blopes | 26 | String retornarCaminhoImagem(String pasta, String pastaPadrao, String nomeArquivo, String extensaoArquivo); |
| 530 | blopes | 27 | |
| 28 | /*****************************************/ |
||
| 29 | |||
| 30 | |||
| 528 | blopes | 31 | } |