Class SDOXSDHelperDelegate
- java.lang.Object
-
- org.eclipse.persistence.sdo.helper.delegates.SDOXSDHelperDelegate
-
- All Implemented Interfaces:
XSDHelper
,SDOXSDHelper
public class SDOXSDHelperDelegate extends Object implements SDOXSDHelper
Purpose: Provides access to additional information when the Type or Property is defined by an XML Schema (XSD)..
Responsibilities:
- Define methods defines Types from an XSD.
- Generate methods an XSD from Types.
- Other Methods return null/false otherwise or if the information is unavailable.
-
-
Constructor Summary
Constructors Constructor Description SDOXSDHelperDelegate(HelperContext aContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addGlobalProperty(QName qname, Property prop, boolean isElement)
INTERNAL:Map
buildAppInfoMap(List appInfoElements)
INTERNAL:List
define(InputStream xsdInputStream, String schemaLocation)
Define XML Schema as Types.List
define(Reader xsdReader, String schemaLocation)
Define XML Schema as Types.List
define(Reader xsdReader, SchemaResolver schemaResolver)
Define XML Schema as Types.List
define(String xsd)
Define the XML Schema as Types.List
define(Source xsdSource, SchemaResolver schemaResolver)
INTERNAL:String
generate(List types)
Generate an XML Schema Declaration (XSD) from Types.String
generate(List types, Map namespaceToSchemaLocation)
Generate an XML Schema Declaration (XSD) from Types.String
generate(List types, SchemaLocationResolver schemaLocationResolver)
INTERNAL:String
getAppinfo(Property property, String source)
Return the content of the appinfo declared for this Property and source.String
getAppinfo(Type type, String source)
Return the appinfo declared for this Type and source.Property
getGlobalProperty(String uri, String propertyName, boolean isElement)
Returns the Property defined by the named global element or attribute in the targetNamespace uri, or null if not found.Property
getGlobalProperty(QName qname, boolean isElement)
INTERNAL:HelperContext
getHelperContext()
INTERNAL: Return the helperContext that this instance is associated with.String
getLocalName(Property property)
Returns the local name as declared in the XSD.String
getLocalName(Type type)
Returns the local name as declared in the XSD.String
getNamespaceURI(Property property)
Returns the namespace URI as declared in the XSD.String
getNamespaceURI(Type type)
Returns the namespace URI as declared in the XSD.String
getStringFromAppInfoElement(Element appInfo)
boolean
isAttribute(Property property)
Returns true if the property is declared as an attribute in the XSD.boolean
isElement(Property property)
Returns true if the property is declared as an element in the XSD.boolean
isMixed(Type type)
Returns true if the Type is declared to contain mixed content.boolean
isXSD(Type type)
Indicates if this helper contains XSD information for the specified type.void
reset()
INTERNAL:void
setGlobalAttributes(Map globalAttributes)
Assign a map of properties representing global attributes keyed on QNamevoid
setGlobalElements(Map globalElements)
Assign a map of properties representing global elements keyed on QNamevoid
setHelperContext(HelperContext helperContext)
INTERNAL: Set the helperContext that this instance is associated with.
-
-
-
Constructor Detail
-
SDOXSDHelperDelegate
public SDOXSDHelperDelegate(HelperContext aContext)
-
-
Method Detail
-
getLocalName
public String getLocalName(Type type)
Returns the local name as declared in the XSD.- Specified by:
getLocalName
in interfaceXSDHelper
- Parameters:
type
- to return local name for.- Returns:
- the local name as declared in the XSD.
-
getLocalName
public String getLocalName(Property property)
Returns the local name as declared in the XSD.- Specified by:
getLocalName
in interfaceXSDHelper
- Parameters:
property
- to return local name for.- Returns:
- the local name as declared in the XSD.
-
getNamespaceURI
public String getNamespaceURI(Type type)
Returns the namespace URI as declared in the XSD.- Specified by:
getNamespaceURI
in interfaceXSDHelper
- Parameters:
type
- to return namespace URI for.- Returns:
- the namespace URI as declared in the XSD.
-
getNamespaceURI
public String getNamespaceURI(Property property)
Returns the namespace URI as declared in the XSD.- Specified by:
getNamespaceURI
in interfaceXSDHelper
- Parameters:
property
- to return namespace URI for.- Returns:
- the namespace URI as declared in the XSD.
-
isAttribute
public boolean isAttribute(Property property)
Returns true if the property is declared as an attribute in the XSD. Returns false if not known or for advanced cases. It is possible for both isAttribute and isElement to return false but they will not both return true.- Specified by:
isAttribute
in interfaceXSDHelper
- Parameters:
property
- to identify if an attribute.- Returns:
- true if the property is declared as an attribute in the XSD.
-
isElement
public boolean isElement(Property property)
Returns true if the property is declared as an element in the XSD. Returns false if not known or for advanced cases. It is possible for both isAttribute and isElement to return false but they will not both return true.
-
isMixed
public boolean isMixed(Type type)
Returns true if the Type is declared to contain mixed content. A DataObject's mixed content values are typically accessed via a Sequence.
-
isXSD
public boolean isXSD(Type type)
Indicates if this helper contains XSD information for the specified type.
-
getGlobalProperty
public Property getGlobalProperty(String uri, String propertyName, boolean isElement)
Returns the Property defined by the named global element or attribute in the targetNamespace uri, or null if not found.- Specified by:
getGlobalProperty
in interfaceXSDHelper
- Parameters:
uri
- The uri of the targetNamespace.propertyName
- The name of the global property.isElement
- is true for global elements, false for global attributes.- Returns:
- the Property defined by the named global element or attribute in the targetNamespace uri, or null if not found.
-
getGlobalProperty
public Property getGlobalProperty(QName qname, boolean isElement)
Description copied from interface:SDOXSDHelper
INTERNAL:- Specified by:
getGlobalProperty
in interfaceSDOXSDHelper
- Returns:
-
getAppinfo
public String getAppinfo(Type type, String source)
Return the appinfo declared for this Type and source. The appinfo start and end tags and content are returned. The xml namespace context is preserved in the appinfo element. If more than one appinfo with the same source is declared on the same Type their contents are concatenated.- Specified by:
getAppinfo
in interfaceXSDHelper
- Parameters:
type
- the type with the appinfo declarationsource
- the source of the appinfo declaration.- Returns:
- the appinfo declared for this Type and source.
-
getAppinfo
public String getAppinfo(Property property, String source)
Return the content of the appinfo declared for this Property and source. If the property is defined by ref= the appinfo of the referenced element or attribute is included. The appinfo start and end tags and content are returned. The xml namespace context is preserved in the appinfo element. If more than one appinfo with the same source is declared on the same Type their contents are concatenated.- Specified by:
getAppinfo
in interfaceXSDHelper
- Parameters:
property
- the Property with the appinfo declarationsource
- the source of the appinfo declaration.- Returns:
- the appinfo declared for this Property and source.
-
define
public List define(String xsd)
Define the XML Schema as Types. The Types are available through TypeHelper and DataGraph getType() methods. Same as define(new StringReader(xsd), null)- Specified by:
define
in interfaceXSDHelper
- Parameters:
xsd
- the XML Schema.- Returns:
- the defined Types.
- Throws:
IllegalArgumentException
- if the Types could not be defined.
-
define
public List define(Reader xsdReader, String schemaLocation)
Define XML Schema as Types. The Types are available through TypeHelper and DataGraph getType() methods.- Specified by:
define
in interfaceXSDHelper
- Parameters:
xsdReader
- reader to an XML Schema.schemaLocation
- the URI of the location of the schema, used for processing relative imports and includes. May be null if not used.- Returns:
- the defined Types.
- Throws:
IllegalArgumentException
- if the Types could not be defined.
-
define
public List define(Reader xsdReader, SchemaResolver schemaResolver)
Define XML Schema as Types. The Types are available through TypeHelper and DataGraph getType() methods.- Parameters:
xsdReader
- reader to an XML Schema.schemaResolver
- the URI of the location of the schema, used for processing relative imports and includes. May be null if not used.- Returns:
- the defined Types.
- Throws:
IllegalArgumentException
- if the Types could not be defined.
-
define
public List define(Source xsdSource, SchemaResolver schemaResolver)
Description copied from interface:SDOXSDHelper
INTERNAL:- Specified by:
define
in interfaceSDOXSDHelper
- Returns:
-
define
public List define(InputStream xsdInputStream, String schemaLocation)
Define XML Schema as Types. The Types are available through TypeHelper and DataGraph getType() methods.- Specified by:
define
in interfaceXSDHelper
- Parameters:
xsdInputStream
- input stream to an XML Schema.schemaLocation
- the URI of the location of the schema, used for processing relative imports and includes. May be null if not used.- Returns:
- the defined Types.
- Throws:
IllegalArgumentException
- if the Types could not be defined.
-
generate
public String generate(List types)
Generate an XML Schema Declaration (XSD) from Types. Same as generate(types, null);- Specified by:
generate
in interfaceXSDHelper
- Parameters:
types
- a List containing the Types- Returns:
- a String containing the generated XSD.
- Throws:
IllegalArgumentException
- if the XSD could not be generated.
-
generate
public String generate(List types, Map namespaceToSchemaLocation)
Generate an XML Schema Declaration (XSD) from Types. Round trip from SDO to XSD to SDO is supported. Round trip from XSD to SDO to XSD is not supported. Use the original schema if one exists instead of generating a new one, as the generated XSD validates a different set of documents than the original XSD. Generating an XSD does not affect the XSDHelper or the Types. The Types must all have the same URI. The result is a String containing the generated XSD. All Types referenced with the same URI will be generated in the XSD and the list will be expanded to include all types generated. Any Types referenced with other URIs will cause imports to be produced as appropriate. Imports will include a schemaLocation if a Map is provided with an entry of the form key=import target namespace, value=schemaLocation- Specified by:
generate
in interfaceXSDHelper
- Parameters:
types
- a List containing the TypesnamespaceToSchemaLocation
- map of target namespace to schema locations or null- Returns:
- a String containing the generated XSD.
- Throws:
IllegalArgumentException
- if the XSD could not be generated.
-
generate
public String generate(List types, SchemaLocationResolver schemaLocationResolver)
Description copied from interface:SDOXSDHelper
INTERNAL:- Specified by:
generate
in interfaceSDOXSDHelper
- Returns:
-
setGlobalAttributes
public void setGlobalAttributes(Map globalAttributes)
Assign a map of properties representing global attributes keyed on QName- Parameters:
globalAttributes
- a Map of global elements keyed on QName
-
setGlobalElements
public void setGlobalElements(Map globalElements)
Assign a map of properties representing global elements keyed on QName- Parameters:
globalElements
- a Map of global elements keyed on QName
-
buildAppInfoMap
public Map buildAppInfoMap(List appInfoElements)
INTERNAL:- Specified by:
buildAppInfoMap
in interfaceSDOXSDHelper
- Returns:
-
reset
public void reset()
Description copied from interface:SDOXSDHelper
INTERNAL:- Specified by:
reset
in interfaceSDOXSDHelper
-
getHelperContext
public HelperContext getHelperContext()
Description copied from interface:SDOXSDHelper
INTERNAL: Return the helperContext that this instance is associated with.- Specified by:
getHelperContext
in interfaceSDOXSDHelper
- Returns:
-
setHelperContext
public void setHelperContext(HelperContext helperContext)
Description copied from interface:SDOXSDHelper
INTERNAL: Set the helperContext that this instance is associated with.- Specified by:
setHelperContext
in interfaceSDOXSDHelper
-
addGlobalProperty
public void addGlobalProperty(QName qname, Property prop, boolean isElement)
INTERNAL:- Specified by:
addGlobalProperty
in interfaceSDOXSDHelper
- Parameters:
qname
-prop
-isElement
- Register the given property with the given qname.
-
-