org.richfaces.cdk.FileManager Maven / Gradle / Ivy
The newest version!
/*
* $Id$
*
* License Agreement.
*
* Rich Faces - Natural Ajax for Java Server Faces (JSF)
*
* Copyright (C) 2007 Exadel, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.cdk;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.Writer;
/**
*
*
*
* @author [email protected]
*
*/
public interface FileManager {
/**
*
* Get existing file or directory.
*
*
* @param path
* @return
* @throws FileNotFoundException
*/
File getFile(String path) throws FileNotFoundException;
/**
*
* Get collection of all source files for this manager.
*
*
* @return collection of files explicitly included for processing.
*/
Iterable getFiles();
/**
*
* Create new file in output folder.
*
*
* @param path relative path to output file.
* @param lastModified time of last modification of model.
* @return file descriptor or null if file exists and its modification time is later then lastModified
* parameter.
* @throws IOException
*/
Writer createOutput(String path, long lastModified) throws IOException;
/**
*
* Return collection of all folders included in this manager instance.
*
*
* @return
*/
Iterable getFolders();
}