01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: package test.xmldb;
08:
09: /**
10: * @author per
11: */
12: public interface Constants {
13:
14: final String dbURI = "ozonedb:remote://localhost:3333";
15: final String collectionName = "per";
16: final String resourceName = "testXML";
17: final String driver = "org.ozoneDB.xml.cli.DatabaseImpl";
18: final String xmldbURI = "xmldb:ozonexml://localhost:3333?";
19: final String collectionURI = xmldbURI + collectionName;
20: final String fileName = "D:/Project/Ozone/XML-DB/ozoneXML/tests/per.xml";
21: }
|