01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the "License"). You may not use this file except
05: * in compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://jwsdp.dev.java.net/CDDLv1.0.html
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * HEADER in each file and include the License file at
14: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
15: * add the following below this CDDL HEADER, with the
16: * fields enclosed by brackets "[]" replaced with your
17: * own identifying information: Portions Copyright [yyyy]
18: * [name of copyright owner]
19: */
20: /*
21: * Fast Infoset ver. 0.1 software ("Software")
22: *
23: * Copyright, 2004-2005 Sun Microsystems, Inc. All Rights Reserved.
24: *
25: * Software is licensed under the Apache License, Version 2.0 (the "License");
26: * you may not use this file except in compliance with the License. You may
27: * obtain a copy of the License at:
28: *
29: * http://www.apache.org/licenses/LICENSE-2.0
30: *
31: * Unless required by applicable law or agreed to in writing, software
32: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
33: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
34: * License for the specific language governing permissions and limitations.
35: *
36: * Sun supports and benefits from the global community of open source
37: * developers, and thanks the community for its important contributions and
38: * open standards-based technology, which Sun has adopted into many of its
39: * products.
40: *
41: * Please note that portions of Software may be provided with notices and
42: * open source licenses from such communities and third parties that govern the
43: * use of those portions, and any licenses granted hereunder do not alter any
44: * rights and obligations you may have under such open source licenses,
45: * however, the disclaimer of warranty and limitation of liability provisions
46: * in this License will apply to all Software in this distribution.
47: *
48: * You acknowledge that the Software is not designed, licensed or intended
49: * for use in the design, construction, operation or maintenance of any nuclear
50: * facility.
51: *
52: * Apache License
53: * Version 2.0, January 2004
54: * http://www.apache.org/licenses/
55: *
56: */
57:
58: package com.sun.xml.stream.buffer.sax;
59:
60: public class Features {
61: public static final String NAMESPACES_FEATURE = "http://xml.org/sax/features/namespaces";
62: public static final String NAMESPACE_PREFIXES_FEATURE = "http://xml.org/sax/features/namespace-prefixes";
63: public static final String EXTERNAL_GENERAL_ENTITIES = "http://xml.org/sax/features/external-general-entities";
64: public static final String EXTERNAL_PARAMETER_ENTITIES = "http://xml.org/sax/features/external-parameter-entities";
65: public static final String STRING_INTERNING_FEATURE = "http://xml.org/sax/features/string-interning";
66: }
|