Package media

Class MediaRepository

    • Constructor Detail

      • MediaRepository

        public MediaRepository​(Path uploadRoot)
        Costruttore con parametro per settare uploadRoot
        Parameters:
        uploadRoot - oggetto Path per settare uploadRoot
    • Method Detail

      • insert

        public String insert​(InputStream stream)
                      throws IOException
        Salva un file nel filesystem e ne restituisce un nome univoco generato in maniera casuale
        Parameters:
        stream - stream di dati
        Returns:
        nuova istanza di MediaRepository
        Throws:
        IOException
      • remove

        public void remove​(String filename)
                    throws IOException
        Rimuove un file dal filesystem dato un nome se esiste
        Parameters:
        filename - nome del file
        Throws:
        IOException
      • get

        public InputStream get​(String filename)
        Restituisce un file dal filesystem dato un nome se esiste altrimenti restituisce null
        Parameters:
        filename - nome del file
        Returns:
        stream di dati del file o null