Class ObjectFactory
- java.lang.Object
-
- javax.xml.bind.JAXBContext
-
- com.sun.identity.wsfederation.jaxb.entityconfig.impl.runtime.DefaultJAXBContextImpl
-
- com.sun.identity.wsfederation.jaxb.entityconfig.ObjectFactory
-
public class ObjectFactory extends DefaultJAXBContextImpl
This object contains factory methods for each Java content interface and Java element interface generated in the com.sun.identity.wsfederation.jaxb.entityconfig package.An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this class.
-
-
Field Summary
Fields Modifier and Type Field Description static GrammarInfo
grammarInfo
static Class
version
-
Fields inherited from class javax.xml.bind.JAXBContext
JAXB_CONTEXT_FACTORY
-
-
Constructor Summary
Constructors Constructor Description ObjectFactory()
Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sun.identity.wsfederation.jaxb.entityconfig
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeElement
createAttributeElement()
Create an instance of AttributeElementAttributeType
createAttributeType()
Create an instance of AttributeTypeBaseConfigType
createBaseConfigType()
Create an instance of BaseConfigTypeFederationConfigElement
createFederationConfigElement()
Create an instance of FederationConfigElementFederationConfigType
createFederationConfigType()
Create an instance of FederationConfigTypeIDPSSOConfigElement
createIDPSSOConfigElement()
Create an instance of IDPSSOConfigElementSPSSOConfigElement
createSPSSOConfigElement()
Create an instance of SPSSOConfigElementValueElement
createValueElement()
Create an instance of ValueElementValueElement
createValueElement(String value)
Create an instance of ValueElementObject
getProperty(String name)
Get the specified property.Object
newInstance(Class javaContentInterface)
Create an instance of the specified Java content interface.void
setProperty(String name, Object value)
Set the specified property.-
Methods inherited from class com.sun.identity.wsfederation.jaxb.entityconfig.impl.runtime.DefaultJAXBContextImpl
createMarshaller, createUnmarshaller, createValidator, getGrammar, getGrammarInfo
-
Methods inherited from class javax.xml.bind.JAXBContext
createBinder, createBinder, createJAXBIntrospector, generateSchema, newInstance, newInstance, newInstance, newInstance, newInstance
-
-
-
-
Field Detail
-
grammarInfo
public static final GrammarInfo grammarInfo
-
version
public static final Class version
-
-
Method Detail
-
newInstance
public Object newInstance(Class javaContentInterface) throws JAXBException
Create an instance of the specified Java content interface.- Overrides:
newInstance
in classDefaultJAXBContextImpl
- Parameters:
javaContentInterface
- the Class object of the javacontent interface to instantiate- Returns:
- a new instance
- Throws:
JAXBException
- if an error occurs
-
getProperty
public Object getProperty(String name) throws PropertyException
Get the specified property. This method can only be used to get provider specific properties. Attempting to get an undefined property will result in a PropertyException being thrown.- Overrides:
getProperty
in classDefaultJAXBContextImpl
- Parameters:
name
- the name of the property to retrieve- Returns:
- the value of the requested property
- Throws:
PropertyException
- when there is an error retrieving the given property or value
-
setProperty
public void setProperty(String name, Object value) throws PropertyException
Set the specified property. This method can only be used to set provider specific properties. Attempting to set an undefined property will result in a PropertyException being thrown.- Overrides:
setProperty
in classDefaultJAXBContextImpl
- Parameters:
name
- the name of the property to retrievevalue
- the value of the property to be set- Throws:
PropertyException
- when there is an error processing the given property or value
-
createAttributeType
public AttributeType createAttributeType() throws JAXBException
Create an instance of AttributeType- Throws:
JAXBException
- if an error occurs
-
createAttributeElement
public AttributeElement createAttributeElement() throws JAXBException
Create an instance of AttributeElement- Throws:
JAXBException
- if an error occurs
-
createFederationConfigType
public FederationConfigType createFederationConfigType() throws JAXBException
Create an instance of FederationConfigType- Throws:
JAXBException
- if an error occurs
-
createSPSSOConfigElement
public SPSSOConfigElement createSPSSOConfigElement() throws JAXBException
Create an instance of SPSSOConfigElement- Throws:
JAXBException
- if an error occurs
-
createIDPSSOConfigElement
public IDPSSOConfigElement createIDPSSOConfigElement() throws JAXBException
Create an instance of IDPSSOConfigElement- Throws:
JAXBException
- if an error occurs
-
createFederationConfigElement
public FederationConfigElement createFederationConfigElement() throws JAXBException
Create an instance of FederationConfigElement- Throws:
JAXBException
- if an error occurs
-
createValueElement
public ValueElement createValueElement() throws JAXBException
Create an instance of ValueElement- Throws:
JAXBException
- if an error occurs
-
createValueElement
public ValueElement createValueElement(String value) throws JAXBException
Create an instance of ValueElement- Throws:
JAXBException
- if an error occurs
-
createBaseConfigType
public BaseConfigType createBaseConfigType() throws JAXBException
Create an instance of BaseConfigType- Throws:
JAXBException
- if an error occurs
-
-