KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > core > xml > Consts


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Core 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
// $Id: Consts.java,v 1.2 2002/08/27 08:32:26 per_nyfelt Exp $
8

9 package org.ozoneDB.core.xml;
10
11 public interface Consts {
12
13     public final static String JavaDoc TAG_OBJ = "obj";
14     public final static String JavaDoc TAG_SUPERCLASS = "superclass";
15     public final static String JavaDoc TAG_MEMBER = "member";
16     public final static String JavaDoc TAG_VALUE = "value";
17     public final static String JavaDoc TAG_VALUEOBJ = "valueObj";
18     public final static String JavaDoc TAG_VALUEARRAY = "valueArray";
19
20     public final static String JavaDoc ATTR_NAME = "name";
21     public final static String JavaDoc ATTR_TYPE = "type";
22     public final static String JavaDoc ATTR_ID = "id";
23     public final static String JavaDoc ATTR_REF = "ref";
24
25     /**
26      * Ozone specific
27      * AttributeS for an Ozone_Proxy member
28      */

29     public final static String JavaDoc ATTR_PROXY_TYPE = "proxyType";
30
31     /* FIXME
32        The following attribute names should be changed, when those namespace
33        stuff has been proven to work (both within Ozone and XML serialization
34        on client side).
35     */

36     public final static String JavaDoc ATTR_XLINK_TYPE_LOCAL = "xlink-type";
37     public final static String JavaDoc ATTR_XLINK_HREF_LOCAL = "xlink-href";
38     public final static String JavaDoc ATTR_XLINK_TYPE_RAW = "xlink-type";
39     public final static String JavaDoc ATTR_XLINK_HREF_RAW = "xlink-href";
40
41     public final static String JavaDoc ATTR_XLINK_TYPE_VALUE = "simple";
42
43     public final static String JavaDoc ATTR_XLINK_NAMESPACE = "http://www.w3.org/1999/xlink";
44
45     public final static String JavaDoc REMOTE_ID = "remoteID";
46 }
47
Popular Tags