Uses of Class
org.alltimeflashdreamer.filelister.FileListerConfig

Packages that use FileListerConfig
org.alltimeflashdreamer.filelister The filelister package contains the application core, such as the JDBC connectivity, the configuration reader, the indexer and the viewer servlets. 
 

Uses of FileListerConfig in org.alltimeflashdreamer.filelister
 

Methods in org.alltimeflashdreamer.filelister that return FileListerConfig
protected  FileListerConfig SQLQueryBuilder.getFileListerConfig()
          Extending classes need to have access to the config object, therefore this method is protected.
static FileListerConfig FileListerFactory.initialize(HttpServletRequest request, HttpServletResponse response, ServletContext context)
          Does the jobs to be done before the result site's frame content sites can show the results/configuration appropriately:
- reads the configuration file
- verifies that the connection pool is initialized
- verifies that a FileListerConfig instance is initialized and stored within the session, together with a unique window id (which is stored in the new FileListerConfig instance) - return the new instance for immediate work
static FileListerConfig FileListerFactory.getFileListerConfig(HttpServletRequest request)
          Gets the instance of FileListerConfig that is specified by the URL parameter "window" from the session's attribute list.
 

Methods in org.alltimeflashdreamer.filelister with parameters of type FileListerConfig
 void SQLQueryBuilder.setFileListerConfig(FileListerConfig config)
          Sets the config object to be used by the implementing class.
static String JSPMethods.getModeDescriptor(FileListerConfig fileListerConfig)
          Used by definesearch.jsp: Returns the appropriate URL parameter for the next search mode, i.e.
static String JSPMethods.getSiteTitle(FileListerConfig fileListerConfig)
          Used by viewresults.jsp: Returns the site title, for both a certain result count and no results.
static String JSPMethods.getActionTag(FileListerConfig fileListerConfig)
          Used by viewresults.jsp: Returns the action attribute's value for the form tag.
static String JSPMethods.getNameColumnLink(FileListerEntry fle, FileListerConfig fileListerConfig)
          Used by viewresults.jsp: Builds the link for each entry in the "Name" column (direct access to this file or directory).
static String JSPMethods.getDirectoryColumnLink(FileListerEntry fle, FileListerConfig fileListerConfig)
          Used by viewresults.jsp: Builds the link for each entry in the "Location" column (direct access to this directory).
static String JSPMethods.getColumnLink(FileListerConfig fileListerConfig, String sColumnName)
          Used by viewresults.jsp: Returns the fully configured navigation link for a table header column's name .
static String JSPMethods.getNavigationLink(FileListerConfig fileListerConfig, String sNextSortOrder)
          Used by viewresults.jsp: Helper method for getColumnLink, builds one link target (of three).
(package private)  void FileListerZipBuilder.buildZip(File[] fileOrDirList, FileListerConfig fileListerConfig)
          Initializer method for the access of this class by the ZipBuilderThread.
static void FileListerFactory.handleFileListerException(HttpServletResponse response, FileListerConfig fileListerConfig, FileListerException fle)
          If the given FileListerConfig isn't null, the catched exception is stored therein and the client is redirected to the error site, else the exception itself is throw again.
static void AbstractFileListerServlet.showErrorSite(FileListerException fle, HttpServletResponse response, FileListerConfig fileListerConfig)
          Initializes the appropriate procedure to show the given error to the user.
 

Constructors in org.alltimeflashdreamer.filelister with parameters of type FileListerConfig
ZipBuilderThread(FileListerConfig fileListerConfig, ArrayList arrayFileListerEntries)
          The constructor stores the given pointers and generates a random-based zip file name.
FileListerZipBuilder(FileListerConfig fileListerConfig, OutputStream os)
          Creates a new zip file in the nominated temp directory of the config class.
FileLister(FileListerConfig fileListerConfig, boolean bQuietMode)
          If it's the directory input mode, it's checked whether the researching of the given directory is allowed again or not, depending on the index aging parameter of the property file, compared with the "last indexed" value and the current time.