org.eclipse.persistence.sdo.helper.SDOXSDHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eclipselink Show documentation
Show all versions of eclipselink Show documentation
EclipseLink build based upon Git transaction f2b9fc5
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.sdo.helper;
import java.util.List;
import java.util.Map;
import javax.xml.namespace.QName;
import javax.xml.transform.Source;
import commonj.sdo.Property;
import commonj.sdo.helper.HelperContext;
import commonj.sdo.helper.XSDHelper;
/**
* Purpose: Provides access to additional information when the Type or Property is defined by an XML Schema (XSD).
*
Responsibilities:
* - Define methods define Types from an XSD.
*
- Generate methods generate an XSD from Types.
*
- Other Methods return null/false for exception conditions.
*
*/
public interface SDOXSDHelper extends XSDHelper {
/**
* INTERNAL:
*
* @param qname
* @param isElement
* @return
*/
public Property getGlobalProperty(QName qname, boolean isElement);
/**
* INTERNAL:
*
* @param xsdSource
* @param schemaResolver
* @return
*/
public List define(Source xsdSource, SchemaResolver schemaResolver);
/**
* INTERNAL:
*
* @param types
* @param schemaLocationResolver
* @return
*/
public String generate(List types, SchemaLocationResolver schemaLocationResolver);
/**
* INTERNAL:
*
* @param appInfoElements
* @return
*/
public Map buildAppInfoMap(List appInfoElements);
/**
* INTERNAL:
* Return the helperContext that this instance is associated with.
*
* @return
*/
public HelperContext getHelperContext();
/**
* INTERNAL:
* Set the helperContext that this instance is associated with.
*
* @param helperContext
*/
public void setHelperContext(HelperContext helperContext);
/**
* INTERNAL:
*
*/
public void reset();
/**
* INTERNAL:
*
* @param qname
* @param prop
* @param isElement
* Register the given property with the given qname.
*/
public void addGlobalProperty(QName qname, Property prop, boolean isElement);
}