01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Core 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: // $Id: Consts.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.core.xml;
10:
11: public interface Consts {
12:
13: public final static String TAG_OBJ = "obj";
14: public final static String TAG_SUPERCLASS = "superclass";
15: public final static String TAG_MEMBER = "member";
16: public final static String TAG_VALUE = "value";
17: public final static String TAG_VALUEOBJ = "valueObj";
18: public final static String TAG_VALUEARRAY = "valueArray";
19:
20: public final static String ATTR_NAME = "name";
21: public final static String ATTR_TYPE = "type";
22: public final static String ATTR_ID = "id";
23: public final static String ATTR_REF = "ref";
24:
25: /**
26: * Ozone specific
27: * AttributeS for an Ozone_Proxy member
28: */
29: public final static String 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 ATTR_XLINK_TYPE_LOCAL = "xlink-type";
37: public final static String ATTR_XLINK_HREF_LOCAL = "xlink-href";
38: public final static String ATTR_XLINK_TYPE_RAW = "xlink-type";
39: public final static String ATTR_XLINK_HREF_RAW = "xlink-href";
40:
41: public final static String ATTR_XLINK_TYPE_VALUE = "simple";
42:
43: public final static String ATTR_XLINK_NAMESPACE = "http://www.w3.org/1999/xlink";
44:
45: public final static String REMOTE_ID = "remoteID";
46: }
|