Show ObjectFactory.java syntax highlighted
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.4-b01-fcs
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2006.11.24 at 05:56:32 PM MSK
//
package org.riverock.sso.annotation.schema.config;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.riverock.sso.annotation.schema.config package.
* <p>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.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _SsoConfig_QNAME = new QName("", "SsoConfigProcessor");
private final static QName _AuthProvider_QNAME = new QName("", "AuthProvider");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.riverock.sso.annotation.schema.config
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link SsoConfig }
*
*/
public SsoConfig createSsoConfig() {
return new SsoConfig();
}
/**
* Create an instance of {@link Parameter }
*
*/
public Parameter createParameter() {
return new Parameter();
}
/**
* Create an instance of {@link Auth }
*
*/
public Auth createAuth() {
return new Auth();
}
/**
* Create an instance of {@link AuthProviderParameters }
*
*/
public AuthProviderParameters createAuthProviderParameters() {
return new AuthProviderParameters();
}
/**
* Create an instance of {@link MainUserInfo }
*
*/
public MainUserInfo createMainUserInfo() {
return new MainUserInfo();
}
/**
* Create an instance of {@link AuthProviderParametersList }
*
*/
public AuthProviderParametersList createAuthProviderParametersList() {
return new AuthProviderParametersList();
}
/**
* Create an instance of {@link AuthProvider }
*
*/
public AuthProvider createAuthProvider() {
return new AuthProvider();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SsoConfig }{@code >}}
*
*/
@XmlElementDecl(namespace = "", name = "SsoConfigProcessor")
public JAXBElement<SsoConfig> createSsoConfig(SsoConfig value) {
return new JAXBElement<SsoConfig>(_SsoConfig_QNAME, SsoConfig.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link AuthProvider }{@code >}}
*
*/
@XmlElementDecl(namespace = "", name = "AuthProvider")
public JAXBElement<AuthProvider> createAuthProvider(AuthProvider value) {
return new JAXBElement<AuthProvider>(_AuthProvider_QNAME, AuthProvider.class, null, value);
}
}
See more files for this project here