Uses of Interface
org.opensaml.core.xml.XMLObjectBuilder
-
Packages that use XMLObjectBuilder Package Description org.opensaml.core.xml Base classes for working with XML as Java objects and configuring the library.org.opensaml.core.xml.config Configuration of XML object providers and related functionality.org.opensaml.core.xml.schema.impl Implementations of the interfaces for XMLObjects that represent XML schema types.org.opensaml.core.xml.util Utility classes for working with XML, XMLObjects, and various data types. -
-
Uses of XMLObjectBuilder in org.opensaml.core.xml
Classes in org.opensaml.core.xml that implement XMLObjectBuilder Modifier and Type Class Description classAbstractXMLObjectBuilder<XMLObjectType extends XMLObject>Base implementation for XMLObject builders.Fields in org.opensaml.core.xml with type parameters of type XMLObjectBuilder Modifier and Type Field Description private Map<QName,XMLObjectBuilder<?>>XMLObjectBuilderFactory. buildersRegistered builders.Methods in org.opensaml.core.xml that return XMLObjectBuilder Modifier and Type Method Description XMLObjectBuilder<?>XMLObjectBuilderFactory. deregisterBuilder(QName builderKey)Deregisters a builder.XMLObjectBuilder<?>XMLObjectBuilderFactory. getBuilder(QName key)Retrieves anXMLObjectBuilderusing the key it was registered with.XMLObjectBuilder<?>XMLObjectBuilderFactory. getBuilder(Element domElement)Retrieves the XMLObject builder for the given element.<XMLObjectType extends XMLObject>
XMLObjectBuilder<XMLObjectType>XMLObjectBuilderFactory. getBuilderOrThrow(QName key)Retrieves anXMLObjectBuilderusing the key it was registered with, or throws a runtime error if unable to locate one.<XMLObjectType extends XMLObject>
XMLObjectBuilder<XMLObjectType>XMLObjectBuilderFactory. getBuilderOrThrow(Element domElement)Retrieves theXMLObjectBuilderfor the given element.Methods in org.opensaml.core.xml that return types with arguments of type XMLObjectBuilder Modifier and Type Method Description Map<QName,XMLObjectBuilder<?>>XMLObjectBuilderFactory. getBuilders()Gets an immutable list of all the builders currently registered.Methods in org.opensaml.core.xml with parameters of type XMLObjectBuilder Modifier and Type Method Description voidXMLObjectBuilderFactory. registerBuilder(QName builderKey, XMLObjectBuilder<?> builder)Registers a new builder for the given name. -
Uses of XMLObjectBuilder in org.opensaml.core.xml.config
Methods in org.opensaml.core.xml.config with parameters of type XMLObjectBuilder Modifier and Type Method Description voidXMLObjectProviderRegistry. registerObjectProvider(QName providerName, XMLObjectBuilder<?> builder, Marshaller marshaller, Unmarshaller unmarshaller)Adds an object provider to this configuration.static voidXMLObjectProviderRegistrySupport. registerObjectProvider(QName providerName, XMLObjectBuilder<?> builder, Marshaller marshaller, Unmarshaller unmarshaller)Adds an object provider to this configuration. -
Uses of XMLObjectBuilder in org.opensaml.core.xml.schema.impl
Classes in org.opensaml.core.xml.schema.impl that implement XMLObjectBuilder Modifier and Type Class Description classXSAnyBuilderBuilder ofXSAnyImpls.classXSBase64BinaryBuilderBuilder ofXSBase64BinaryImplobjects.classXSBooleanBuilderBuilder ofXSBooleanImplobjects.classXSDateTimeBuilderBuilder ofXSDateTimeobjects.classXSIntegerBuilderBuilder ofXSIntegerImplobjects.classXSQNameBuilderBuilder ofXSQNameImplobjects.classXSStringBuilderBuilder ofXSStringImplobjects.classXSURIBuilderBuilder ofXSURIImplobjects. -
Uses of XMLObjectBuilder in org.opensaml.core.xml.util
Methods in org.opensaml.core.xml.util that return XMLObjectBuilder Modifier and Type Method Description static XMLObjectBuilder<?>XMLObjectSupport. getBuilder(QName typeOrName)Obtain an XMLObject builder for the given QName.
-