Author: jeff.yuchang
Date: 2009-11-19 08:26:00 -0500 (Thu, 19 Nov 2009)
New Revision: 1038
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/HibernateDeployerType.java
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/HibernateInitializerType.java
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/InitializerType.java
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/ObjectFactory.java
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/OptionType.java
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/OptionsType.java
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/SqlInitializerType.java
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/package-info.java
Log:
* commit the updated jaxb generate code.
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/HibernateDeployerType.java
===================================================================
---
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/HibernateDeployerType.java
(rev 0)
+++
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/HibernateDeployerType.java 2009-11-19
13:26:00 UTC (rev 1038)
@@ -0,0 +1,125 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-619
+// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2009.11.19 at 09:03:04 PM CST
+//
+
+
+package org.picketlink.idm.integration.jboss5.jaxb2;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for hibernateDeployerType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within
this class.
+ *
+ * <pre>
+ * <complexType name="hibernateDeployerType">
+ * <complexContent>
+ * <restriction
base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="hibernateConfiguration"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <choice>
+ * <element name="hibernateSessionFactoryRegistryName"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="hibernateSessionFactoryJNDIName"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * </choice>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hibernateDeployerType", propOrder = {
+ "hibernateConfiguration",
+ "hibernateSessionFactoryRegistryName",
+ "hibernateSessionFactoryJNDIName"
+})
+public class HibernateDeployerType {
+
+ @XmlElement(required = true)
+ protected String hibernateConfiguration;
+ protected String hibernateSessionFactoryRegistryName;
+ protected String hibernateSessionFactoryJNDIName;
+
+ /**
+ * Gets the value of the hibernateConfiguration property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getHibernateConfiguration() {
+ return hibernateConfiguration;
+ }
+
+ /**
+ * Sets the value of the hibernateConfiguration property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setHibernateConfiguration(String value) {
+ this.hibernateConfiguration = value;
+ }
+
+ /**
+ * Gets the value of the hibernateSessionFactoryRegistryName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getHibernateSessionFactoryRegistryName() {
+ return hibernateSessionFactoryRegistryName;
+ }
+
+ /**
+ * Sets the value of the hibernateSessionFactoryRegistryName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setHibernateSessionFactoryRegistryName(String value) {
+ this.hibernateSessionFactoryRegistryName = value;
+ }
+
+ /**
+ * Gets the value of the hibernateSessionFactoryJNDIName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getHibernateSessionFactoryJNDIName() {
+ return hibernateSessionFactoryJNDIName;
+ }
+
+ /**
+ * Sets the value of the hibernateSessionFactoryJNDIName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setHibernateSessionFactoryJNDIName(String value) {
+ this.hibernateSessionFactoryJNDIName = value;
+ }
+
+}
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/HibernateInitializerType.java
===================================================================
---
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/HibernateInitializerType.java
(rev 0)
+++
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/HibernateInitializerType.java 2009-11-19
13:26:00 UTC (rev 1038)
@@ -0,0 +1,88 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-619
+// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2009.11.19 at 09:03:04 PM CST
+//
+
+
+package org.picketlink.idm.integration.jboss5.jaxb2;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for hibernateInitializerType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within
this class.
+ *
+ * <pre>
+ * <complexType name="hibernateInitializerType">
+ * <complexContent>
+ * <restriction
base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="doChecking"
type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="setupLocation"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hibernateInitializerType", propOrder = {
+ "doChecking",
+ "setupLocation"
+})
+public class HibernateInitializerType {
+
+ protected boolean doChecking;
+ @XmlElement(required = true)
+ protected String setupLocation;
+
+ /**
+ * Gets the value of the doChecking property.
+ *
+ */
+ public boolean isDoChecking() {
+ return doChecking;
+ }
+
+ /**
+ * Sets the value of the doChecking property.
+ *
+ */
+ public void setDoChecking(boolean value) {
+ this.doChecking = value;
+ }
+
+ /**
+ * Gets the value of the setupLocation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSetupLocation() {
+ return setupLocation;
+ }
+
+ /**
+ * Sets the value of the setupLocation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSetupLocation(String value) {
+ this.setupLocation = value;
+ }
+
+}
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/InitializerType.java
===================================================================
---
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/InitializerType.java
(rev 0)
+++
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/InitializerType.java 2009-11-19
13:26:00 UTC (rev 1038)
@@ -0,0 +1,125 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-619
+// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2009.11.19 at 09:03:04 PM CST
+//
+
+
+package org.picketlink.idm.integration.jboss5.jaxb2;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for initializerType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within
this class.
+ *
+ * <pre>
+ * <complexType name="initializerType">
+ * <complexContent>
+ * <restriction
base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="datasource"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <choice>
+ * <element name="sqlInitializer"
type="{urn:picketlink:idm:deployer:v1_0}sqlInitializerType"/>
+ * <element name="hibernateInitializer"
type="{urn:picketlink:idm:deployer:v1_0}hibernateInitializerType"/>
+ * </choice>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "initializerType", propOrder = {
+ "datasource",
+ "sqlInitializer",
+ "hibernateInitializer"
+})
+public class InitializerType {
+
+ @XmlElement(required = true)
+ protected String datasource;
+ protected SqlInitializerType sqlInitializer;
+ protected HibernateInitializerType hibernateInitializer;
+
+ /**
+ * Gets the value of the datasource property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getDatasource() {
+ return datasource;
+ }
+
+ /**
+ * Sets the value of the datasource property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setDatasource(String value) {
+ this.datasource = value;
+ }
+
+ /**
+ * Gets the value of the sqlInitializer property.
+ *
+ * @return
+ * possible object is
+ * {@link SqlInitializerType }
+ *
+ */
+ public SqlInitializerType getSqlInitializer() {
+ return sqlInitializer;
+ }
+
+ /**
+ * Sets the value of the sqlInitializer property.
+ *
+ * @param value
+ * allowed object is
+ * {@link SqlInitializerType }
+ *
+ */
+ public void setSqlInitializer(SqlInitializerType value) {
+ this.sqlInitializer = value;
+ }
+
+ /**
+ * Gets the value of the hibernateInitializer property.
+ *
+ * @return
+ * possible object is
+ * {@link HibernateInitializerType }
+ *
+ */
+ public HibernateInitializerType getHibernateInitializer() {
+ return hibernateInitializer;
+ }
+
+ /**
+ * Sets the value of the hibernateInitializer property.
+ *
+ * @param value
+ * allowed object is
+ * {@link HibernateInitializerType }
+ *
+ */
+ public void setHibernateInitializer(HibernateInitializerType value) {
+ this.hibernateInitializer = value;
+ }
+
+}
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/ObjectFactory.java
===================================================================
---
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/ObjectFactory.java
(rev 0)
+++
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/ObjectFactory.java 2009-11-19
13:26:00 UTC (rev 1038)
@@ -0,0 +1,108 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-619
+// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2009.11.19 at 09:03:04 PM CST
+//
+
+
+package org.picketlink.idm.integration.jboss5.jaxb2;
+
+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.picketlink.idm.integration.jboss5.jaxb2 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 _PicketlinkIdmDeployer_QNAME = new
QName("urn:picketlink:idm:deployer:v1_0", "picketlink-idm-deployer");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema
derived classes for package: org.picketlink.idm.integration.jboss5.jaxb2
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link HibernateInitializerType }
+ *
+ */
+ public HibernateInitializerType createHibernateInitializerType() {
+ return new HibernateInitializerType();
+ }
+
+ /**
+ * Create an instance of {@link InitializerType }
+ *
+ */
+ public InitializerType createInitializerType() {
+ return new InitializerType();
+ }
+
+ /**
+ * Create an instance of {@link OptionsType }
+ *
+ */
+ public OptionsType createOptionsType() {
+ return new OptionsType();
+ }
+
+ /**
+ * Create an instance of {@link HibernateDeployerType }
+ *
+ */
+ public HibernateDeployerType createHibernateDeployerType() {
+ return new HibernateDeployerType();
+ }
+
+ /**
+ * Create an instance of {@link OptionType }
+ *
+ */
+ public OptionType createOptionType() {
+ return new OptionType();
+ }
+
+ /**
+ * Create an instance of {@link PicketlinkIDMDeployerType }
+ *
+ */
+ public PicketlinkIDMDeployerType createPicketlinkIDMDeployerType() {
+ return new PicketlinkIDMDeployerType();
+ }
+
+ /**
+ * Create an instance of {@link SqlInitializerType }
+ *
+ */
+ public SqlInitializerType createSqlInitializerType() {
+ return new SqlInitializerType();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link
PicketlinkIDMDeployerType }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "urn:picketlink:idm:deployer:v1_0", name =
"picketlink-idm-deployer")
+ public JAXBElement<PicketlinkIDMDeployerType>
createPicketlinkIdmDeployer(PicketlinkIDMDeployerType value) {
+ return new
JAXBElement<PicketlinkIDMDeployerType>(_PicketlinkIdmDeployer_QNAME,
PicketlinkIDMDeployerType.class, null, value);
+ }
+
+}
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/OptionType.java
===================================================================
---
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/OptionType.java
(rev 0)
+++
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/OptionType.java 2009-11-19
13:26:00 UTC (rev 1038)
@@ -0,0 +1,97 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-619
+// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2009.11.19 at 09:03:04 PM CST
+//
+
+
+package org.picketlink.idm.integration.jboss5.jaxb2;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for optionType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within
this class.
+ *
+ * <pre>
+ * <complexType name="optionType">
+ * <complexContent>
+ * <restriction
base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="name"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="value"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "optionType", propOrder = {
+ "name",
+ "value"
+})
+public class OptionType {
+
+ @XmlElement(required = true)
+ protected String name;
+ @XmlElement(required = true)
+ protected String value;
+
+ /**
+ * Gets the value of the name property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getName() {
+ return name;
+ }
+
+ /**
+ * Sets the value of the name property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setName(String value) {
+ this.name = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+}
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/OptionsType.java
===================================================================
---
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/OptionsType.java
(rev 0)
+++
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/OptionsType.java 2009-11-19
13:26:00 UTC (rev 1038)
@@ -0,0 +1,76 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-619
+// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2009.11.19 at 09:03:04 PM CST
+//
+
+
+package org.picketlink.idm.integration.jboss5.jaxb2;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for optionsType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within
this class.
+ *
+ * <pre>
+ * <complexType name="optionsType">
+ * <complexContent>
+ * <restriction
base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="option"
type="{urn:picketlink:idm:deployer:v1_0}optionType"
maxOccurs="unbounded"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "optionsType", propOrder = {
+ "option"
+})
+public class OptionsType {
+
+ @XmlElement(required = true)
+ protected List<OptionType> option;
+
+ /**
+ * Gets the value of the option property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the option
property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getOption().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link OptionType }
+ *
+ *
+ */
+ public List<OptionType> getOption() {
+ if (option == null) {
+ option = new ArrayList<OptionType>();
+ }
+ return this.option;
+ }
+
+}
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/SqlInitializerType.java
===================================================================
---
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/SqlInitializerType.java
(rev 0)
+++
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/SqlInitializerType.java 2009-11-19
13:26:00 UTC (rev 1038)
@@ -0,0 +1,97 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-619
+// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2009.11.19 at 09:03:04 PM CST
+//
+
+
+package org.picketlink.idm.integration.jboss5.jaxb2;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for sqlInitializerType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within
this class.
+ *
+ * <pre>
+ * <complexType name="sqlInitializerType">
+ * <complexContent>
+ * <restriction
base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="sqlFile"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="exitSQL"
type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sqlInitializerType", propOrder = {
+ "sqlFile",
+ "exitSQL"
+})
+public class SqlInitializerType {
+
+ @XmlElement(required = true)
+ protected String sqlFile;
+ @XmlElement(required = true)
+ protected String exitSQL;
+
+ /**
+ * Gets the value of the sqlFile property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSqlFile() {
+ return sqlFile;
+ }
+
+ /**
+ * Sets the value of the sqlFile property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSqlFile(String value) {
+ this.sqlFile = value;
+ }
+
+ /**
+ * Gets the value of the exitSQL property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getExitSQL() {
+ return exitSQL;
+ }
+
+ /**
+ * Sets the value of the exitSQL property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setExitSQL(String value) {
+ this.exitSQL = value;
+ }
+
+}
Added:
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/package-info.java
===================================================================
---
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/package-info.java
(rev 0)
+++
migration/idm/trunk/integration/deployer/src/main/java/org/picketlink/idm/integration/jboss5/jaxb2/package-info.java 2009-11-19
13:26:00 UTC (rev 1038)
@@ -0,0 +1,9 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-619
+// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2009.11.19 at 09:03:04 PM CST
+//
+
+(a)javax.xml.bind.annotation.XmlSchema(namespace =
"urn:picketlink:idm:deployer:v1_0", elementFormDefault =
javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
+package org.picketlink.idm.integration.jboss5.jaxb2;