mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
18.00.2015 94e9037522922b67e8af412b4cfe476f5e991118
opendj-server-legacy/src/main/java/org/opends/server/loggers/FileNamingPolicy.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2006-2009 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 *      Portions Copyright 2014-2015 ForgeRock AS
 */
package org.opends.server.loggers;
@@ -40,14 +40,14 @@
   *
   * @return the initial file.
   */
  public File getInitialName();
  File getInitialName();
  /**
   * Gets the next name to use.
   *
   * @return the next file.
   */
  public File getNextName();
  File getNextName();
  /**
   * Gets the filename filter that can be used to filter files named by this
@@ -55,17 +55,17 @@
   *
   * @return The FilenameFilter that can filter files named by this policy.
   */
  public FilenameFilter getFilenameFilter();
  FilenameFilter getFilenameFilter();
  /**
   * Gets all the existing files named by this policy in the parent directoy
   * Gets all the existing files named by this policy in the parent directory
   * of the initial file. The initial file is excluded from this list if it
   * exists.
   *
   * @return The files named by this policy or <code>null</code> if an
   *         error occured.
   *         error occurred.
   */
  public File[] listFiles();
  File[] listFiles();
}