blob: 3f9fbb6220460a96e0005db054c66ca5674c5a21 [file] [log] [blame]
package org.apache.axis2.databinding.utils;
import org.apache.axis2.databinding.utils.reader.OMAttribKey;
import org.apache.axis2.databinding.utils.reader.OMElementKey;
import org.apache.axiom.om.OMConstants;
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
public interface Constants {
static String NIL="nil";
static String TRUE="true";
static String XSI_NAMESPACE ="http://www.w3.org/2001/XMLSchema-instance";
static Object OM_ATTRIBUTE_KEY = new OMAttribKey();
static Object OM_ELEMENT_KEY = new OMElementKey();
static final String IS_BINARY = OMConstants.IS_BINARY;
static final String DATA_HANDLER = OMConstants.DATA_HANDLER;
static final String OPTIMIZATION_ENABLED = OMConstants.IS_DATA_HANDLERS_AWARE;
}