Sophie

Sophie

distrib > Mageia > 6 > x86_64 > by-pkgid > ae6590e1df5b5064511f8b690c1300c5 > files > 127

lib64dbjava5.3-5.3.28-10.1.mga6.x86_64.rpm

/*-
 * See the file LICENSE for redistribution information.
 *
 * Copyright (c) 2001, 2013 Oracle and/or its affiliates.  All rights reserved.
 *
 * $Id$
 */

package db.repquote_gsg;

public class SimpleConfig
{
    // Constant values used in the RepQuote application.
    public static final String progname = "SimpleTxn";
    public static final int CACHESIZE = 10 * 1024 * 1024;

    // Member variables containing configuration information.
    public String home; // String specifying the home directory for 
                        // rep files.

    public SimpleConfig()
    {
        home = "";
    }

    public java.io.File getHome()
    {
        return new java.io.File(home);
    }

}