01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.search.rdmgr;
07:
08: import com.sun.portal.search.util.*;
09:
10: // Configuration parameters
11: public class RDMgrConfig {
12:
13: // from search config file
14: String serverroot;
15: String schemafn;
16: String taxonomyfn;
17: String dbdir;
18: String rootdbfn;
19: int max_rd_batch;
20: Alias alias = null;
21:
22: }
|