package org.apollo.jagcached; /** * 2006Redone Development * * @author Ryley Kimmel * Jul 9, 2013 * Constants.java * * @see java.lang.Object */ public final class Constants { /** * The directory of the file system. */ public static final String FILE_SYSTEM_DIR = "./cache/"; /** * Default private constructor to prevent instantiation. */ private Constants() { super(); } }