KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > xmldb > Constants


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
package test.xmldb;
8 /**
9  * @author per
10  */

11 public interface Constants {
12
13     final String JavaDoc dbURI = "ozonedb:remote://localhost:3333";
14     final String JavaDoc collectionName = "per";
15     final String JavaDoc resourceName = "testXML";
16     final String JavaDoc driver = "org.ozoneDB.xml.cli.DatabaseImpl";
17     final String JavaDoc xmldbURI = "xmldb:ozonexml://localhost:3333?";
18     final String JavaDoc collectionURI = xmldbURI + collectionName;
19     final String JavaDoc fileName = "D:/Project/Ozone/XML-DB/ozoneXML/tests/per.xml";
20 }
21
Popular Tags