diff --git a/README.md b/README.md index 48bf7fd..e5610dd 100755 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ of the project, [developers information](https://github.com/CTMM-TraIT/trait_odm_to_i2b2/blob/master/src/documentation/DevelopersInformation.md) are part of the project. -The ODM-to-i2b2 project is a fork of the REDCap-to-i2b2 project: +The ODM-to-i2b2 project is a fork with added functionality of the REDCap-to-i2b2 project: https://community.i2b2.org/wiki/display/ODM2i2b2/Home This tools allows you to convert an ODM file to tabular data files that are ready to import in an i2b2-like system like @@ -26,6 +26,6 @@ variety of tested ODM exports from OpenClinica. It also deals appropriately with like events and item groups. Main developers: -- Ward Blondé -- Freek de Bruijn +- Ward Blondé (Harvard Medical School, Boston) +- Freek de Bruijn (NKI, Amsterdam) diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/CLDataType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/CLDataType.java deleted file mode 100755 index 80d1c83..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/CLDataType.java +++ /dev/null @@ -1,64 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CLDataType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="CLDataType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="integer"/>
- *     <enumeration value="float"/>
- *     <enumeration value="text"/>
- *     <enumeration value="string"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "CLDataType") -@XmlEnum -public enum CLDataType { - - @XmlEnumValue("integer") - INTEGER("integer"), - @XmlEnumValue("float") - FLOAT("float"), - @XmlEnumValue("text") - TEXT("text"), - @XmlEnumValue("string") - STRING("string"); - private final String value; - - CLDataType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static CLDataType fromValue(String v) { - for (CLDataType c: CLDataType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/CommentType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/CommentType.java deleted file mode 100755 index ee621c8..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/CommentType.java +++ /dev/null @@ -1,58 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CommentType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="CommentType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Sponsor"/>
- *     <enumeration value="Site"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "CommentType") -@XmlEnum -public enum CommentType { - - @XmlEnumValue("Sponsor") - SPONSOR("Sponsor"), - @XmlEnumValue("Site") - SITE("Site"); - private final String value; - - CommentType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static CommentType fromValue(String v) { - for (CommentType c: CommentType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/Comparator.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/Comparator.java deleted file mode 100755 index 5b4114e..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/Comparator.java +++ /dev/null @@ -1,57 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Comparator. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="Comparator">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="LT"/>
- *     <enumeration value="LE"/>
- *     <enumeration value="GT"/>
- *     <enumeration value="GE"/>
- *     <enumeration value="EQ"/>
- *     <enumeration value="NE"/>
- *     <enumeration value="IN"/>
- *     <enumeration value="NOTIN"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Comparator") -@XmlEnum -public enum Comparator { - - LT, - LE, - GT, - GE, - EQ, - NE, - IN, - NOTIN; - - public String value() { - return name(); - } - - public static Comparator fromValue(String v) { - return valueOf(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/DataType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/DataType.java deleted file mode 100755 index 283299b..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/DataType.java +++ /dev/null @@ -1,111 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DataType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="DataType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="integer"/>
- *     <enumeration value="float"/>
- *     <enumeration value="date"/>
- *     <enumeration value="datetime"/>
- *     <enumeration value="time"/>
- *     <enumeration value="text"/>
- *     <enumeration value="string"/>
- *     <enumeration value="double"/>
- *     <enumeration value="URI"/>
- *     <enumeration value="boolean"/>
- *     <enumeration value="hexBinary"/>
- *     <enumeration value="base64Binary"/>
- *     <enumeration value="hexFloat"/>
- *     <enumeration value="base64Float"/>
- *     <enumeration value="partialDate"/>
- *     <enumeration value="partialTime"/>
- *     <enumeration value="partialDatetime"/>
- *     <enumeration value="durationDatetime"/>
- *     <enumeration value="intervalDatetime"/>
- *     <enumeration value="incompleteDatetime"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DataType") -@XmlEnum -public enum DataType { - - @XmlEnumValue("integer") - INTEGER("integer"), - @XmlEnumValue("float") - FLOAT("float"), - @XmlEnumValue("date") - DATE("date"), - @XmlEnumValue("datetime") - DATETIME("datetime"), - @XmlEnumValue("time") - TIME("time"), - @XmlEnumValue("text") - TEXT("text"), - @XmlEnumValue("string") - STRING("string"), - @XmlEnumValue("double") - DOUBLE("double"), - URI("URI"), - @XmlEnumValue("boolean") - BOOLEAN("boolean"), - @XmlEnumValue("hexBinary") - HEX_BINARY("hexBinary"), - @XmlEnumValue("base64Binary") - BASE_64_BINARY("base64Binary"), - @XmlEnumValue("hexFloat") - HEX_FLOAT("hexFloat"), - @XmlEnumValue("base64Float") - BASE_64_FLOAT("base64Float"), - @XmlEnumValue("partialDate") - PARTIAL_DATE("partialDate"), - @XmlEnumValue("partialTime") - PARTIAL_TIME("partialTime"), - @XmlEnumValue("partialDatetime") - PARTIAL_DATETIME("partialDatetime"), - @XmlEnumValue("durationDatetime") - DURATION_DATETIME("durationDatetime"), - @XmlEnumValue("intervalDatetime") - INTERVAL_DATETIME("intervalDatetime"), - @XmlEnumValue("incompleteDatetime") - INCOMPLETE_DATETIME("incompleteDatetime"); - private final String value; - - DataType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static DataType fromValue(String v) { - for (DataType c: DataType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/EditPointType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/EditPointType.java deleted file mode 100755 index 2dce1e0..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/EditPointType.java +++ /dev/null @@ -1,61 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EditPointType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="EditPointType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Monitoring"/>
- *     <enumeration value="DataManagement"/>
- *     <enumeration value="DBAudit"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "EditPointType") -@XmlEnum -public enum EditPointType { - - @XmlEnumValue("Monitoring") - MONITORING("Monitoring"), - @XmlEnumValue("DataManagement") - DATA_MANAGEMENT("DataManagement"), - @XmlEnumValue("DBAudit") - DB_AUDIT("DBAudit"); - private final String value; - - EditPointType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static EditPointType fromValue(String v) { - for (EditPointType c: EditPointType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/EventType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/EventType.java deleted file mode 100755 index f407880..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/EventType.java +++ /dev/null @@ -1,61 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EventType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="EventType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Scheduled"/>
- *     <enumeration value="Unscheduled"/>
- *     <enumeration value="Common"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "EventType") -@XmlEnum -public enum EventType { - - @XmlEnumValue("Scheduled") - SCHEDULED("Scheduled"), - @XmlEnumValue("Unscheduled") - UNSCHEDULED("Unscheduled"), - @XmlEnumValue("Common") - COMMON("Common"); - private final String value; - - EventType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static EventType fromValue(String v) { - for (EventType c: EventType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/FileType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/FileType.java deleted file mode 100755 index ae06754..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/FileType.java +++ /dev/null @@ -1,58 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for FileType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="FileType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Snapshot"/>
- *     <enumeration value="Transactional"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "FileType") -@XmlEnum -public enum FileType { - - @XmlEnumValue("Snapshot") - SNAPSHOT("Snapshot"), - @XmlEnumValue("Transactional") - TRANSACTIONAL("Transactional"); - private final String value; - - FileType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static FileType fromValue(String v) { - for (FileType c: FileType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/Granularity.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/Granularity.java deleted file mode 100755 index fcbcdcd..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/Granularity.java +++ /dev/null @@ -1,73 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Granularity. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="Granularity">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="All"/>
- *     <enumeration value="Metadata"/>
- *     <enumeration value="AdminData"/>
- *     <enumeration value="ReferenceData"/>
- *     <enumeration value="AllClinicalData"/>
- *     <enumeration value="SingleSite"/>
- *     <enumeration value="SingleSubject"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Granularity") -@XmlEnum -public enum Granularity { - - @XmlEnumValue("All") - ALL("All"), - @XmlEnumValue("Metadata") - METADATA("Metadata"), - @XmlEnumValue("AdminData") - ADMIN_DATA("AdminData"), - @XmlEnumValue("ReferenceData") - REFERENCE_DATA("ReferenceData"), - @XmlEnumValue("AllClinicalData") - ALL_CLINICAL_DATA("AllClinicalData"), - @XmlEnumValue("SingleSite") - SINGLE_SITE("SingleSite"), - @XmlEnumValue("SingleSubject") - SINGLE_SUBJECT("SingleSubject"); - private final String value; - - Granularity(String v) { - value = v; - } - - public String value() { - return value; - } - - public static Granularity fromValue(String v) { - for (Granularity c: Granularity.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/LocationType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/LocationType.java deleted file mode 100755 index 999714f..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/LocationType.java +++ /dev/null @@ -1,66 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LocationType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="LocationType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Sponsor"/>
- *     <enumeration value="Site"/>
- *     <enumeration value="CRO"/>
- *     <enumeration value="Lab"/>
- *     <enumeration value="Other"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "LocationType") -@XmlEnum -public enum LocationType { - - @XmlEnumValue("Sponsor") - SPONSOR("Sponsor"), - @XmlEnumValue("Site") - SITE("Site"), - CRO("CRO"), - @XmlEnumValue("Lab") - LAB("Lab"), - @XmlEnumValue("Other") - OTHER("Other"); - private final String value; - - LocationType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static LocationType fromValue(String v) { - for (LocationType c: LocationType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/MethodType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/MethodType.java deleted file mode 100755 index 2b70657..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/MethodType.java +++ /dev/null @@ -1,64 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MethodType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="MethodType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Computation"/>
- *     <enumeration value="Imputation"/>
- *     <enumeration value="Transpose"/>
- *     <enumeration value="Other"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "MethodType") -@XmlEnum -public enum MethodType { - - @XmlEnumValue("Computation") - COMPUTATION("Computation"), - @XmlEnumValue("Imputation") - IMPUTATION("Imputation"), - @XmlEnumValue("Transpose") - TRANSPOSE("Transpose"), - @XmlEnumValue("Other") - OTHER("Other"); - private final String value; - - MethodType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static MethodType fromValue(String v) { - for (MethodType c: MethodType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODM.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODM.java deleted file mode 100755 index dec6009..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODM.java +++ /dev/null @@ -1,594 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import javax.xml.datatype.XMLGregorianCalendar; -import org.w3.xmldsig.jaxb.SignatureType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Study" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}AdminData" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ReferenceData" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ClinicalData" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Association" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ODMElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ODMAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ODMAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "study", - "adminData", - "referenceData", - "clinicalData", - "association", - "signature" -}) -@XmlRootElement(name = "ODM") -public class ODM { - - @XmlElement(name = "Study") - protected List study; - @XmlElement(name = "AdminData") - protected List adminData; - @XmlElement(name = "ReferenceData") - protected List referenceData; - @XmlElement(name = "ClinicalData") - protected List clinicalData; - @XmlElement(name = "Association") - protected List association; - @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#") - protected List signature; - @XmlAttribute(name = "Description") - protected String description; - @XmlAttribute(name = "FileType", required = true) - protected FileType fileType; - @XmlAttribute(name = "Granularity") - protected Granularity granularity; - @XmlAttribute(name = "Archival") - protected YesOnly archival; - @XmlAttribute(name = "FileOID", required = true) - protected String fileOID; - @XmlAttribute(name = "CreationDateTime", required = true) - protected XMLGregorianCalendar creationDateTime; - @XmlAttribute(name = "PriorFileOID") - protected String priorFileOID; - @XmlAttribute(name = "AsOfDateTime") - protected XMLGregorianCalendar asOfDateTime; - @XmlAttribute(name = "ODMVersion") - protected String odmVersion; - @XmlAttribute(name = "Originator") - protected String originator; - @XmlAttribute(name = "SourceSystem") - protected String sourceSystem; - @XmlAttribute(name = "SourceSystemVersion") - protected String sourceSystemVersion; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the study property. - * - *

- * 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 set method for the study property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudy().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionStudy } - * - * - */ - public List getStudy() { - if (study == null) { - study = new ArrayList(); - } - return this.study; - } - - /** - * Gets the value of the adminData property. - * - *

- * 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 set method for the adminData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdminData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAdminData } - * - * - */ - public List getAdminData() { - if (adminData == null) { - adminData = new ArrayList(); - } - return this.adminData; - } - - /** - * Gets the value of the referenceData property. - * - *

- * 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 set method for the referenceData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenceData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionReferenceData } - * - * - */ - public List getReferenceData() { - if (referenceData == null) { - referenceData = new ArrayList(); - } - return this.referenceData; - } - - /** - * Gets the value of the clinicalData property. - * - *

- * 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 set method for the clinicalData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getClinicalData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionClinicalData } - * - * - */ - public List getClinicalData() { - if (clinicalData == null) { - clinicalData = new ArrayList(); - } - return this.clinicalData; - } - - /** - * Gets the value of the association property. - * - *

- * 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 set method for the association property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssociation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAssociation } - * - * - */ - public List getAssociation() { - if (association == null) { - association = new ArrayList(); - } - return this.association; - } - - /** - * Gets the value of the signature property. - * - *

- * 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 set method for the signature property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSignature().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SignatureType } - * - * - */ - public List getSignature() { - if (signature == null) { - signature = new ArrayList(); - } - return this.signature; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the fileType property. - * - * @return - * possible object is - * {@link FileType } - * - */ - public FileType getFileType() { - return fileType; - } - - /** - * Sets the value of the fileType property. - * - * @param value - * allowed object is - * {@link FileType } - * - */ - public void setFileType(FileType value) { - this.fileType = value; - } - - /** - * Gets the value of the granularity property. - * - * @return - * possible object is - * {@link Granularity } - * - */ - public Granularity getGranularity() { - return granularity; - } - - /** - * Sets the value of the granularity property. - * - * @param value - * allowed object is - * {@link Granularity } - * - */ - public void setGranularity(Granularity value) { - this.granularity = value; - } - - /** - * Gets the value of the archival property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getArchival() { - return archival; - } - - /** - * Sets the value of the archival property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setArchival(YesOnly value) { - this.archival = value; - } - - /** - * Gets the value of the fileOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFileOID() { - return fileOID; - } - - /** - * Sets the value of the fileOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFileOID(String value) { - this.fileOID = value; - } - - /** - * Gets the value of the creationDateTime property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getCreationDateTime() { - return creationDateTime; - } - - /** - * Sets the value of the creationDateTime property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setCreationDateTime(XMLGregorianCalendar value) { - this.creationDateTime = value; - } - - /** - * Gets the value of the priorFileOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPriorFileOID() { - return priorFileOID; - } - - /** - * Sets the value of the priorFileOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPriorFileOID(String value) { - this.priorFileOID = value; - } - - /** - * Gets the value of the asOfDateTime property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAsOfDateTime() { - return asOfDateTime; - } - - /** - * Sets the value of the asOfDateTime property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAsOfDateTime(XMLGregorianCalendar value) { - this.asOfDateTime = value; - } - - /** - * Gets the value of the odmVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getODMVersion() { - return odmVersion; - } - - /** - * Sets the value of the odmVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setODMVersion(String value) { - this.odmVersion = value; - } - - /** - * Gets the value of the originator property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOriginator() { - return originator; - } - - /** - * Sets the value of the originator property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOriginator(String value) { - this.originator = value; - } - - /** - * Gets the value of the sourceSystem property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSourceSystem() { - return sourceSystem; - } - - /** - * Sets the value of the sourceSystem property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSourceSystem(String value) { - this.sourceSystem = value; - } - - /** - * Gets the value of the sourceSystemVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSourceSystemVersion() { - return sourceSystemVersion; - } - - /** - * Sets the value of the sourceSystemVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSourceSystemVersion(String value) { - this.sourceSystemVersion = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAddress.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAddress.java deleted file mode 100755 index b008e5b..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAddress.java +++ /dev/null @@ -1,218 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-Address complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Address">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}StreetName" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}City" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}StateProv" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Country" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}PostalCode" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}OtherText" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}AddressElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AddressAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Address", propOrder = { - "streetName", - "city", - "stateProv", - "country", - "postalCode", - "otherText" -}) -public class ODMcomplexTypeDefinitionAddress { - - @XmlElement(name = "StreetName") - protected List streetName; - @XmlElement(name = "City") - protected ODMcomplexTypeDefinitionCity city; - @XmlElement(name = "StateProv") - protected ODMcomplexTypeDefinitionStateProv stateProv; - @XmlElement(name = "Country") - protected ODMcomplexTypeDefinitionCountry country; - @XmlElement(name = "PostalCode") - protected ODMcomplexTypeDefinitionPostalCode postalCode; - @XmlElement(name = "OtherText") - protected ODMcomplexTypeDefinitionOtherText otherText; - - /** - * Gets the value of the streetName property. - * - *

- * 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 set method for the streetName property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStreetName().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionStreetName } - * - * - */ - public List getStreetName() { - if (streetName == null) { - streetName = new ArrayList(); - } - return this.streetName; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionCity } - * - */ - public ODMcomplexTypeDefinitionCity getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionCity } - * - */ - public void setCity(ODMcomplexTypeDefinitionCity value) { - this.city = value; - } - - /** - * Gets the value of the stateProv property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionStateProv } - * - */ - public ODMcomplexTypeDefinitionStateProv getStateProv() { - return stateProv; - } - - /** - * Sets the value of the stateProv property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionStateProv } - * - */ - public void setStateProv(ODMcomplexTypeDefinitionStateProv value) { - this.stateProv = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionCountry } - * - */ - public ODMcomplexTypeDefinitionCountry getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionCountry } - * - */ - public void setCountry(ODMcomplexTypeDefinitionCountry value) { - this.country = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionPostalCode } - * - */ - public ODMcomplexTypeDefinitionPostalCode getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionPostalCode } - * - */ - public void setPostalCode(ODMcomplexTypeDefinitionPostalCode value) { - this.postalCode = value; - } - - /** - * Gets the value of the otherText property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionOtherText } - * - */ - public ODMcomplexTypeDefinitionOtherText getOtherText() { - return otherText; - } - - /** - * Sets the value of the otherText property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionOtherText } - * - */ - public void setOtherText(ODMcomplexTypeDefinitionOtherText value) { - this.otherText = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAdminData.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAdminData.java deleted file mode 100755 index 94f4014..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAdminData.java +++ /dev/null @@ -1,172 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-AdminData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-AdminData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}User" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Location" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureDef" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}AdminDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AdminDataAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AdminDataAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-AdminData", propOrder = { - "user", - "location", - "signatureDef" -}) -public class ODMcomplexTypeDefinitionAdminData { - - @XmlElement(name = "User") - protected List user; - @XmlElement(name = "Location") - protected List location; - @XmlElement(name = "SignatureDef") - protected List signatureDef; - @XmlAttribute(name = "StudyOID") - protected String studyOID; - - /** - * Gets the value of the user property. - * - *

- * 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 set method for the user property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUser().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionUser } - * - * - */ - public List getUser() { - if (user == null) { - user = new ArrayList(); - } - return this.user; - } - - /** - * Gets the value of the location property. - * - *

- * 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 set method for the location property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLocation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionLocation } - * - * - */ - public List getLocation() { - if (location == null) { - location = new ArrayList(); - } - return this.location; - } - - /** - * Gets the value of the signatureDef property. - * - *

- * 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 set method for the signatureDef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSignatureDef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionSignatureDef } - * - * - */ - public List getSignatureDef() { - if (signatureDef == null) { - signatureDef = new ArrayList(); - } - return this.signatureDef; - } - - /** - * Gets the value of the studyOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyOID() { - return studyOID; - } - - /** - * Sets the value of the studyOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyOID(String value) { - this.studyOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAlias.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAlias.java deleted file mode 100755 index 5cc3b4d..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAlias.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-Alias complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Alias">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}AliasElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AliasAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AliasAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Alias") -public class ODMcomplexTypeDefinitionAlias { - - @XmlAttribute(name = "Context", required = true) - protected String context; - @XmlAttribute(name = "Name", required = true) - protected String name; - - /** - * Gets the value of the context property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContext() { - return context; - } - - /** - * Sets the value of the context property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContext(String value) { - this.context = 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAnnotation.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAnnotation.java deleted file mode 100755 index edf91b3..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAnnotation.java +++ /dev/null @@ -1,194 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ODMcomplexTypeDefinition-Annotation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Annotation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Comment" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Flag" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}AnnotationElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AnnotationAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AnnotationAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Annotation", propOrder = { - "comment", - "flag" -}) -public class ODMcomplexTypeDefinitionAnnotation { - - @XmlElement(name = "Comment") - protected ODMcomplexTypeDefinitionComment comment; - @XmlElement(name = "Flag") - protected List flag; - @XmlAttribute(name = "SeqNum", required = true) - protected BigInteger seqNum; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "ID") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the comment property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionComment } - * - */ - public ODMcomplexTypeDefinitionComment getComment() { - return comment; - } - - /** - * Sets the value of the comment property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionComment } - * - */ - public void setComment(ODMcomplexTypeDefinitionComment value) { - this.comment = value; - } - - /** - * Gets the value of the flag property. - * - *

- * 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 set method for the flag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFlag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionFlag } - * - * - */ - public List getFlag() { - if (flag == null) { - flag = new ArrayList(); - } - return this.flag; - } - - /** - * Gets the value of the seqNum property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getSeqNum() { - return seqNum; - } - - /** - * Sets the value of the seqNum property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setSeqNum(BigInteger value) { - this.seqNum = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAnnotations.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAnnotations.java deleted file mode 100755 index 395a079..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAnnotations.java +++ /dev/null @@ -1,76 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-Annotations complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Annotations">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Annotation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Annotations", propOrder = { - "annotation" -}) -public class ODMcomplexTypeDefinitionAnnotations { - - @XmlElement(name = "Annotation") - protected List annotation; - - /** - * Gets the value of the annotation property. - * - *

- * 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 set method for the annotation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAnnotation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAnnotation } - * - * - */ - public List getAnnotation() { - if (annotation == null) { - annotation = new ArrayList(); - } - return this.annotation; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionArchiveLayout.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionArchiveLayout.java deleted file mode 100755 index a2e61a6..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionArchiveLayout.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ArchiveLayout complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ArchiveLayout">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ArchiveLayoutElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ArchiveLayoutAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ArchiveLayoutAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ArchiveLayout") -public class ODMcomplexTypeDefinitionArchiveLayout { - - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "PdfFileName", required = true) - protected String pdfFileName; - @XmlAttribute(name = "PresentationOID") - protected String presentationOID; - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = value; - } - - /** - * Gets the value of the pdfFileName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPdfFileName() { - return pdfFileName; - } - - /** - * Sets the value of the pdfFileName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPdfFileName(String value) { - this.pdfFileName = value; - } - - /** - * Gets the value of the presentationOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPresentationOID() { - return presentationOID; - } - - /** - * Sets the value of the presentationOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPresentationOID(String value) { - this.presentationOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionArchiveLayoutRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionArchiveLayoutRef.java deleted file mode 100755 index 411d19d..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionArchiveLayoutRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ArchiveLayoutRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ArchiveLayoutRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ArchiveLayoutRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ArchiveLayoutRefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ArchiveLayoutRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ArchiveLayoutRef") -public class ODMcomplexTypeDefinitionArchiveLayoutRef { - - @XmlAttribute(name = "ArchiveLayoutOID", required = true) - protected String archiveLayoutOID; - - /** - * Gets the value of the archiveLayoutOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArchiveLayoutOID() { - return archiveLayoutOID; - } - - /** - * Sets the value of the archiveLayoutOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArchiveLayoutOID(String value) { - this.archiveLayoutOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAssociation.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAssociation.java deleted file mode 100755 index f49fe98..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAssociation.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-Association complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Association">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}KeySet"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}KeySet"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Annotation"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}AssociationElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AssociationAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AssociationAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Association", propOrder = { - "content" -}) -public class ODMcomplexTypeDefinitionAssociation { - - @XmlElementRefs({ - @XmlElementRef(name = "Annotation", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeySet", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false) - }) - protected List> content; - @XmlAttribute(name = "StudyOID", required = true) - protected String studyOID; - @XmlAttribute(name = "MetaDataVersionOID", required = true) - protected String metaDataVersionOID; - - /** - * Gets the rest of the content model. - * - *

- * You are getting this "catch-all" property because of the following reason: - * The field name "KeySet" is used by two different parts of a schema. See: - * line 1955 of file:/C:/Ward/2014/workspace/ODM-to-i2b2/odm/xsd/OpenClinica-ToODM1-3-0-OC2-0/ODM1-3-0-foundation.xsd - * line 1954 of file:/C:/Ward/2014/workspace/ODM-to-i2b2/odm/xsd/OpenClinica-ToODM1-3-0-OC2-0/ODM1-3-0-foundation.xsd - *

- * To get rid of this property, apply a property customization to one - * of both of the following declarations to change their names: - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionKeySet }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAnnotation }{@code >} - * - * - */ - public List> getContent() { - if (content == null) { - content = new ArrayList>(); - } - return this.content; - } - - /** - * Gets the value of the studyOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyOID() { - return studyOID; - } - - /** - * Sets the value of the studyOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyOID(String value) { - this.studyOID = value; - } - - /** - * Gets the value of the metaDataVersionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMetaDataVersionOID() { - return metaDataVersionOID; - } - - /** - * Sets the value of the metaDataVersionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMetaDataVersionOID(String value) { - this.metaDataVersionOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAuditRecord.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAuditRecord.java deleted file mode 100755 index 1c04bb6..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAuditRecord.java +++ /dev/null @@ -1,270 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ODMcomplexTypeDefinition-AuditRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-AuditRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}UserRef"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}LocationRef"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}DateTimeStamp"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ReasonForChange" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}SourceID" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecordElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecordAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecordAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-AuditRecord", propOrder = { - "userRef", - "locationRef", - "dateTimeStamp", - "reasonForChange", - "sourceID" -}) -public class ODMcomplexTypeDefinitionAuditRecord { - - @XmlElement(name = "UserRef", required = true) - protected ODMcomplexTypeDefinitionUserRef userRef; - @XmlElement(name = "LocationRef", required = true) - protected ODMcomplexTypeDefinitionLocationRef locationRef; - @XmlElement(name = "DateTimeStamp", required = true) - protected ODMcomplexTypeDefinitionDateTimeStamp dateTimeStamp; - @XmlElement(name = "ReasonForChange") - protected ODMcomplexTypeDefinitionReasonForChange reasonForChange; - @XmlElement(name = "SourceID") - protected ODMcomplexTypeDefinitionSourceID sourceID; - @XmlAttribute(name = "EditPoint") - protected EditPointType editPoint; - @XmlAttribute(name = "UsedImputationMethod") - protected YesOrNo usedImputationMethod; - @XmlAttribute(name = "ID") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the userRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionUserRef } - * - */ - public ODMcomplexTypeDefinitionUserRef getUserRef() { - return userRef; - } - - /** - * Sets the value of the userRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionUserRef } - * - */ - public void setUserRef(ODMcomplexTypeDefinitionUserRef value) { - this.userRef = value; - } - - /** - * Gets the value of the locationRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionLocationRef } - * - */ - public ODMcomplexTypeDefinitionLocationRef getLocationRef() { - return locationRef; - } - - /** - * Sets the value of the locationRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionLocationRef } - * - */ - public void setLocationRef(ODMcomplexTypeDefinitionLocationRef value) { - this.locationRef = value; - } - - /** - * Gets the value of the dateTimeStamp property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDateTimeStamp } - * - */ - public ODMcomplexTypeDefinitionDateTimeStamp getDateTimeStamp() { - return dateTimeStamp; - } - - /** - * Sets the value of the dateTimeStamp property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDateTimeStamp } - * - */ - public void setDateTimeStamp(ODMcomplexTypeDefinitionDateTimeStamp value) { - this.dateTimeStamp = value; - } - - /** - * Gets the value of the reasonForChange property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionReasonForChange } - * - */ - public ODMcomplexTypeDefinitionReasonForChange getReasonForChange() { - return reasonForChange; - } - - /** - * Sets the value of the reasonForChange property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionReasonForChange } - * - */ - public void setReasonForChange(ODMcomplexTypeDefinitionReasonForChange value) { - this.reasonForChange = value; - } - - /** - * Gets the value of the sourceID property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSourceID } - * - */ - public ODMcomplexTypeDefinitionSourceID getSourceID() { - return sourceID; - } - - /** - * Sets the value of the sourceID property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSourceID } - * - */ - public void setSourceID(ODMcomplexTypeDefinitionSourceID value) { - this.sourceID = value; - } - - /** - * Gets the value of the editPoint property. - * - * @return - * possible object is - * {@link EditPointType } - * - */ - public EditPointType getEditPoint() { - return editPoint; - } - - /** - * Sets the value of the editPoint property. - * - * @param value - * allowed object is - * {@link EditPointType } - * - */ - public void setEditPoint(EditPointType value) { - this.editPoint = value; - } - - /** - * Gets the value of the usedImputationMethod property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getUsedImputationMethod() { - return usedImputationMethod; - } - - /** - * Sets the value of the usedImputationMethod property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setUsedImputationMethod(YesOrNo value) { - this.usedImputationMethod = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAuditRecords.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAuditRecords.java deleted file mode 100755 index c001660..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionAuditRecords.java +++ /dev/null @@ -1,76 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-AuditRecords complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-AuditRecords">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecord" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-AuditRecords", propOrder = { - "auditRecord" -}) -public class ODMcomplexTypeDefinitionAuditRecords { - - @XmlElement(name = "AuditRecord") - protected List auditRecord; - - /** - * Gets the value of the auditRecord property. - * - *

- * 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 set method for the auditRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuditRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - * - */ - public List getAuditRecord() { - if (auditRecord == null) { - auditRecord = new ArrayList(); - } - return this.auditRecord; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionBasicDefinitions.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionBasicDefinitions.java deleted file mode 100755 index e1beafa..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionBasicDefinitions.java +++ /dev/null @@ -1,78 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-BasicDefinitions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-BasicDefinitions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnit" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}BasicDefinitionsElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}BasicDefinitionsAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-BasicDefinitions", propOrder = { - "measurementUnit" -}) -public class ODMcomplexTypeDefinitionBasicDefinitions { - - @XmlElement(name = "MeasurementUnit") - protected List measurementUnit; - - /** - * Gets the value of the measurementUnit property. - * - *

- * 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 set method for the measurementUnit property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeasurementUnit().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionMeasurementUnit } - * - * - */ - public List getMeasurementUnit() { - if (measurementUnit == null) { - measurementUnit = new ArrayList(); - } - return this.measurementUnit; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCertificate.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCertificate.java deleted file mode 100755 index e6d42af..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCertificate.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Certificate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Certificate">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CertificateAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Certificate", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionCertificate { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCheckValue.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCheckValue.java deleted file mode 100755 index 6210bf3..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCheckValue.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-CheckValue complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-CheckValue">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>value">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CheckValueAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-CheckValue", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionCheckValue { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCity.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCity.java deleted file mode 100755 index 21bf67a..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCity.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-City complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-City">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CityAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-City", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionCity { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionClinicalData.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionClinicalData.java deleted file mode 100755 index 5d2f3f7..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionClinicalData.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ClinicalData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ClinicalData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}SubjectData" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecords" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Signatures" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Annotations" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ClinicalDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ClinicalDataAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ClinicalDataAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ClinicalData", propOrder = { - "subjectData", - "auditRecords", - "signatures", - "annotations" -}) -public class ODMcomplexTypeDefinitionClinicalData { - - @XmlElement(name = "SubjectData") - protected List subjectData; - @XmlElement(name = "AuditRecords") - protected List auditRecords; - @XmlElement(name = "Signatures") - protected List signatures; - @XmlElement(name = "Annotations") - protected List annotations; - @XmlAttribute(name = "StudyOID", required = true) - protected String studyOID; - @XmlAttribute(name = "MetaDataVersionOID", required = true) - protected String metaDataVersionOID; - - /** - * Gets the value of the subjectData property. - * - *

- * 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 set method for the subjectData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSubjectData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionSubjectData } - * - * - */ - public List getSubjectData() { - if (subjectData == null) { - subjectData = new ArrayList(); - } - return this.subjectData; - } - - /** - * Gets the value of the auditRecords property. - * - *

- * 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 set method for the auditRecords property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuditRecords().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAuditRecords } - * - * - */ - public List getAuditRecords() { - if (auditRecords == null) { - auditRecords = new ArrayList(); - } - return this.auditRecords; - } - - /** - * Gets the value of the signatures property. - * - *

- * 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 set method for the signatures property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSignatures().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionSignatures } - * - * - */ - public List getSignatures() { - if (signatures == null) { - signatures = new ArrayList(); - } - return this.signatures; - } - - /** - * Gets the value of the annotations property. - * - *

- * 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 set method for the annotations property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAnnotations().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAnnotations } - * - * - */ - public List getAnnotations() { - if (annotations == null) { - annotations = new ArrayList(); - } - return this.annotations; - } - - /** - * Gets the value of the studyOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyOID() { - return studyOID; - } - - /** - * Sets the value of the studyOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyOID(String value) { - this.studyOID = value; - } - - /** - * Gets the value of the metaDataVersionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMetaDataVersionOID() { - return metaDataVersionOID; - } - - /** - * Sets the value of the metaDataVersionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMetaDataVersionOID(String value) { - this.metaDataVersionOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeList.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeList.java deleted file mode 100755 index ff8c8b6..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeList.java +++ /dev/null @@ -1,247 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-CodeList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-CodeList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListItem" maxOccurs="unbounded" minOccurs="0"/>
- *           <element ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalCodeList"/>
- *           <element ref="{http://www.cdisc.org/ns/odm/v1.3}EnumeratedItem" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-CodeList", propOrder = { - "codeListItem", - "externalCodeList", - "enumeratedItem" -}) -public class ODMcomplexTypeDefinitionCodeList { - - @XmlElement(name = "CodeListItem") - protected List codeListItem; - @XmlElement(name = "ExternalCodeList") - protected ODMcomplexTypeDefinitionExternalCodeList externalCodeList; - @XmlElement(name = "EnumeratedItem") - protected List enumeratedItem; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "DataType", required = true) - protected CLDataType dataType; - @XmlAttribute(name = "SASFormatName") - protected String sasFormatName; - - /** - * Gets the value of the codeListItem property. - * - *

- * 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 set method for the codeListItem property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCodeListItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionCodeListItem } - * - * - */ - public List getCodeListItem() { - if (codeListItem == null) { - codeListItem = new ArrayList(); - } - return this.codeListItem; - } - - /** - * Gets the value of the externalCodeList property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionExternalCodeList } - * - */ - public ODMcomplexTypeDefinitionExternalCodeList getExternalCodeList() { - return externalCodeList; - } - - /** - * Sets the value of the externalCodeList property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionExternalCodeList } - * - */ - public void setExternalCodeList(ODMcomplexTypeDefinitionExternalCodeList value) { - this.externalCodeList = value; - } - - /** - * Gets the value of the enumeratedItem property. - * - *

- * 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 set method for the enumeratedItem property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEnumeratedItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionEnumeratedItem } - * - * - */ - public List getEnumeratedItem() { - if (enumeratedItem == null) { - enumeratedItem = new ArrayList(); - } - return this.enumeratedItem; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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 dataType property. - * - * @return - * possible object is - * {@link CLDataType } - * - */ - public CLDataType getDataType() { - return dataType; - } - - /** - * Sets the value of the dataType property. - * - * @param value - * allowed object is - * {@link CLDataType } - * - */ - public void setDataType(CLDataType value) { - this.dataType = value; - } - - /** - * Gets the value of the sasFormatName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSASFormatName() { - return sasFormatName; - } - - /** - * Sets the value of the sasFormatName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSASFormatName(String value) { - this.sasFormatName = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeListItem.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeListItem.java deleted file mode 100755 index 6067efe..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeListItem.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-CodeListItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-CodeListItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Decode"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListItemElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListItemAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListItemAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-CodeListItem", propOrder = { - "decode" -}) -public class ODMcomplexTypeDefinitionCodeListItem { - - @XmlElement(name = "Decode", required = true) - protected ODMcomplexTypeDefinitionDecode decode; - @XmlAttribute(name = "CodedValue", required = true) - protected String codedValue; - @XmlAttribute(name = "Rank") - protected BigDecimal rank; - - /** - * Gets the value of the decode property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDecode } - * - */ - public ODMcomplexTypeDefinitionDecode getDecode() { - return decode; - } - - /** - * Sets the value of the decode property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDecode } - * - */ - public void setDecode(ODMcomplexTypeDefinitionDecode value) { - this.decode = value; - } - - /** - * Gets the value of the codedValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCodedValue() { - return codedValue; - } - - /** - * Sets the value of the codedValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCodedValue(String value) { - this.codedValue = value; - } - - /** - * Gets the value of the rank property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRank() { - return rank; - } - - /** - * Sets the value of the rank property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRank(BigDecimal value) { - this.rank = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeListRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeListRef.java deleted file mode 100755 index 19fd0d8..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCodeListRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-CodeListRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-CodeListRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListRefAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListRefAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-CodeListRef") -public class ODMcomplexTypeDefinitionCodeListRef { - - @XmlAttribute(name = "CodeListOID", required = true) - protected String codeListOID; - - /** - * Gets the value of the codeListOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCodeListOID() { - return codeListOID; - } - - /** - * Sets the value of the codeListOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCodeListOID(String value) { - this.codeListOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionComment.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionComment.java deleted file mode 100755 index ad4ca49..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionComment.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Comment complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Comment">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CommentAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CommentAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Comment", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionComment { - - @XmlValue - protected String value; - @XmlAttribute(name = "SponsorOrSite") - protected CommentType sponsorOrSite; - - /** - * 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; - } - - /** - * Gets the value of the sponsorOrSite property. - * - * @return - * possible object is - * {@link CommentType } - * - */ - public CommentType getSponsorOrSite() { - return sponsorOrSite; - } - - /** - * Sets the value of the sponsorOrSite property. - * - * @param value - * allowed object is - * {@link CommentType } - * - */ - public void setSponsorOrSite(CommentType value) { - this.sponsorOrSite = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionConditionDef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionConditionDef.java deleted file mode 100755 index 08d46cd..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionConditionDef.java +++ /dev/null @@ -1,160 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ConditionDef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ConditionDef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Description"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FormalExpression" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ConditionDefElementExtension"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ConditionDefAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ConditionDefAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ConditionDef", propOrder = { - "description", - "formalExpression" -}) -public class ODMcomplexTypeDefinitionConditionDef { - - @XmlElement(name = "Description", required = true) - protected ODMcomplexTypeDefinitionDescription description; - @XmlElement(name = "FormalExpression") - protected List formalExpression; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public ODMcomplexTypeDefinitionDescription getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public void setDescription(ODMcomplexTypeDefinitionDescription value) { - this.description = value; - } - - /** - * Gets the value of the formalExpression property. - * - *

- * 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 set method for the formalExpression property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFormalExpression().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionFormalExpression } - * - * - */ - public List getFormalExpression() { - if (formalExpression == null) { - formalExpression = new ArrayList(); - } - return this.formalExpression; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCountry.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCountry.java deleted file mode 100755 index 7f794b8..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCountry.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Country complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Country">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CountryAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Country", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionCountry { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCryptoBindingManifest.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCryptoBindingManifest.java deleted file mode 100755 index a459285..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionCryptoBindingManifest.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-CryptoBindingManifest complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-CryptoBindingManifest">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CryptoBindingManifestAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-CryptoBindingManifest", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionCryptoBindingManifest { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDateTimeStamp.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDateTimeStamp.java deleted file mode 100755 index 927ee5c..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDateTimeStamp.java +++ /dev/null @@ -1,68 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for ODMcomplexTypeDefinition-DateTimeStamp complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-DateTimeStamp">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>datetime">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}DateTimeStampAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-DateTimeStamp", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionDateTimeStamp { - - @XmlValue - protected XMLGregorianCalendar value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValue(XMLGregorianCalendar value) { - this.value = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDecode.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDecode.java deleted file mode 100755 index 34d036c..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDecode.java +++ /dev/null @@ -1,78 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-Decode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Decode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}TranslatedText" maxOccurs="unbounded"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}DecodeElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}DecodeAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Decode", propOrder = { - "translatedText" -}) -public class ODMcomplexTypeDefinitionDecode { - - @XmlElement(name = "TranslatedText", required = true) - protected List translatedText; - - /** - * Gets the value of the translatedText property. - * - *

- * 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 set method for the translatedText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTranslatedText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionTranslatedText } - * - * - */ - public List getTranslatedText() { - if (translatedText == null) { - translatedText = new ArrayList(); - } - return this.translatedText; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDescription.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDescription.java deleted file mode 100755 index 4a63191..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDescription.java +++ /dev/null @@ -1,78 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-Description complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Description">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}TranslatedText" maxOccurs="unbounded"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}DescriptionElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}DescriptionAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Description", propOrder = { - "translatedText" -}) -public class ODMcomplexTypeDefinitionDescription { - - @XmlElement(name = "TranslatedText", required = true) - protected List translatedText; - - /** - * Gets the value of the translatedText property. - * - *

- * 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 set method for the translatedText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTranslatedText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionTranslatedText } - * - * - */ - public List getTranslatedText() { - if (translatedText == null) { - translatedText = new ArrayList(); - } - return this.translatedText; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDisplayName.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDisplayName.java deleted file mode 100755 index 14397b7..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionDisplayName.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-DisplayName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-DisplayName">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}DisplayNameAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-DisplayName", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionDisplayName { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionEmail.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionEmail.java deleted file mode 100755 index 81d56cb..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionEmail.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Email complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Email">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}EmailAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Email", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionEmail { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionEnumeratedItem.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionEnumeratedItem.java deleted file mode 100755 index 3182e7e..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionEnumeratedItem.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-EnumeratedItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-EnumeratedItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}EnumeratedItemElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListItemAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}EnumeratedItemAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-EnumeratedItem") -public class ODMcomplexTypeDefinitionEnumeratedItem { - - @XmlAttribute(name = "CodedValue", required = true) - protected String codedValue; - @XmlAttribute(name = "Rank") - protected BigDecimal rank; - - /** - * Gets the value of the codedValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCodedValue() { - return codedValue; - } - - /** - * Sets the value of the codedValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCodedValue(String value) { - this.codedValue = value; - } - - /** - * Gets the value of the rank property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRank() { - return rank; - } - - /** - * Sets the value of the rank property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRank(BigDecimal value) { - this.rank = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionErrorMessage.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionErrorMessage.java deleted file mode 100755 index acc459c..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionErrorMessage.java +++ /dev/null @@ -1,78 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-ErrorMessage complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ErrorMessage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}TranslatedText" maxOccurs="unbounded"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ErrorMessageElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ErrorMessageAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ErrorMessage", propOrder = { - "translatedText" -}) -public class ODMcomplexTypeDefinitionErrorMessage { - - @XmlElement(name = "TranslatedText", required = true) - protected List translatedText; - - /** - * Gets the value of the translatedText property. - * - *

- * 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 set method for the translatedText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTranslatedText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionTranslatedText } - * - * - */ - public List getTranslatedText() { - if (translatedText == null) { - translatedText = new ArrayList(); - } - return this.translatedText; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionExternalCodeList.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionExternalCodeList.java deleted file mode 100755 index 8db1d76..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionExternalCodeList.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ExternalCodeList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ExternalCodeList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalCodeListElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalCodeListAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalCodeListAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalSharedAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ExternalCodeList") -public class ODMcomplexTypeDefinitionExternalCodeList { - - @XmlAttribute(name = "href") - @XmlSchemaType(name = "anyURI") - protected String href; - @XmlAttribute(name = "ref") - protected String ref; - @XmlAttribute(name = "Dictionary") - protected String dictionary; - @XmlAttribute(name = "Version") - protected String version; - - /** - * Gets the value of the href property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHref() { - return href; - } - - /** - * Sets the value of the href property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHref(String value) { - this.href = value; - } - - /** - * Gets the value of the ref property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRef() { - return ref; - } - - /** - * Sets the value of the ref property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRef(String value) { - this.ref = value; - } - - /** - * Gets the value of the dictionary property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDictionary() { - return dictionary; - } - - /** - * Sets the value of the dictionary property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDictionary(String value) { - this.dictionary = value; - } - - /** - * Gets the value of the version property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersion() { - return version; - } - - /** - * Sets the value of the version property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersion(String value) { - this.version = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionExternalQuestion.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionExternalQuestion.java deleted file mode 100755 index b9babf9..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionExternalQuestion.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ExternalQuestion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ExternalQuestion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalQuestionElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalQuestionAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalSharedAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalQuestionAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ExternalQuestion") -public class ODMcomplexTypeDefinitionExternalQuestion { - - @XmlAttribute(name = "Dictionary") - protected String dictionary; - @XmlAttribute(name = "Version") - protected String version; - @XmlAttribute(name = "Code") - protected String code; - - /** - * Gets the value of the dictionary property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDictionary() { - return dictionary; - } - - /** - * Sets the value of the dictionary property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDictionary(String value) { - this.dictionary = value; - } - - /** - * Gets the value of the version property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersion() { - return version; - } - - /** - * Sets the value of the version property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersion(String value) { - this.version = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFax.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFax.java deleted file mode 100755 index 8513eff..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFax.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Fax complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Fax">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FaxAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Fax", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionFax { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFirstName.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFirstName.java deleted file mode 100755 index e2d4551..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFirstName.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-FirstName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-FirstName">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FirstNameAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-FirstName", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionFirstName { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlag.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlag.java deleted file mode 100755 index a3f6d26..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlag.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-Flag complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Flag">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FlagValue"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FlagType" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}FlagElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FlagAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Flag", propOrder = { - "flagValue", - "flagType" -}) -public class ODMcomplexTypeDefinitionFlag { - - @XmlElement(name = "FlagValue", required = true) - protected ODMcomplexTypeDefinitionFlagValue flagValue; - @XmlElement(name = "FlagType") - protected ODMcomplexTypeDefinitionFlagType flagType; - - /** - * Gets the value of the flagValue property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionFlagValue } - * - */ - public ODMcomplexTypeDefinitionFlagValue getFlagValue() { - return flagValue; - } - - /** - * Sets the value of the flagValue property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionFlagValue } - * - */ - public void setFlagValue(ODMcomplexTypeDefinitionFlagValue value) { - this.flagValue = value; - } - - /** - * Gets the value of the flagType property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionFlagType } - * - */ - public ODMcomplexTypeDefinitionFlagType getFlagType() { - return flagType; - } - - /** - * Sets the value of the flagType property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionFlagType } - * - */ - public void setFlagType(ODMcomplexTypeDefinitionFlagType value) { - this.flagType = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlagType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlagType.java deleted file mode 100755 index 5957efa..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlagType.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-FlagType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-FlagType">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>name">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FlagTypeAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FlagTypeAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-FlagType", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionFlagType { - - @XmlValue - protected String value; - @XmlAttribute(name = "CodeListOID", required = true) - protected String codeListOID; - - /** - * 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; - } - - /** - * Gets the value of the codeListOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCodeListOID() { - return codeListOID; - } - - /** - * Sets the value of the codeListOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCodeListOID(String value) { - this.codeListOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlagValue.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlagValue.java deleted file mode 100755 index 6c072e8..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFlagValue.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-FlagValue complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-FlagValue">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FlagValueAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FlagValueAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-FlagValue", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionFlagValue { - - @XmlValue - protected String value; - @XmlAttribute(name = "CodeListOID", required = true) - protected String codeListOID; - - /** - * 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; - } - - /** - * Gets the value of the codeListOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCodeListOID() { - return codeListOID; - } - - /** - * Sets the value of the codeListOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCodeListOID(String value) { - this.codeListOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormData.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormData.java deleted file mode 100755 index 0285ace..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormData.java +++ /dev/null @@ -1,419 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionAuditLogs; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionDiscrepancyNotes; - - -/** - *

Java class for ODMcomplexTypeDefinition-FormData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-FormData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecord" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Signature" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ArchiveLayoutRef" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Annotation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupData" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}FormDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FormDataAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FormDataAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-FormData", propOrder = { - "auditRecord", - "signature", - "archiveLayoutRef", - "annotation", - "itemGroupData", - "formDataElementExtension" -}) -public class ODMcomplexTypeDefinitionFormData { - - @XmlElement(name = "AuditRecord") - protected ODMcomplexTypeDefinitionAuditRecord auditRecord; - @XmlElement(name = "Signature") - protected ODMcomplexTypeDefinitionSignature signature; - @XmlElement(name = "ArchiveLayoutRef") - protected ODMcomplexTypeDefinitionArchiveLayoutRef archiveLayoutRef; - @XmlElement(name = "Annotation") - protected List annotation; - @XmlElement(name = "ItemGroupData") - protected List itemGroupData; - @XmlElements({ - @XmlElement(name = "AuditLogs", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionAuditLogs.class), - @XmlElement(name = "DiscrepancyNotes", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionDiscrepancyNotes.class) - }) - protected List formDataElementExtension; - @XmlAttribute(name = "FormOID", required = true) - protected String formOID; - @XmlAttribute(name = "FormRepeatKey") - protected String formRepeatKey; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "Version", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String version; - @XmlAttribute(name = "InterviewerName", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String interviewerName; - @XmlAttribute(name = "InterviewDate", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected XMLGregorianCalendar interviewDate; - @XmlAttribute(name = "Status", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String status; - - /** - * Gets the value of the auditRecord property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public ODMcomplexTypeDefinitionAuditRecord getAuditRecord() { - return auditRecord; - } - - /** - * Sets the value of the auditRecord property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public void setAuditRecord(ODMcomplexTypeDefinitionAuditRecord value) { - this.auditRecord = value; - } - - /** - * Gets the value of the signature property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public ODMcomplexTypeDefinitionSignature getSignature() { - return signature; - } - - /** - * Sets the value of the signature property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public void setSignature(ODMcomplexTypeDefinitionSignature value) { - this.signature = value; - } - - /** - * Gets the value of the archiveLayoutRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionArchiveLayoutRef } - * - */ - public ODMcomplexTypeDefinitionArchiveLayoutRef getArchiveLayoutRef() { - return archiveLayoutRef; - } - - /** - * Sets the value of the archiveLayoutRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionArchiveLayoutRef } - * - */ - public void setArchiveLayoutRef(ODMcomplexTypeDefinitionArchiveLayoutRef value) { - this.archiveLayoutRef = value; - } - - /** - * Gets the value of the annotation property. - * - *

- * 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 set method for the annotation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAnnotation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAnnotation } - * - * - */ - public List getAnnotation() { - if (annotation == null) { - annotation = new ArrayList(); - } - return this.annotation; - } - - /** - * Gets the value of the itemGroupData property. - * - *

- * 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 set method for the itemGroupData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemGroupData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionItemGroupData } - * - * - */ - public List getItemGroupData() { - if (itemGroupData == null) { - itemGroupData = new ArrayList(); - } - return this.itemGroupData; - } - - /** - * Gets the value of the formDataElementExtension property. - * - *

- * 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 set method for the formDataElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFormDataElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionAuditLogs } - * {@link OCodmComplexTypeDefinitionDiscrepancyNotes } - * - * - */ - public List getFormDataElementExtension() { - if (formDataElementExtension == null) { - formDataElementExtension = new ArrayList(); - } - return this.formDataElementExtension; - } - - /** - * Gets the value of the formOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormOID() { - return formOID; - } - - /** - * Sets the value of the formOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormOID(String value) { - this.formOID = value; - } - - /** - * Gets the value of the formRepeatKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormRepeatKey() { - return formRepeatKey; - } - - /** - * Sets the value of the formRepeatKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormRepeatKey(String value) { - this.formRepeatKey = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the version property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersion() { - return version; - } - - /** - * Sets the value of the version property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersion(String value) { - this.version = value; - } - - /** - * Gets the value of the interviewerName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInterviewerName() { - return interviewerName; - } - - /** - * Sets the value of the interviewerName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInterviewerName(String value) { - this.interviewerName = value; - } - - /** - * Gets the value of the interviewDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getInterviewDate() { - return interviewDate; - } - - /** - * Sets the value of the interviewDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setInterviewDate(XMLGregorianCalendar value) { - this.interviewDate = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormDef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormDef.java deleted file mode 100755 index 18f58ab..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormDef.java +++ /dev/null @@ -1,278 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionFormDetails; - - -/** - *

Java class for ODMcomplexTypeDefinition-FormDef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-FormDef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Description" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupRef" maxOccurs="unbounded"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ArchiveLayout" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}FormDefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FormDefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FormDefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-FormDef", propOrder = { - "description", - "itemGroupRef", - "archiveLayout", - "formDefElementExtension" -}) -public class ODMcomplexTypeDefinitionFormDef { - - @XmlElement(name = "Description") - protected ODMcomplexTypeDefinitionDescription description; - @XmlElement(name = "ItemGroupRef", required = true) - protected List itemGroupRef; - @XmlElement(name = "ArchiveLayout") - protected List archiveLayout; - @XmlElement(name = "FormDetails", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected List formDefElementExtension; - @XmlAttribute(name = "StudyEventOIDs", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String studyEventOIDs; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "Repeating", required = true) - protected YesOrNo repeating; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public ODMcomplexTypeDefinitionDescription getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public void setDescription(ODMcomplexTypeDefinitionDescription value) { - this.description = value; - } - - /** - * Gets the value of the itemGroupRef property. - * - *

- * 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 set method for the itemGroupRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemGroupRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionItemGroupRef } - * - * - */ - public List getItemGroupRef() { - if (itemGroupRef == null) { - itemGroupRef = new ArrayList(); - } - return this.itemGroupRef; - } - - /** - * Gets the value of the archiveLayout property. - * - *

- * 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 set method for the archiveLayout property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArchiveLayout().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionArchiveLayout } - * - * - */ - public List getArchiveLayout() { - if (archiveLayout == null) { - archiveLayout = new ArrayList(); - } - return this.archiveLayout; - } - - /** - * Gets the value of the formDefElementExtension property. - * - *

- * 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 set method for the formDefElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFormDefElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionFormDetails } - * - * - */ - public List getFormDefElementExtension() { - if (formDefElementExtension == null) { - formDefElementExtension = new ArrayList(); - } - return this.formDefElementExtension; - } - - /** - * Gets the value of the studyEventOIDs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventOIDs() { - return studyEventOIDs; - } - - /** - * Sets the value of the studyEventOIDs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventOIDs(String value) { - this.studyEventOIDs = value; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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 repeating property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getRepeating() { - return repeating; - } - - /** - * Sets the value of the repeating property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setRepeating(YesOrNo value) { - this.repeating = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormRef.java deleted file mode 100755 index 75d8993..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormRef.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-FormRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-FormRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}FormRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FormRefAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}RefAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FormRefAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-FormRef") -public class ODMcomplexTypeDefinitionFormRef { - - @XmlAttribute(name = "FormOID", required = true) - protected String formOID; - @XmlAttribute(name = "OrderNumber") - protected BigInteger orderNumber; - @XmlAttribute(name = "Mandatory", required = true) - protected YesOrNo mandatory; - @XmlAttribute(name = "CollectionExceptionConditionOID") - protected String collectionExceptionConditionOID; - - /** - * Gets the value of the formOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormOID() { - return formOID; - } - - /** - * Sets the value of the formOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormOID(String value) { - this.formOID = value; - } - - /** - * Gets the value of the orderNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOrderNumber() { - return orderNumber; - } - - /** - * Sets the value of the orderNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOrderNumber(BigInteger value) { - this.orderNumber = value; - } - - /** - * Gets the value of the mandatory property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getMandatory() { - return mandatory; - } - - /** - * Sets the value of the mandatory property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setMandatory(YesOrNo value) { - this.mandatory = value; - } - - /** - * Gets the value of the collectionExceptionConditionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCollectionExceptionConditionOID() { - return collectionExceptionConditionOID; - } - - /** - * Sets the value of the collectionExceptionConditionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCollectionExceptionConditionOID(String value) { - this.collectionExceptionConditionOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormalExpression.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormalExpression.java deleted file mode 100755 index 394f799..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFormalExpression.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-FormalExpression complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-FormalExpression">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FormalExpressionAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FormalExpressionAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-FormalExpression", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionFormalExpression { - - @XmlValue - protected String value; - @XmlAttribute(name = "Context") - protected String context; - - /** - * 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; - } - - /** - * Gets the value of the context property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContext() { - return context; - } - - /** - * Sets the value of the context property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContext(String value) { - this.context = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFullName.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFullName.java deleted file mode 100755 index 92f95ab..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionFullName.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-FullName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-FullName">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}FullNameAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-FullName", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionFullName { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionGlobalVariables.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionGlobalVariables.java deleted file mode 100755 index 62e8a68..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionGlobalVariables.java +++ /dev/null @@ -1,127 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-GlobalVariables complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-GlobalVariables">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}StudyName"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}StudyDescription"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ProtocolName"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}GlobalVariablesElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}GlobalVariablesAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-GlobalVariables", propOrder = { - "studyName", - "studyDescription", - "protocolName" -}) -public class ODMcomplexTypeDefinitionGlobalVariables { - - @XmlElement(name = "StudyName", required = true) - protected ODMcomplexTypeDefinitionStudyName studyName; - @XmlElement(name = "StudyDescription", required = true) - protected ODMcomplexTypeDefinitionStudyDescription studyDescription; - @XmlElement(name = "ProtocolName", required = true) - protected ODMcomplexTypeDefinitionProtocolName protocolName; - - /** - * Gets the value of the studyName property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionStudyName } - * - */ - public ODMcomplexTypeDefinitionStudyName getStudyName() { - return studyName; - } - - /** - * Sets the value of the studyName property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionStudyName } - * - */ - public void setStudyName(ODMcomplexTypeDefinitionStudyName value) { - this.studyName = value; - } - - /** - * Gets the value of the studyDescription property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionStudyDescription } - * - */ - public ODMcomplexTypeDefinitionStudyDescription getStudyDescription() { - return studyDescription; - } - - /** - * Sets the value of the studyDescription property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionStudyDescription } - * - */ - public void setStudyDescription(ODMcomplexTypeDefinitionStudyDescription value) { - this.studyDescription = value; - } - - /** - * Gets the value of the protocolName property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionProtocolName } - * - */ - public ODMcomplexTypeDefinitionProtocolName getProtocolName() { - return protocolName; - } - - /** - * Sets the value of the protocolName property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionProtocolName } - * - */ - public void setProtocolName(ODMcomplexTypeDefinitionProtocolName value) { - this.protocolName = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionImputationMethod.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionImputationMethod.java deleted file mode 100755 index 238e95b..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionImputationMethod.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ImputationMethod complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ImputationMethod">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ImputationMethodAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ImputationMethodAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ImputationMethod", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionImputationMethod { - - @XmlValue - protected String value; - @XmlAttribute(name = "OID", required = true) - protected String oid; - - /** - * 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; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionInclude.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionInclude.java deleted file mode 100755 index 1985a8b..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionInclude.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-Include complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Include">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}IncludeElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}IncludeAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}IncludeAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Include") -public class ODMcomplexTypeDefinitionInclude { - - @XmlAttribute(name = "StudyOID", required = true) - protected String studyOID; - @XmlAttribute(name = "MetaDataVersionOID", required = true) - protected String metaDataVersionOID; - - /** - * Gets the value of the studyOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyOID() { - return studyOID; - } - - /** - * Sets the value of the studyOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyOID(String value) { - this.studyOID = value; - } - - /** - * Gets the value of the metaDataVersionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMetaDataVersionOID() { - return metaDataVersionOID; - } - - /** - * Sets the value of the metaDataVersionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMetaDataVersionOID(String value) { - this.metaDataVersionOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionInvestigatorRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionInvestigatorRef.java deleted file mode 100755 index 0882bae..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionInvestigatorRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-InvestigatorRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-InvestigatorRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}InvestigatorRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}InvestigatorRefAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}InvestigatorRefAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-InvestigatorRef") -public class ODMcomplexTypeDefinitionInvestigatorRef { - - @XmlAttribute(name = "UserOID", required = true) - protected String userOID; - - /** - * Gets the value of the userOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserOID() { - return userOID; - } - - /** - * Sets the value of the userOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserOID(String value) { - this.userOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemData.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemData.java deleted file mode 100755 index 397a97e..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemData.java +++ /dev/null @@ -1,334 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionAuditLogs; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionDiscrepancyNotes; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecord" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Signature" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitRef" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Annotation" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemData", propOrder = { - "auditRecord", - "signature", - "measurementUnitRef", - "annotation", - "itemDataElementExtension" -}) -public class ODMcomplexTypeDefinitionItemData { - - @XmlElement(name = "AuditRecord") - protected ODMcomplexTypeDefinitionAuditRecord auditRecord; - @XmlElement(name = "Signature") - protected ODMcomplexTypeDefinitionSignature signature; - @XmlElement(name = "MeasurementUnitRef") - protected ODMcomplexTypeDefinitionMeasurementUnitRef measurementUnitRef; - @XmlElement(name = "Annotation") - protected List annotation; - @XmlElements({ - @XmlElement(name = "AuditLogs", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionAuditLogs.class), - @XmlElement(name = "DiscrepancyNotes", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionDiscrepancyNotes.class) - }) - protected List itemDataElementExtension; - @XmlAttribute(name = "ReasonForNull", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String reasonForNull; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "Value") - protected String value; - - /** - * Gets the value of the auditRecord property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public ODMcomplexTypeDefinitionAuditRecord getAuditRecord() { - return auditRecord; - } - - /** - * Sets the value of the auditRecord property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public void setAuditRecord(ODMcomplexTypeDefinitionAuditRecord value) { - this.auditRecord = value; - } - - /** - * Gets the value of the signature property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public ODMcomplexTypeDefinitionSignature getSignature() { - return signature; - } - - /** - * Sets the value of the signature property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public void setSignature(ODMcomplexTypeDefinitionSignature value) { - this.signature = value; - } - - /** - * Gets the value of the measurementUnitRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionMeasurementUnitRef } - * - */ - public ODMcomplexTypeDefinitionMeasurementUnitRef getMeasurementUnitRef() { - return measurementUnitRef; - } - - /** - * Sets the value of the measurementUnitRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionMeasurementUnitRef } - * - */ - public void setMeasurementUnitRef(ODMcomplexTypeDefinitionMeasurementUnitRef value) { - this.measurementUnitRef = value; - } - - /** - * Gets the value of the annotation property. - * - *

- * 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 set method for the annotation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAnnotation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAnnotation } - * - * - */ - public List getAnnotation() { - if (annotation == null) { - annotation = new ArrayList(); - } - return this.annotation; - } - - /** - * Gets the value of the itemDataElementExtension property. - * - *

- * 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 set method for the itemDataElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemDataElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionAuditLogs } - * {@link OCodmComplexTypeDefinitionDiscrepancyNotes } - * - * - */ - public List getItemDataElementExtension() { - if (itemDataElementExtension == null) { - itemDataElementExtension = new ArrayList(); - } - return this.itemDataElementExtension; - } - - /** - * Gets the value of the reasonForNull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReasonForNull() { - return reasonForNull; - } - - /** - * Sets the value of the reasonForNull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReasonForNull(String value) { - this.reasonForNull = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBase64Binary.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBase64Binary.java deleted file mode 100755 index 98f8836..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBase64Binary.java +++ /dev/null @@ -1,258 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataBase64Binary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataBase64Binary">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>base64Binary">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataBase64Binary", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataBase64Binary { - - @XmlValue - protected byte[] value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * byte[] - */ - public void setValue(byte[] value) { - this.value = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBase64Float.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBase64Float.java deleted file mode 100755 index a97216e..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBase64Float.java +++ /dev/null @@ -1,258 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataBase64Float complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataBase64Float">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>base64Float">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataBase64Float", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataBase64Float { - - @XmlValue - protected byte[] value; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * byte[] - */ - public void setValue(byte[] value) { - this.value = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBoolean.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBoolean.java deleted file mode 100755 index 2425af7..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataBoolean.java +++ /dev/null @@ -1,252 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataBoolean complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataBoolean">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>boolean">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataBoolean", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataBoolean { - - @XmlValue - protected boolean value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * Gets the value of the value property. - * - */ - public boolean isValue() { - return value; - } - - /** - * Sets the value of the value property. - * - */ - public void setValue(boolean value) { - this.value = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDate.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDate.java deleted file mode 100755 index df979a6..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDate.java +++ /dev/null @@ -1,261 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataDate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataDate">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>date">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataDate", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataDate { - - @XmlValue - protected XMLGregorianCalendar value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValue(XMLGregorianCalendar value) { - this.value = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDatetime.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDatetime.java deleted file mode 100755 index 1408f7a..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDatetime.java +++ /dev/null @@ -1,261 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataDatetime complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataDatetime">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>datetime">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataDatetime", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataDatetime { - - @XmlValue - protected XMLGregorianCalendar value; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValue(XMLGregorianCalendar value) { - this.value = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDouble.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDouble.java deleted file mode 100755 index b086b58..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDouble.java +++ /dev/null @@ -1,260 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataDouble complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataDouble">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>double">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataDouble", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataDouble { - - @XmlValue - protected String value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * 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; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDurationDatetime.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDurationDatetime.java deleted file mode 100755 index 01791e7..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataDurationDatetime.java +++ /dev/null @@ -1,260 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataDurationDatetime complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataDurationDatetime">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>durationDatetime">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataDurationDatetime", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataDurationDatetime { - - @XmlValue - protected String value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * 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; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataFloat.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataFloat.java deleted file mode 100755 index c10bd32..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataFloat.java +++ /dev/null @@ -1,261 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataFloat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataFloat">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>float">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataFloat", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataFloat { - - @XmlValue - protected BigDecimal value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setValue(BigDecimal value) { - this.value = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataHexBinary.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataHexBinary.java deleted file mode 100755 index 87aeb22..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataHexBinary.java +++ /dev/null @@ -1,263 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.HexBinaryAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataHexBinary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataHexBinary">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>hexBinary">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataHexBinary", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataHexBinary { - - @XmlValue - @XmlJavaTypeAdapter(HexBinaryAdapter.class) - protected byte[] value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public byte[] getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(byte[] value) { - this.value = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataHexFloat.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataHexFloat.java deleted file mode 100755 index d97d993..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataHexFloat.java +++ /dev/null @@ -1,263 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.HexBinaryAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataHexFloat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataHexFloat">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>hexFloat">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataHexFloat", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataHexFloat { - - @XmlValue - @XmlJavaTypeAdapter(HexBinaryAdapter.class) - protected byte[] value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public byte[] getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(byte[] value) { - this.value = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataIncompleteDatetime.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataIncompleteDatetime.java deleted file mode 100755 index b90cbed..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataIncompleteDatetime.java +++ /dev/null @@ -1,260 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataIncompleteDatetime complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataIncompleteDatetime">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>incompleteDatetime">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataIncompleteDatetime", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataIncompleteDatetime { - - @XmlValue - protected String value; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - - /** - * 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; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataInteger.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataInteger.java deleted file mode 100755 index 96d8902..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataInteger.java +++ /dev/null @@ -1,261 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataInteger complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataInteger">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>integer">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataInteger", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataInteger { - - @XmlValue - protected BigInteger value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setValue(BigInteger value) { - this.value = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataIntervalDatetime.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataIntervalDatetime.java deleted file mode 100755 index ff3b17c..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataIntervalDatetime.java +++ /dev/null @@ -1,260 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataIntervalDatetime complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataIntervalDatetime">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>intervalDatetime">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataIntervalDatetime", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataIntervalDatetime { - - @XmlValue - protected String value; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - - /** - * 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; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialDate.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialDate.java deleted file mode 100755 index 4b53bb8..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialDate.java +++ /dev/null @@ -1,260 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataPartialDate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataPartialDate">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>partialDate">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataPartialDate", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataPartialDate { - - @XmlValue - protected String value; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - - /** - * 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; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialDatetime.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialDatetime.java deleted file mode 100755 index 6fed742..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialDatetime.java +++ /dev/null @@ -1,260 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataPartialDatetime complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataPartialDatetime">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>partialDatetime">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataPartialDatetime", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataPartialDatetime { - - @XmlValue - protected String value; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - - /** - * 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; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialTime.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialTime.java deleted file mode 100755 index 355d5a5..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataPartialTime.java +++ /dev/null @@ -1,260 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataPartialTime complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataPartialTime">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>partialTime">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataPartialTime", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataPartialTime { - - @XmlValue - protected String value; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - - /** - * 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; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataString.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataString.java deleted file mode 100755 index a311dd7..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataString.java +++ /dev/null @@ -1,260 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataString complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataString">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>string">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataString", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataString { - - @XmlValue - protected String value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * 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; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataTime.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataTime.java deleted file mode 100755 index b46c250..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataTime.java +++ /dev/null @@ -1,261 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataTime complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataTime">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>time">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataTime", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataTime { - - @XmlValue - protected XMLGregorianCalendar value; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValue(XMLGregorianCalendar value) { - this.value = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataURI.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataURI.java deleted file mode 100755 index 016cbbe..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDataURI.java +++ /dev/null @@ -1,261 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDataURI complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDataURI">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>anyURI">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDataURI", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionItemDataURI { - - @XmlValue - @XmlSchemaType(name = "anyURI") - protected String value; - @XmlAttribute(name = "AuditRecordID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object auditRecordID; - @XmlAttribute(name = "SignatureID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object signatureID; - @XmlAttribute(name = "AnnotationID") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object annotationID; - @XmlAttribute(name = "MeasurementUnitOID") - protected String measurementUnitOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "IsNull") - protected YesOnly isNull; - - /** - * 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; - } - - /** - * Gets the value of the auditRecordID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAuditRecordID() { - return auditRecordID; - } - - /** - * Sets the value of the auditRecordID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAuditRecordID(Object value) { - this.auditRecordID = value; - } - - /** - * Gets the value of the signatureID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getSignatureID() { - return signatureID; - } - - /** - * Sets the value of the signatureID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setSignatureID(Object value) { - this.signatureID = value; - } - - /** - * Gets the value of the annotationID property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getAnnotationID() { - return annotationID; - } - - /** - * Sets the value of the annotationID property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setAnnotationID(Object value) { - this.annotationID = value; - } - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the isNull property. - * - * @return - * possible object is - * {@link YesOnly } - * - */ - public YesOnly getIsNull() { - return isNull; - } - - /** - * Sets the value of the isNull property. - * - * @param value - * allowed object is - * {@link YesOnly } - * - */ - public void setIsNull(YesOnly value) { - this.isNull = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDef.java deleted file mode 100755 index 91b795f..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemDef.java +++ /dev/null @@ -1,591 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionItemDetails; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionMultiSelectListRef; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemDef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemDef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Description" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Question" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ExternalQuestion" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitRef" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}RangeCheck" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}CodeListRef" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Role" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Alias" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDefAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDefAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemDef", propOrder = { - "description", - "question", - "externalQuestion", - "measurementUnitRef", - "rangeCheck", - "codeListRef", - "role", - "alias", - "itemDefElementExtension" -}) -public class ODMcomplexTypeDefinitionItemDef { - - @XmlElement(name = "Description") - protected ODMcomplexTypeDefinitionDescription description; - @XmlElement(name = "Question") - protected ODMcomplexTypeDefinitionQuestion question; - @XmlElement(name = "ExternalQuestion") - protected ODMcomplexTypeDefinitionExternalQuestion externalQuestion; - @XmlElement(name = "MeasurementUnitRef") - protected List measurementUnitRef; - @XmlElement(name = "RangeCheck") - protected List rangeCheck; - @XmlElement(name = "CodeListRef") - protected ODMcomplexTypeDefinitionCodeListRef codeListRef; - @XmlElement(name = "Role") - protected List role; - @XmlElement(name = "Alias") - protected List alias; - @XmlElements({ - @XmlElement(name = "MultiSelectListRef", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionMultiSelectListRef.class), - @XmlElement(name = "ItemDetails", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionItemDetails.class) - }) - protected List itemDefElementExtension; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "DataType", required = true) - protected DataType dataType; - @XmlAttribute(name = "Length") - protected BigInteger length; - @XmlAttribute(name = "SignificantDigits") - protected BigInteger significantDigits; - @XmlAttribute(name = "SASFieldName") - protected String sasFieldName; - @XmlAttribute(name = "SDSVarName") - protected String sdsVarName; - @XmlAttribute(name = "Origin") - protected String origin; - @XmlAttribute(name = "Comment") - protected String comment; - @XmlAttribute(name = "FormOIDs", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String formOIDs; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public ODMcomplexTypeDefinitionDescription getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public void setDescription(ODMcomplexTypeDefinitionDescription value) { - this.description = value; - } - - /** - * Gets the value of the question property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionQuestion } - * - */ - public ODMcomplexTypeDefinitionQuestion getQuestion() { - return question; - } - - /** - * Sets the value of the question property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionQuestion } - * - */ - public void setQuestion(ODMcomplexTypeDefinitionQuestion value) { - this.question = value; - } - - /** - * Gets the value of the externalQuestion property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionExternalQuestion } - * - */ - public ODMcomplexTypeDefinitionExternalQuestion getExternalQuestion() { - return externalQuestion; - } - - /** - * Sets the value of the externalQuestion property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionExternalQuestion } - * - */ - public void setExternalQuestion(ODMcomplexTypeDefinitionExternalQuestion value) { - this.externalQuestion = value; - } - - /** - * Gets the value of the measurementUnitRef property. - * - *

- * 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 set method for the measurementUnitRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeasurementUnitRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionMeasurementUnitRef } - * - * - */ - public List getMeasurementUnitRef() { - if (measurementUnitRef == null) { - measurementUnitRef = new ArrayList(); - } - return this.measurementUnitRef; - } - - /** - * Gets the value of the rangeCheck property. - * - *

- * 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 set method for the rangeCheck property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRangeCheck().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionRangeCheck } - * - * - */ - public List getRangeCheck() { - if (rangeCheck == null) { - rangeCheck = new ArrayList(); - } - return this.rangeCheck; - } - - /** - * Gets the value of the codeListRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionCodeListRef } - * - */ - public ODMcomplexTypeDefinitionCodeListRef getCodeListRef() { - return codeListRef; - } - - /** - * Sets the value of the codeListRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionCodeListRef } - * - */ - public void setCodeListRef(ODMcomplexTypeDefinitionCodeListRef value) { - this.codeListRef = value; - } - - /** - * Gets the value of the role property. - * - *

- * 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 set method for the role property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionRole } - * - * - */ - public List getRole() { - if (role == null) { - role = new ArrayList(); - } - return this.role; - } - - /** - * Gets the value of the alias property. - * - *

- * 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 set method for the alias property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAlias().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAlias } - * - * - */ - public List getAlias() { - if (alias == null) { - alias = new ArrayList(); - } - return this.alias; - } - - /** - * Gets the value of the itemDefElementExtension property. - * - *

- * 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 set method for the itemDefElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemDefElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionMultiSelectListRef } - * {@link OCodmComplexTypeDefinitionItemDetails } - * - * - */ - public List getItemDefElementExtension() { - if (itemDefElementExtension == null) { - itemDefElementExtension = new ArrayList(); - } - return this.itemDefElementExtension; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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 dataType property. - * - * @return - * possible object is - * {@link DataType } - * - */ - public DataType getDataType() { - return dataType; - } - - /** - * Sets the value of the dataType property. - * - * @param value - * allowed object is - * {@link DataType } - * - */ - public void setDataType(DataType value) { - this.dataType = value; - } - - /** - * Gets the value of the length property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getLength() { - return length; - } - - /** - * Sets the value of the length property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setLength(BigInteger value) { - this.length = value; - } - - /** - * Gets the value of the significantDigits property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getSignificantDigits() { - return significantDigits; - } - - /** - * Sets the value of the significantDigits property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setSignificantDigits(BigInteger value) { - this.significantDigits = value; - } - - /** - * Gets the value of the sasFieldName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSASFieldName() { - return sasFieldName; - } - - /** - * Sets the value of the sasFieldName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSASFieldName(String value) { - this.sasFieldName = value; - } - - /** - * Gets the value of the sdsVarName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSDSVarName() { - return sdsVarName; - } - - /** - * Sets the value of the sdsVarName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSDSVarName(String value) { - this.sdsVarName = value; - } - - /** - * Gets the value of the origin property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrigin() { - return origin; - } - - /** - * Sets the value of the origin property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrigin(String value) { - this.origin = value; - } - - /** - * Gets the value of the comment property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComment() { - return comment; - } - - /** - * Sets the value of the comment property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComment(String value) { - this.comment = value; - } - - /** - * Gets the value of the formOIDs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormOIDs() { - return formOIDs; - } - - /** - * Sets the value of the formOIDs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormOIDs(String value) { - this.formOIDs = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupData.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupData.java deleted file mode 100755 index 307b1f7..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupData.java +++ /dev/null @@ -1,325 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemGroupData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemGroupData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecord" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Signature" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Annotation" maxOccurs="unbounded" minOccurs="0"/>
- *         <choice>
- *           <group ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataGroup" maxOccurs="unbounded" minOccurs="0"/>
- *           <group ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDataStarGroup" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupDataAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupDataAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemGroupData", propOrder = { - "auditRecord", - "signature", - "annotation", - "itemDataGroup", - "itemDataStarGroup" -}) -public class ODMcomplexTypeDefinitionItemGroupData { - - @XmlElement(name = "AuditRecord") - protected ODMcomplexTypeDefinitionAuditRecord auditRecord; - @XmlElement(name = "Signature") - protected ODMcomplexTypeDefinitionSignature signature; - @XmlElement(name = "Annotation") - protected List annotation; - @XmlElement(name = "ItemData") - protected List itemDataGroup; - @XmlElementRefs({ - @XmlElementRef(name = "ItemDataDurationDatetime", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataIntervalDatetime", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataDate", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataPartialTime", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataString", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataFloat", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataAny", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataBase64Float", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataPartialDate", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataBoolean", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataDatetime", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataHexBinary", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataURI", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataInteger", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataBase64Binary", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataDouble", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataPartialDatetime", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataHexFloat", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataTime", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false), - @XmlElementRef(name = "ItemDataIncompleteDatetime", namespace = "http://www.cdisc.org/ns/odm/v1.3", type = JAXBElement.class, required = false) - }) - protected List> itemDataStarGroup; - @XmlAttribute(name = "ItemGroupOID", required = true) - protected String itemGroupOID; - @XmlAttribute(name = "ItemGroupRepeatKey") - protected String itemGroupRepeatKey; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - - /** - * Gets the value of the auditRecord property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public ODMcomplexTypeDefinitionAuditRecord getAuditRecord() { - return auditRecord; - } - - /** - * Sets the value of the auditRecord property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public void setAuditRecord(ODMcomplexTypeDefinitionAuditRecord value) { - this.auditRecord = value; - } - - /** - * Gets the value of the signature property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public ODMcomplexTypeDefinitionSignature getSignature() { - return signature; - } - - /** - * Sets the value of the signature property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public void setSignature(ODMcomplexTypeDefinitionSignature value) { - this.signature = value; - } - - /** - * Gets the value of the annotation property. - * - *

- * 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 set method for the annotation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAnnotation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAnnotation } - * - * - */ - public List getAnnotation() { - if (annotation == null) { - annotation = new ArrayList(); - } - return this.annotation; - } - - /** - * Gets the value of the itemDataGroup property. - * - *

- * 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 set method for the itemDataGroup property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemDataGroup().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionItemData } - * - * - */ - public List getItemDataGroup() { - if (itemDataGroup == null) { - itemDataGroup = new ArrayList(); - } - return this.itemDataGroup; - } - - /** - * Gets the value of the itemDataStarGroup property. - * - *

- * 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 set method for the itemDataStarGroup property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemDataStarGroup().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataDurationDatetime }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataDate }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataIntervalDatetime }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataFloat }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataString }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataPartialTime }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataString }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataBase64Float }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataPartialDate }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataBoolean }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataDatetime }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataHexBinary }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataURI }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataInteger }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataBase64Binary }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataDouble }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataPartialDatetime }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataHexFloat }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataTime }{@code >} - * {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataIncompleteDatetime }{@code >} - * - * - */ - public List> getItemDataStarGroup() { - if (itemDataStarGroup == null) { - itemDataStarGroup = new ArrayList>(); - } - return this.itemDataStarGroup; - } - - /** - * Gets the value of the itemGroupOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemGroupOID() { - return itemGroupOID; - } - - /** - * Sets the value of the itemGroupOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemGroupOID(String value) { - this.itemGroupOID = value; - } - - /** - * Gets the value of the itemGroupRepeatKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemGroupRepeatKey() { - return itemGroupRepeatKey; - } - - /** - * Sets the value of the itemGroupRepeatKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemGroupRepeatKey(String value) { - this.itemGroupRepeatKey = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupDef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupDef.java deleted file mode 100755 index 2dc07f7..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupDef.java +++ /dev/null @@ -1,434 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionItemGroupDetails; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemGroupDef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemGroupDef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Description" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ItemRef" maxOccurs="unbounded"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Alias" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupDefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupDefAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupDefAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemGroupDef", propOrder = { - "description", - "itemRef", - "alias", - "itemGroupDefElementExtension" -}) -public class ODMcomplexTypeDefinitionItemGroupDef { - - @XmlElement(name = "Description") - protected ODMcomplexTypeDefinitionDescription description; - @XmlElement(name = "ItemRef", required = true) - protected List itemRef; - @XmlElement(name = "Alias") - protected List alias; - @XmlElement(name = "ItemGroupDetails", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected List itemGroupDefElementExtension; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "Repeating", required = true) - protected YesOrNo repeating; - @XmlAttribute(name = "IsReferenceData") - protected YesOrNo isReferenceData; - @XmlAttribute(name = "SASDatasetName") - protected String sasDatasetName; - @XmlAttribute(name = "Domain") - protected String domain; - @XmlAttribute(name = "Origin") - protected String origin; - @XmlAttribute(name = "Role") - protected String role; - @XmlAttribute(name = "Purpose") - protected String purpose; - @XmlAttribute(name = "Comment") - protected String comment; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public ODMcomplexTypeDefinitionDescription getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public void setDescription(ODMcomplexTypeDefinitionDescription value) { - this.description = value; - } - - /** - * Gets the value of the itemRef property. - * - *

- * 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 set method for the itemRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionItemRef } - * - * - */ - public List getItemRef() { - if (itemRef == null) { - itemRef = new ArrayList(); - } - return this.itemRef; - } - - /** - * Gets the value of the alias property. - * - *

- * 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 set method for the alias property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAlias().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAlias } - * - * - */ - public List getAlias() { - if (alias == null) { - alias = new ArrayList(); - } - return this.alias; - } - - /** - * Gets the value of the itemGroupDefElementExtension property. - * - *

- * 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 set method for the itemGroupDefElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemGroupDefElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionItemGroupDetails } - * - * - */ - public List getItemGroupDefElementExtension() { - if (itemGroupDefElementExtension == null) { - itemGroupDefElementExtension = new ArrayList(); - } - return this.itemGroupDefElementExtension; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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 repeating property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getRepeating() { - return repeating; - } - - /** - * Sets the value of the repeating property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setRepeating(YesOrNo value) { - this.repeating = value; - } - - /** - * Gets the value of the isReferenceData property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getIsReferenceData() { - return isReferenceData; - } - - /** - * Sets the value of the isReferenceData property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setIsReferenceData(YesOrNo value) { - this.isReferenceData = value; - } - - /** - * Gets the value of the sasDatasetName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSASDatasetName() { - return sasDatasetName; - } - - /** - * Sets the value of the sasDatasetName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSASDatasetName(String value) { - this.sasDatasetName = value; - } - - /** - * Gets the value of the domain property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomain() { - return domain; - } - - /** - * Sets the value of the domain property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomain(String value) { - this.domain = value; - } - - /** - * Gets the value of the origin property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrigin() { - return origin; - } - - /** - * Sets the value of the origin property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrigin(String value) { - this.origin = value; - } - - /** - * Gets the value of the role property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRole() { - return role; - } - - /** - * Sets the value of the role property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRole(String value) { - this.role = value; - } - - /** - * Gets the value of the purpose property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPurpose() { - return purpose; - } - - /** - * Sets the value of the purpose property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPurpose(String value) { - this.purpose = value; - } - - /** - * Gets the value of the comment property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComment() { - return comment; - } - - /** - * Sets the value of the comment property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComment(String value) { - this.comment = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupRef.java deleted file mode 100755 index e6c810b..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemGroupRef.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemGroupRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemGroupRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupRefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}RefAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemGroupRef") -public class ODMcomplexTypeDefinitionItemGroupRef { - - @XmlAttribute(name = "OrderNumber") - protected BigInteger orderNumber; - @XmlAttribute(name = "Mandatory", required = true) - protected YesOrNo mandatory; - @XmlAttribute(name = "CollectionExceptionConditionOID") - protected String collectionExceptionConditionOID; - @XmlAttribute(name = "ItemGroupOID", required = true) - protected String itemGroupOID; - - /** - * Gets the value of the orderNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOrderNumber() { - return orderNumber; - } - - /** - * Sets the value of the orderNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOrderNumber(BigInteger value) { - this.orderNumber = value; - } - - /** - * Gets the value of the mandatory property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getMandatory() { - return mandatory; - } - - /** - * Sets the value of the mandatory property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setMandatory(YesOrNo value) { - this.mandatory = value; - } - - /** - * Gets the value of the collectionExceptionConditionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCollectionExceptionConditionOID() { - return collectionExceptionConditionOID; - } - - /** - * Sets the value of the collectionExceptionConditionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCollectionExceptionConditionOID(String value) { - this.collectionExceptionConditionOID = value; - } - - /** - * Gets the value of the itemGroupOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemGroupOID() { - return itemGroupOID; - } - - /** - * Sets the value of the itemGroupOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemGroupOID(String value) { - this.itemGroupOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemRef.java deleted file mode 100755 index d7ad908..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionItemRef.java +++ /dev/null @@ -1,288 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -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.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ItemRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ItemRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ItemRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}RefAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemRefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ItemRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ItemRef") -public class ODMcomplexTypeDefinitionItemRef { - - @XmlAttribute(name = "OrderNumber") - protected BigInteger orderNumber; - @XmlAttribute(name = "Mandatory", required = true) - protected YesOrNo mandatory; - @XmlAttribute(name = "CollectionExceptionConditionOID") - protected String collectionExceptionConditionOID; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - @XmlAttribute(name = "KeySequence") - protected BigInteger keySequence; - @XmlAttribute(name = "MethodOID") - protected String methodOID; - @XmlAttribute(name = "ImputationMethodOID") - protected String imputationMethodOID; - @XmlAttribute(name = "Role") - @XmlSchemaType(name = "NMTOKENS") - protected List role; - @XmlAttribute(name = "RoleCodeListOID") - protected String roleCodeListOID; - - /** - * Gets the value of the orderNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOrderNumber() { - return orderNumber; - } - - /** - * Sets the value of the orderNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOrderNumber(BigInteger value) { - this.orderNumber = value; - } - - /** - * Gets the value of the mandatory property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getMandatory() { - return mandatory; - } - - /** - * Sets the value of the mandatory property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setMandatory(YesOrNo value) { - this.mandatory = value; - } - - /** - * Gets the value of the collectionExceptionConditionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCollectionExceptionConditionOID() { - return collectionExceptionConditionOID; - } - - /** - * Sets the value of the collectionExceptionConditionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCollectionExceptionConditionOID(String value) { - this.collectionExceptionConditionOID = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the keySequence property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getKeySequence() { - return keySequence; - } - - /** - * Sets the value of the keySequence property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setKeySequence(BigInteger value) { - this.keySequence = value; - } - - /** - * Gets the value of the methodOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMethodOID() { - return methodOID; - } - - /** - * Sets the value of the methodOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMethodOID(String value) { - this.methodOID = value; - } - - /** - * Gets the value of the imputationMethodOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getImputationMethodOID() { - return imputationMethodOID; - } - - /** - * Sets the value of the imputationMethodOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setImputationMethodOID(String value) { - this.imputationMethodOID = value; - } - - /** - * Gets the value of the role property. - * - *

- * 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 set method for the role property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getRole() { - if (role == null) { - role = new ArrayList(); - } - return this.role; - } - - /** - * Gets the value of the roleCodeListOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoleCodeListOID() { - return roleCodeListOID; - } - - /** - * Sets the value of the roleCodeListOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoleCodeListOID(String value) { - this.roleCodeListOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionKeySet.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionKeySet.java deleted file mode 100755 index a1a55e4..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionKeySet.java +++ /dev/null @@ -1,303 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-KeySet complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-KeySet">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}KeySetElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}KeySetAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}KeySetAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-KeySet") -public class ODMcomplexTypeDefinitionKeySet { - - @XmlAttribute(name = "StudyOID", required = true) - protected String studyOID; - @XmlAttribute(name = "SubjectKey") - protected String subjectKey; - @XmlAttribute(name = "StudyEventOID") - protected String studyEventOID; - @XmlAttribute(name = "StudyEventRepeatKey") - protected String studyEventRepeatKey; - @XmlAttribute(name = "FormOID") - protected String formOID; - @XmlAttribute(name = "FormRepeatKey") - protected String formRepeatKey; - @XmlAttribute(name = "ItemGroupOID") - protected String itemGroupOID; - @XmlAttribute(name = "ItemGroupRepeatKey") - protected String itemGroupRepeatKey; - @XmlAttribute(name = "ItemOID") - protected String itemOID; - @XmlAttribute(name = "OID") - protected String oid; - - /** - * Gets the value of the studyOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyOID() { - return studyOID; - } - - /** - * Sets the value of the studyOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyOID(String value) { - this.studyOID = value; - } - - /** - * Gets the value of the subjectKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubjectKey() { - return subjectKey; - } - - /** - * Sets the value of the subjectKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubjectKey(String value) { - this.subjectKey = value; - } - - /** - * Gets the value of the studyEventOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventOID() { - return studyEventOID; - } - - /** - * Sets the value of the studyEventOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventOID(String value) { - this.studyEventOID = value; - } - - /** - * Gets the value of the studyEventRepeatKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventRepeatKey() { - return studyEventRepeatKey; - } - - /** - * Sets the value of the studyEventRepeatKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventRepeatKey(String value) { - this.studyEventRepeatKey = value; - } - - /** - * Gets the value of the formOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormOID() { - return formOID; - } - - /** - * Sets the value of the formOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormOID(String value) { - this.formOID = value; - } - - /** - * Gets the value of the formRepeatKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormRepeatKey() { - return formRepeatKey; - } - - /** - * Sets the value of the formRepeatKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormRepeatKey(String value) { - this.formRepeatKey = value; - } - - /** - * Gets the value of the itemGroupOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemGroupOID() { - return itemGroupOID; - } - - /** - * Sets the value of the itemGroupOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemGroupOID(String value) { - this.itemGroupOID = value; - } - - /** - * Gets the value of the itemGroupRepeatKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemGroupRepeatKey() { - return itemGroupRepeatKey; - } - - /** - * Sets the value of the itemGroupRepeatKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemGroupRepeatKey(String value) { - this.itemGroupRepeatKey = value; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLastName.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLastName.java deleted file mode 100755 index c208315..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLastName.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-LastName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-LastName">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}LastNameAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-LastName", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionLastName { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLegalReason.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLegalReason.java deleted file mode 100755 index 2cca738..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLegalReason.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-LegalReason complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-LegalReason">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}LegalReasonAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-LegalReason", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionLegalReason { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLocation.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLocation.java deleted file mode 100755 index e4390c5..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLocation.java +++ /dev/null @@ -1,158 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-Location complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Location">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersionRef" maxOccurs="unbounded"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}LocationElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}LocationAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}LocationAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Location", propOrder = { - "metaDataVersionRef" -}) -public class ODMcomplexTypeDefinitionLocation { - - @XmlElement(name = "MetaDataVersionRef", required = true) - protected List metaDataVersionRef; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "LocationType") - protected LocationType locationType; - - /** - * Gets the value of the metaDataVersionRef property. - * - *

- * 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 set method for the metaDataVersionRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMetaDataVersionRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionMetaDataVersionRef } - * - * - */ - public List getMetaDataVersionRef() { - if (metaDataVersionRef == null) { - metaDataVersionRef = new ArrayList(); - } - return this.metaDataVersionRef; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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 locationType property. - * - * @return - * possible object is - * {@link LocationType } - * - */ - public LocationType getLocationType() { - return locationType; - } - - /** - * Sets the value of the locationType property. - * - * @param value - * allowed object is - * {@link LocationType } - * - */ - public void setLocationType(LocationType value) { - this.locationType = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLocationRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLocationRef.java deleted file mode 100755 index 43e5af4..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLocationRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-LocationRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-LocationRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}LocationRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}LocationRefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}LocationRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-LocationRef") -public class ODMcomplexTypeDefinitionLocationRef { - - @XmlAttribute(name = "LocationOID", required = true) - protected String locationOID; - - /** - * Gets the value of the locationOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocationOID() { - return locationOID; - } - - /** - * Sets the value of the locationOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocationOID(String value) { - this.locationOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLoginName.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLoginName.java deleted file mode 100755 index 0a9785b..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionLoginName.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-LoginName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-LoginName">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}LoginNameAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-LoginName", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionLoginName { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeaning.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeaning.java deleted file mode 100755 index 2422798..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeaning.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Meaning complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Meaning">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MeaningAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Meaning", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionMeaning { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeasurementUnit.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeasurementUnit.java deleted file mode 100755 index 56ba1e1..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeasurementUnit.java +++ /dev/null @@ -1,125 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-MeasurementUnit complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-MeasurementUnit">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Symbol"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-MeasurementUnit", propOrder = { - "symbol" -}) -public class ODMcomplexTypeDefinitionMeasurementUnit { - - @XmlElement(name = "Symbol", required = true) - protected ODMcomplexTypeDefinitionSymbol symbol; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - - /** - * Gets the value of the symbol property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSymbol } - * - */ - public ODMcomplexTypeDefinitionSymbol getSymbol() { - return symbol; - } - - /** - * Sets the value of the symbol property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSymbol } - * - */ - public void setSymbol(ODMcomplexTypeDefinitionSymbol value) { - this.symbol = value; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeasurementUnitRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeasurementUnitRef.java deleted file mode 100755 index 8b5b47a..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMeasurementUnitRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-MeasurementUnitRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-MeasurementUnitRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitRefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-MeasurementUnitRef") -public class ODMcomplexTypeDefinitionMeasurementUnitRef { - - @XmlAttribute(name = "MeasurementUnitOID", required = true) - protected String measurementUnitOID; - - /** - * Gets the value of the measurementUnitOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMeasurementUnitOID() { - return measurementUnitOID; - } - - /** - * Sets the value of the measurementUnitOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMeasurementUnitOID(String value) { - this.measurementUnitOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMetaDataVersion.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMetaDataVersion.java deleted file mode 100755 index 5850592..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMetaDataVersion.java +++ /dev/null @@ -1,524 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionMultiSelectList; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionStudyDetails; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionStudyGroupClassList; -import org.openclinica.ns.rules.v3.RuleImportType; - - -/** - *

Java class for ODMcomplexTypeDefinition-MetaDataVersion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-MetaDataVersion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersionPreIncludeElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Include" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Protocol" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventDef" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FormDef" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupDef" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ItemDef" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}CodeList" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ImputationMethod" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Presentation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ConditionDef" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}MethodDef" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersionElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersionAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersionAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-MetaDataVersion", propOrder = { - "include", - "protocol", - "studyEventDef", - "formDef", - "itemGroupDef", - "itemDef", - "codeList", - "imputationMethod", - "presentation", - "conditionDef", - "methodDef", - "metaDataVersionElementExtension" -}) -public class ODMcomplexTypeDefinitionMetaDataVersion { - - @XmlElement(name = "Include") - protected ODMcomplexTypeDefinitionInclude include; - @XmlElement(name = "Protocol") - protected ODMcomplexTypeDefinitionProtocol protocol; - @XmlElement(name = "StudyEventDef") - protected List studyEventDef; - @XmlElement(name = "FormDef") - protected List formDef; - @XmlElement(name = "ItemGroupDef") - protected List itemGroupDef; - @XmlElement(name = "ItemDef") - protected List itemDef; - @XmlElement(name = "CodeList") - protected List codeList; - @XmlElement(name = "ImputationMethod") - protected List imputationMethod; - @XmlElement(name = "Presentation") - protected List presentation; - @XmlElement(name = "ConditionDef") - protected List conditionDef; - @XmlElement(name = "MethodDef") - protected List methodDef; - @XmlElements({ - @XmlElement(name = "MultiSelectList", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionMultiSelectList.class), - @XmlElement(name = "StudyGroupClassList", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionStudyGroupClassList.class), - @XmlElement(name = "StudyDetails", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionStudyDetails.class), - @XmlElement(name = "Rules", namespace = "http://www.openclinica.org/ns/rules/v3.1", type = RuleImportType.class) - }) - protected List metaDataVersionElementExtension; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "Description") - protected String description; - - /** - * Gets the value of the include property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionInclude } - * - */ - public ODMcomplexTypeDefinitionInclude getInclude() { - return include; - } - - /** - * Sets the value of the include property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionInclude } - * - */ - public void setInclude(ODMcomplexTypeDefinitionInclude value) { - this.include = value; - } - - /** - * Gets the value of the protocol property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionProtocol } - * - */ - public ODMcomplexTypeDefinitionProtocol getProtocol() { - return protocol; - } - - /** - * Sets the value of the protocol property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionProtocol } - * - */ - public void setProtocol(ODMcomplexTypeDefinitionProtocol value) { - this.protocol = value; - } - - /** - * Gets the value of the studyEventDef property. - * - *

- * 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 set method for the studyEventDef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyEventDef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionStudyEventDef } - * - * - */ - public List getStudyEventDef() { - if (studyEventDef == null) { - studyEventDef = new ArrayList(); - } - return this.studyEventDef; - } - - /** - * Gets the value of the formDef property. - * - *

- * 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 set method for the formDef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFormDef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionFormDef } - * - * - */ - public List getFormDef() { - if (formDef == null) { - formDef = new ArrayList(); - } - return this.formDef; - } - - /** - * Gets the value of the itemGroupDef property. - * - *

- * 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 set method for the itemGroupDef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemGroupDef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionItemGroupDef } - * - * - */ - public List getItemGroupDef() { - if (itemGroupDef == null) { - itemGroupDef = new ArrayList(); - } - return this.itemGroupDef; - } - - /** - * Gets the value of the itemDef property. - * - *

- * 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 set method for the itemDef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemDef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionItemDef } - * - * - */ - public List getItemDef() { - if (itemDef == null) { - itemDef = new ArrayList(); - } - return this.itemDef; - } - - /** - * Gets the value of the codeList property. - * - *

- * 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 set method for the codeList property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCodeList().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionCodeList } - * - * - */ - public List getCodeList() { - if (codeList == null) { - codeList = new ArrayList(); - } - return this.codeList; - } - - /** - * Gets the value of the imputationMethod property. - * - *

- * 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 set method for the imputationMethod property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getImputationMethod().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionImputationMethod } - * - * - */ - public List getImputationMethod() { - if (imputationMethod == null) { - imputationMethod = new ArrayList(); - } - return this.imputationMethod; - } - - /** - * Gets the value of the presentation property. - * - *

- * 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 set method for the presentation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPresentation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionPresentation } - * - * - */ - public List getPresentation() { - if (presentation == null) { - presentation = new ArrayList(); - } - return this.presentation; - } - - /** - * Gets the value of the conditionDef property. - * - *

- * 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 set method for the conditionDef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getConditionDef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionConditionDef } - * - * - */ - public List getConditionDef() { - if (conditionDef == null) { - conditionDef = new ArrayList(); - } - return this.conditionDef; - } - - /** - * Gets the value of the methodDef property. - * - *

- * 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 set method for the methodDef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMethodDef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionMethodDef } - * - * - */ - public List getMethodDef() { - if (methodDef == null) { - methodDef = new ArrayList(); - } - return this.methodDef; - } - - /** - * Gets the value of the metaDataVersionElementExtension property. - * - *

- * 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 set method for the metaDataVersionElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMetaDataVersionElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionMultiSelectList } - * {@link OCodmComplexTypeDefinitionStudyGroupClassList } - * {@link OCodmComplexTypeDefinitionStudyDetails } - * {@link RuleImportType } - * - * - */ - public List getMetaDataVersionElementExtension() { - if (metaDataVersionElementExtension == null) { - metaDataVersionElementExtension = new ArrayList(); - } - return this.metaDataVersionElementExtension; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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 description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMetaDataVersionRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMetaDataVersionRef.java deleted file mode 100755 index 45b7049..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMetaDataVersionRef.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for ODMcomplexTypeDefinition-MetaDataVersionRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-MetaDataVersionRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersionRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersionRefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersionRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-MetaDataVersionRef") -public class ODMcomplexTypeDefinitionMetaDataVersionRef { - - @XmlAttribute(name = "StudyOID", required = true) - protected String studyOID; - @XmlAttribute(name = "MetaDataVersionOID", required = true) - protected String metaDataVersionOID; - @XmlAttribute(name = "EffectiveDate", required = true) - protected XMLGregorianCalendar effectiveDate; - - /** - * Gets the value of the studyOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyOID() { - return studyOID; - } - - /** - * Sets the value of the studyOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyOID(String value) { - this.studyOID = value; - } - - /** - * Gets the value of the metaDataVersionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMetaDataVersionOID() { - return metaDataVersionOID; - } - - /** - * Sets the value of the metaDataVersionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMetaDataVersionOID(String value) { - this.metaDataVersionOID = value; - } - - /** - * Gets the value of the effectiveDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEffectiveDate() { - return effectiveDate; - } - - /** - * Sets the value of the effectiveDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEffectiveDate(XMLGregorianCalendar value) { - this.effectiveDate = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMethodDef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMethodDef.java deleted file mode 100755 index fd5cc9a..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionMethodDef.java +++ /dev/null @@ -1,186 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-MethodDef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-MethodDef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Description"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FormalExpression" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}MethodDefElementExtension"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MethodDefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}MethodDefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-MethodDef", propOrder = { - "description", - "formalExpression" -}) -public class ODMcomplexTypeDefinitionMethodDef { - - @XmlElement(name = "Description", required = true) - protected ODMcomplexTypeDefinitionDescription description; - @XmlElement(name = "FormalExpression") - protected List formalExpression; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "Type") - protected MethodType type; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public ODMcomplexTypeDefinitionDescription getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public void setDescription(ODMcomplexTypeDefinitionDescription value) { - this.description = value; - } - - /** - * Gets the value of the formalExpression property. - * - *

- * 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 set method for the formalExpression property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFormalExpression().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionFormalExpression } - * - * - */ - public List getFormalExpression() { - if (formalExpression == null) { - formalExpression = new ArrayList(); - } - return this.formalExpression; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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 type property. - * - * @return - * possible object is - * {@link MethodType } - * - */ - public MethodType getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link MethodType } - * - */ - public void setType(MethodType value) { - this.type = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionOrganization.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionOrganization.java deleted file mode 100755 index 9b71198..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionOrganization.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Organization complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Organization">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}OrganizationAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Organization", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionOrganization { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionOtherText.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionOtherText.java deleted file mode 100755 index 3611b25..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionOtherText.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-OtherText complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-OtherText">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}OtherTextAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-OtherText", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionOtherText { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPager.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPager.java deleted file mode 100755 index d2a47f4..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPager.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Pager complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Pager">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}PagerAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Pager", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionPager { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPhone.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPhone.java deleted file mode 100755 index 19cf811..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPhone.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Phone complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Phone">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}PhoneAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Phone", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionPhone { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPicture.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPicture.java deleted file mode 100755 index 1abcf2a..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPicture.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-Picture complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Picture">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}PictureElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}PictureAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}PictureAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Picture") -public class ODMcomplexTypeDefinitionPicture { - - @XmlAttribute(name = "PictureFileName", required = true) - protected String pictureFileName; - @XmlAttribute(name = "ImageType") - protected String imageType; - - /** - * Gets the value of the pictureFileName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPictureFileName() { - return pictureFileName; - } - - /** - * Sets the value of the pictureFileName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPictureFileName(String value) { - this.pictureFileName = value; - } - - /** - * Gets the value of the imageType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getImageType() { - return imageType; - } - - /** - * Sets the value of the imageType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setImageType(String value) { - this.imageType = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPostalCode.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPostalCode.java deleted file mode 100755 index f36eebe..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPostalCode.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-PostalCode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-PostalCode">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}PostalCodeAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-PostalCode", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionPostalCode { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPresentation.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPresentation.java deleted file mode 100755 index ef39b45..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionPresentation.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ODMcomplexTypeDefinition-Presentation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Presentation">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}PresentationAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}PresentationAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Presentation", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionPresentation { - - @XmlValue - protected String value; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlSchemaType(name = "language") - protected String lang; - - /** - * 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; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = value; - } - - /** - * Gets the value of the lang property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLang() { - return lang; - } - - /** - * Sets the value of the lang property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLang(String value) { - this.lang = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionProtocol.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionProtocol.java deleted file mode 100755 index 084eb71..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionProtocol.java +++ /dev/null @@ -1,106 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-Protocol complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Protocol">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Description" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventRef" maxOccurs="unbounded"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ProtocolElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ProtocolAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Protocol", propOrder = { - "description", - "studyEventRef" -}) -public class ODMcomplexTypeDefinitionProtocol { - - @XmlElement(name = "Description") - protected ODMcomplexTypeDefinitionDescription description; - @XmlElement(name = "StudyEventRef", required = true) - protected List studyEventRef; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public ODMcomplexTypeDefinitionDescription getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public void setDescription(ODMcomplexTypeDefinitionDescription value) { - this.description = value; - } - - /** - * Gets the value of the studyEventRef property. - * - *

- * 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 set method for the studyEventRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyEventRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionStudyEventRef } - * - * - */ - public List getStudyEventRef() { - if (studyEventRef == null) { - studyEventRef = new ArrayList(); - } - return this.studyEventRef; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionProtocolName.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionProtocolName.java deleted file mode 100755 index ee78925..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionProtocolName.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ProtocolName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ProtocolName">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>name">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ProtocolNameAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ProtocolName", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionProtocolName { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionQuestion.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionQuestion.java deleted file mode 100755 index a8b318c..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionQuestion.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-Question complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Question">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}TranslatedText" maxOccurs="unbounded"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}QuestionElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}QuestionAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Question", propOrder = { - "translatedText" -}) -public class ODMcomplexTypeDefinitionQuestion { - - @XmlElement(name = "TranslatedText", required = true) - protected List translatedText; - @XmlAttribute(name = "QuestionNumber", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String questionNumber; - - /** - * Gets the value of the translatedText property. - * - *

- * 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 set method for the translatedText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTranslatedText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionTranslatedText } - * - * - */ - public List getTranslatedText() { - if (translatedText == null) { - translatedText = new ArrayList(); - } - return this.translatedText; - } - - /** - * Gets the value of the questionNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getQuestionNumber() { - return questionNumber; - } - - /** - * Sets the value of the questionNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setQuestionNumber(String value) { - this.questionNumber = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionRangeCheck.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionRangeCheck.java deleted file mode 100755 index e9c88da..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionRangeCheck.java +++ /dev/null @@ -1,223 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-RangeCheck complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-RangeCheck">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{http://www.cdisc.org/ns/odm/v1.3}CheckValue" maxOccurs="unbounded"/>
- *           <element ref="{http://www.cdisc.org/ns/odm/v1.3}FormalExpression" maxOccurs="unbounded"/>
- *         </choice>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}MeasurementUnitRef" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ErrorMessage" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}RangeCheckElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}RangeCheckAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}RangeCheckAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-RangeCheck", propOrder = { - "checkValue", - "formalExpression", - "measurementUnitRef", - "errorMessage" -}) -public class ODMcomplexTypeDefinitionRangeCheck { - - @XmlElement(name = "CheckValue") - protected List checkValue; - @XmlElement(name = "FormalExpression") - protected List formalExpression; - @XmlElement(name = "MeasurementUnitRef") - protected ODMcomplexTypeDefinitionMeasurementUnitRef measurementUnitRef; - @XmlElement(name = "ErrorMessage") - protected ODMcomplexTypeDefinitionErrorMessage errorMessage; - @XmlAttribute(name = "Comparator", required = true) - protected Comparator comparator; - @XmlAttribute(name = "SoftHard", required = true) - protected SoftOrHard softHard; - - /** - * Gets the value of the checkValue property. - * - *

- * 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 set method for the checkValue property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCheckValue().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionCheckValue } - * - * - */ - public List getCheckValue() { - if (checkValue == null) { - checkValue = new ArrayList(); - } - return this.checkValue; - } - - /** - * Gets the value of the formalExpression property. - * - *

- * 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 set method for the formalExpression property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFormalExpression().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionFormalExpression } - * - * - */ - public List getFormalExpression() { - if (formalExpression == null) { - formalExpression = new ArrayList(); - } - return this.formalExpression; - } - - /** - * Gets the value of the measurementUnitRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionMeasurementUnitRef } - * - */ - public ODMcomplexTypeDefinitionMeasurementUnitRef getMeasurementUnitRef() { - return measurementUnitRef; - } - - /** - * Sets the value of the measurementUnitRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionMeasurementUnitRef } - * - */ - public void setMeasurementUnitRef(ODMcomplexTypeDefinitionMeasurementUnitRef value) { - this.measurementUnitRef = value; - } - - /** - * Gets the value of the errorMessage property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionErrorMessage } - * - */ - public ODMcomplexTypeDefinitionErrorMessage getErrorMessage() { - return errorMessage; - } - - /** - * Sets the value of the errorMessage property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionErrorMessage } - * - */ - public void setErrorMessage(ODMcomplexTypeDefinitionErrorMessage value) { - this.errorMessage = value; - } - - /** - * Gets the value of the comparator property. - * - * @return - * possible object is - * {@link Comparator } - * - */ - public Comparator getComparator() { - return comparator; - } - - /** - * Sets the value of the comparator property. - * - * @param value - * allowed object is - * {@link Comparator } - * - */ - public void setComparator(Comparator value) { - this.comparator = value; - } - - /** - * Gets the value of the softHard property. - * - * @return - * possible object is - * {@link SoftOrHard } - * - */ - public SoftOrHard getSoftHard() { - return softHard; - } - - /** - * Sets the value of the softHard property. - * - * @param value - * allowed object is - * {@link SoftOrHard } - * - */ - public void setSoftHard(SoftOrHard value) { - this.softHard = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionReasonForChange.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionReasonForChange.java deleted file mode 100755 index a77d887..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionReasonForChange.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-ReasonForChange complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ReasonForChange">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ReasonForChangeAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ReasonForChange", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionReasonForChange { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionReferenceData.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionReferenceData.java deleted file mode 100755 index 8a98f71..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionReferenceData.java +++ /dev/null @@ -1,132 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-ReferenceData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-ReferenceData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}ItemGroupData" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}ReferenceDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ReferenceDataAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}ReferenceDataAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-ReferenceData", propOrder = { - "itemGroupData" -}) -public class ODMcomplexTypeDefinitionReferenceData { - - @XmlElement(name = "ItemGroupData") - protected List itemGroupData; - @XmlAttribute(name = "StudyOID", required = true) - protected String studyOID; - @XmlAttribute(name = "MetaDataVersionOID", required = true) - protected String metaDataVersionOID; - - /** - * Gets the value of the itemGroupData property. - * - *

- * 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 set method for the itemGroupData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemGroupData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionItemGroupData } - * - * - */ - public List getItemGroupData() { - if (itemGroupData == null) { - itemGroupData = new ArrayList(); - } - return this.itemGroupData; - } - - /** - * Gets the value of the studyOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyOID() { - return studyOID; - } - - /** - * Sets the value of the studyOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyOID(String value) { - this.studyOID = value; - } - - /** - * Gets the value of the metaDataVersionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMetaDataVersionOID() { - return metaDataVersionOID; - } - - /** - * Sets the value of the metaDataVersionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMetaDataVersionOID(String value) { - this.metaDataVersionOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionRole.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionRole.java deleted file mode 100755 index a225cf4..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionRole.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-Role complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Role">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}RoleAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Role", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionRole { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignature.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignature.java deleted file mode 100755 index 80d4094..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignature.java +++ /dev/null @@ -1,218 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ODMcomplexTypeDefinition-Signature complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Signature">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}UserRef"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}LocationRef"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureRef"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}DateTimeStamp"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}CryptoBindingManifest" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Signature", propOrder = { - "userRef", - "locationRef", - "signatureRef", - "dateTimeStamp", - "cryptoBindingManifest" -}) -public class ODMcomplexTypeDefinitionSignature { - - @XmlElement(name = "UserRef", required = true) - protected ODMcomplexTypeDefinitionUserRef userRef; - @XmlElement(name = "LocationRef", required = true) - protected ODMcomplexTypeDefinitionLocationRef locationRef; - @XmlElement(name = "SignatureRef", required = true) - protected ODMcomplexTypeDefinitionSignatureRef signatureRef; - @XmlElement(name = "DateTimeStamp", required = true) - protected ODMcomplexTypeDefinitionDateTimeStamp dateTimeStamp; - @XmlElement(name = "CryptoBindingManifest") - protected ODMcomplexTypeDefinitionCryptoBindingManifest cryptoBindingManifest; - @XmlAttribute(name = "ID") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the userRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionUserRef } - * - */ - public ODMcomplexTypeDefinitionUserRef getUserRef() { - return userRef; - } - - /** - * Sets the value of the userRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionUserRef } - * - */ - public void setUserRef(ODMcomplexTypeDefinitionUserRef value) { - this.userRef = value; - } - - /** - * Gets the value of the locationRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionLocationRef } - * - */ - public ODMcomplexTypeDefinitionLocationRef getLocationRef() { - return locationRef; - } - - /** - * Sets the value of the locationRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionLocationRef } - * - */ - public void setLocationRef(ODMcomplexTypeDefinitionLocationRef value) { - this.locationRef = value; - } - - /** - * Gets the value of the signatureRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSignatureRef } - * - */ - public ODMcomplexTypeDefinitionSignatureRef getSignatureRef() { - return signatureRef; - } - - /** - * Sets the value of the signatureRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSignatureRef } - * - */ - public void setSignatureRef(ODMcomplexTypeDefinitionSignatureRef value) { - this.signatureRef = value; - } - - /** - * Gets the value of the dateTimeStamp property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDateTimeStamp } - * - */ - public ODMcomplexTypeDefinitionDateTimeStamp getDateTimeStamp() { - return dateTimeStamp; - } - - /** - * Sets the value of the dateTimeStamp property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDateTimeStamp } - * - */ - public void setDateTimeStamp(ODMcomplexTypeDefinitionDateTimeStamp value) { - this.dateTimeStamp = value; - } - - /** - * Gets the value of the cryptoBindingManifest property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionCryptoBindingManifest } - * - */ - public ODMcomplexTypeDefinitionCryptoBindingManifest getCryptoBindingManifest() { - return cryptoBindingManifest; - } - - /** - * Sets the value of the cryptoBindingManifest property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionCryptoBindingManifest } - * - */ - public void setCryptoBindingManifest(ODMcomplexTypeDefinitionCryptoBindingManifest value) { - this.cryptoBindingManifest = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatureDef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatureDef.java deleted file mode 100755 index 8249161..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatureDef.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-SignatureDef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-SignatureDef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Meaning"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}LegalReason"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureDefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureDefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureDefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-SignatureDef", propOrder = { - "meaning", - "legalReason" -}) -public class ODMcomplexTypeDefinitionSignatureDef { - - @XmlElement(name = "Meaning", required = true) - protected ODMcomplexTypeDefinitionMeaning meaning; - @XmlElement(name = "LegalReason", required = true) - protected ODMcomplexTypeDefinitionLegalReason legalReason; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Methodology") - protected SignMethod methodology; - - /** - * Gets the value of the meaning property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionMeaning } - * - */ - public ODMcomplexTypeDefinitionMeaning getMeaning() { - return meaning; - } - - /** - * Sets the value of the meaning property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionMeaning } - * - */ - public void setMeaning(ODMcomplexTypeDefinitionMeaning value) { - this.meaning = value; - } - - /** - * Gets the value of the legalReason property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionLegalReason } - * - */ - public ODMcomplexTypeDefinitionLegalReason getLegalReason() { - return legalReason; - } - - /** - * Sets the value of the legalReason property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionLegalReason } - * - */ - public void setLegalReason(ODMcomplexTypeDefinitionLegalReason value) { - this.legalReason = value; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = value; - } - - /** - * Gets the value of the methodology property. - * - * @return - * possible object is - * {@link SignMethod } - * - */ - public SignMethod getMethodology() { - return methodology; - } - - /** - * Sets the value of the methodology property. - * - * @param value - * allowed object is - * {@link SignMethod } - * - */ - public void setMethodology(SignMethod value) { - this.methodology = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatureRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatureRef.java deleted file mode 100755 index 44f5a69..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatureRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-SignatureRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-SignatureRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureRefAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SignatureRefAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-SignatureRef") -public class ODMcomplexTypeDefinitionSignatureRef { - - @XmlAttribute(name = "SignatureOID", required = true) - protected String signatureOID; - - /** - * Gets the value of the signatureOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSignatureOID() { - return signatureOID; - } - - /** - * Sets the value of the signatureOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSignatureOID(String value) { - this.signatureOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatures.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatures.java deleted file mode 100755 index e71670a..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSignatures.java +++ /dev/null @@ -1,76 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-Signatures complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Signatures">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Signature" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Signatures", propOrder = { - "signature" -}) -public class ODMcomplexTypeDefinitionSignatures { - - @XmlElement(name = "Signature") - protected List signature; - - /** - * Gets the value of the signature property. - * - *

- * 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 set method for the signature property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSignature().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionSignature } - * - * - */ - public List getSignature() { - if (signature == null) { - signature = new ArrayList(); - } - return this.signature; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSiteRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSiteRef.java deleted file mode 100755 index a18d5e1..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSiteRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-SiteRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-SiteRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}SiteRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SiteRefAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SiteRefAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-SiteRef") -public class ODMcomplexTypeDefinitionSiteRef { - - @XmlAttribute(name = "LocationOID", required = true) - protected String locationOID; - - /** - * Gets the value of the locationOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocationOID() { - return locationOID; - } - - /** - * Sets the value of the locationOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocationOID(String value) { - this.locationOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSourceID.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSourceID.java deleted file mode 100755 index 009a7a5..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSourceID.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-SourceID complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-SourceID">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SourceIDAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-SourceID", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionSourceID { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStateProv.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStateProv.java deleted file mode 100755 index 09b2b68..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStateProv.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-StateProv complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-StateProv">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StateProvAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-StateProv", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionStateProv { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStreetName.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStreetName.java deleted file mode 100755 index b59993e..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStreetName.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-StreetName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-StreetName">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StreetNameAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-StreetName", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionStreetName { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudy.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudy.java deleted file mode 100755 index d472b86..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudy.java +++ /dev/null @@ -1,162 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-Study complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Study">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}GlobalVariables"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}BasicDefinitions" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}MetaDataVersion" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}StudyElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Study", propOrder = { - "globalVariables", - "basicDefinitions", - "metaDataVersion" -}) -public class ODMcomplexTypeDefinitionStudy { - - @XmlElement(name = "GlobalVariables", required = true) - protected ODMcomplexTypeDefinitionGlobalVariables globalVariables; - @XmlElement(name = "BasicDefinitions") - protected ODMcomplexTypeDefinitionBasicDefinitions basicDefinitions; - @XmlElement(name = "MetaDataVersion") - protected List metaDataVersion; - @XmlAttribute(name = "OID", required = true) - protected String oid; - - /** - * Gets the value of the globalVariables property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionGlobalVariables } - * - */ - public ODMcomplexTypeDefinitionGlobalVariables getGlobalVariables() { - return globalVariables; - } - - /** - * Sets the value of the globalVariables property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionGlobalVariables } - * - */ - public void setGlobalVariables(ODMcomplexTypeDefinitionGlobalVariables value) { - this.globalVariables = value; - } - - /** - * Gets the value of the basicDefinitions property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionBasicDefinitions } - * - */ - public ODMcomplexTypeDefinitionBasicDefinitions getBasicDefinitions() { - return basicDefinitions; - } - - /** - * Sets the value of the basicDefinitions property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionBasicDefinitions } - * - */ - public void setBasicDefinitions(ODMcomplexTypeDefinitionBasicDefinitions value) { - this.basicDefinitions = value; - } - - /** - * Gets the value of the metaDataVersion property. - * - *

- * 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 set method for the metaDataVersion property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMetaDataVersion().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionMetaDataVersion } - * - * - */ - public List getMetaDataVersion() { - if (metaDataVersion == null) { - metaDataVersion = new ArrayList(); - } - return this.metaDataVersion; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyDescription.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyDescription.java deleted file mode 100755 index 8899371..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyDescription.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-StudyDescription complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-StudyDescription">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyDescriptionAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-StudyDescription", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionStudyDescription { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventData.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventData.java deleted file mode 100755 index 05f9072..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventData.java +++ /dev/null @@ -1,417 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionAuditLogs; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionDiscrepancyNotes; - - -/** - *

Java class for ODMcomplexTypeDefinition-StudyEventData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-StudyEventData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecord" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Signature" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Annotation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FormData" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventDataAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventDataAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-StudyEventData", propOrder = { - "auditRecord", - "signature", - "annotation", - "formData", - "studyEventDataElementExtension" -}) -public class ODMcomplexTypeDefinitionStudyEventData { - - @XmlElement(name = "AuditRecord") - protected ODMcomplexTypeDefinitionAuditRecord auditRecord; - @XmlElement(name = "Signature") - protected ODMcomplexTypeDefinitionSignature signature; - @XmlElement(name = "Annotation") - protected List annotation; - @XmlElement(name = "FormData") - protected List formData; - @XmlElements({ - @XmlElement(name = "AuditLogs", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionAuditLogs.class), - @XmlElement(name = "DiscrepancyNotes", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionDiscrepancyNotes.class) - }) - protected List studyEventDataElementExtension; - @XmlAttribute(name = "StudyEventOID", required = true) - protected String studyEventOID; - @XmlAttribute(name = "StudyEventRepeatKey") - protected String studyEventRepeatKey; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "StudyEventLocation", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String studyEventLocation; - @XmlAttribute(name = "StartDate", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String startDate; - @XmlAttribute(name = "EndDate", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String endDate; - @XmlAttribute(name = "Status", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String status; - @XmlAttribute(name = "SubjectAgeAtEvent", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected BigInteger subjectAgeAtEvent; - - /** - * Gets the value of the auditRecord property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public ODMcomplexTypeDefinitionAuditRecord getAuditRecord() { - return auditRecord; - } - - /** - * Sets the value of the auditRecord property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public void setAuditRecord(ODMcomplexTypeDefinitionAuditRecord value) { - this.auditRecord = value; - } - - /** - * Gets the value of the signature property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public ODMcomplexTypeDefinitionSignature getSignature() { - return signature; - } - - /** - * Sets the value of the signature property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public void setSignature(ODMcomplexTypeDefinitionSignature value) { - this.signature = value; - } - - /** - * Gets the value of the annotation property. - * - *

- * 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 set method for the annotation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAnnotation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAnnotation } - * - * - */ - public List getAnnotation() { - if (annotation == null) { - annotation = new ArrayList(); - } - return this.annotation; - } - - /** - * Gets the value of the formData property. - * - *

- * 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 set method for the formData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFormData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionFormData } - * - * - */ - public List getFormData() { - if (formData == null) { - formData = new ArrayList(); - } - return this.formData; - } - - /** - * Gets the value of the studyEventDataElementExtension property. - * - *

- * 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 set method for the studyEventDataElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyEventDataElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionAuditLogs } - * {@link OCodmComplexTypeDefinitionDiscrepancyNotes } - * - * - */ - public List getStudyEventDataElementExtension() { - if (studyEventDataElementExtension == null) { - studyEventDataElementExtension = new ArrayList(); - } - return this.studyEventDataElementExtension; - } - - /** - * Gets the value of the studyEventOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventOID() { - return studyEventOID; - } - - /** - * Sets the value of the studyEventOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventOID(String value) { - this.studyEventOID = value; - } - - /** - * Gets the value of the studyEventRepeatKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventRepeatKey() { - return studyEventRepeatKey; - } - - /** - * Sets the value of the studyEventRepeatKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventRepeatKey(String value) { - this.studyEventRepeatKey = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the studyEventLocation property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventLocation() { - return studyEventLocation; - } - - /** - * Sets the value of the studyEventLocation property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventLocation(String value) { - this.studyEventLocation = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartDate(String value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEndDate(String value) { - this.endDate = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the subjectAgeAtEvent property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getSubjectAgeAtEvent() { - return subjectAgeAtEvent; - } - - /** - * Sets the value of the subjectAgeAtEvent property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setSubjectAgeAtEvent(BigInteger value) { - this.subjectAgeAtEvent = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventDef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventDef.java deleted file mode 100755 index 28d57cc..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventDef.java +++ /dev/null @@ -1,271 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionEventDefinitionDetails; - - -/** - *

Java class for ODMcomplexTypeDefinition-StudyEventDef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-StudyEventDef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Description" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FormRef" maxOccurs="unbounded"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventDefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventDefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventDefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-StudyEventDef", propOrder = { - "description", - "formRef", - "studyEventDefElementExtension" -}) -public class ODMcomplexTypeDefinitionStudyEventDef { - - @XmlElement(name = "Description") - protected ODMcomplexTypeDefinitionDescription description; - @XmlElement(name = "FormRef", required = true) - protected List formRef; - @XmlElement(name = "EventDefinitionDetails", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected List studyEventDefElementExtension; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "Repeating", required = true) - protected YesOrNo repeating; - @XmlAttribute(name = "Type", required = true) - protected EventType type; - @XmlAttribute(name = "Category") - protected String category; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public ODMcomplexTypeDefinitionDescription getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDescription } - * - */ - public void setDescription(ODMcomplexTypeDefinitionDescription value) { - this.description = value; - } - - /** - * Gets the value of the formRef property. - * - *

- * 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 set method for the formRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFormRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionFormRef } - * - * - */ - public List getFormRef() { - if (formRef == null) { - formRef = new ArrayList(); - } - return this.formRef; - } - - /** - * Gets the value of the studyEventDefElementExtension property. - * - *

- * 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 set method for the studyEventDefElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyEventDefElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionEventDefinitionDetails } - * - * - */ - public List getStudyEventDefElementExtension() { - if (studyEventDefElementExtension == null) { - studyEventDefElementExtension = new ArrayList(); - } - return this.studyEventDefElementExtension; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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 repeating property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getRepeating() { - return repeating; - } - - /** - * Sets the value of the repeating property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setRepeating(YesOrNo value) { - this.repeating = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link EventType } - * - */ - public EventType getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link EventType } - * - */ - public void setType(EventType value) { - this.type = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventRef.java deleted file mode 100755 index 1ef89fc..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyEventRef.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-StudyEventRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-StudyEventRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}RefAttributeSharedDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventRefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-StudyEventRef") -public class ODMcomplexTypeDefinitionStudyEventRef { - - @XmlAttribute(name = "OrderNumber") - protected BigInteger orderNumber; - @XmlAttribute(name = "Mandatory", required = true) - protected YesOrNo mandatory; - @XmlAttribute(name = "CollectionExceptionConditionOID") - protected String collectionExceptionConditionOID; - @XmlAttribute(name = "StudyEventOID", required = true) - protected String studyEventOID; - - /** - * Gets the value of the orderNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOrderNumber() { - return orderNumber; - } - - /** - * Sets the value of the orderNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOrderNumber(BigInteger value) { - this.orderNumber = value; - } - - /** - * Gets the value of the mandatory property. - * - * @return - * possible object is - * {@link YesOrNo } - * - */ - public YesOrNo getMandatory() { - return mandatory; - } - - /** - * Sets the value of the mandatory property. - * - * @param value - * allowed object is - * {@link YesOrNo } - * - */ - public void setMandatory(YesOrNo value) { - this.mandatory = value; - } - - /** - * Gets the value of the collectionExceptionConditionOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCollectionExceptionConditionOID() { - return collectionExceptionConditionOID; - } - - /** - * Sets the value of the collectionExceptionConditionOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCollectionExceptionConditionOID(String value) { - this.collectionExceptionConditionOID = value; - } - - /** - * Gets the value of the studyEventOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventOID() { - return studyEventOID; - } - - /** - * Sets the value of the studyEventOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventOID(String value) { - this.studyEventOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyName.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyName.java deleted file mode 100755 index 482d34a..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionStudyName.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ODMcomplexTypeDefinition-StudyName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-StudyName">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>name">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}StudyNameAttributeExtension"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-StudyName", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionStudyName { - - @XmlValue - protected String 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; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSubjectData.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSubjectData.java deleted file mode 100755 index c743b6a..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSubjectData.java +++ /dev/null @@ -1,503 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import java.math.BigInteger; -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionAuditLogs; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionDiscrepancyNotes; -import org.openclinica.ns.odm_ext_v130.v3.OCodmComplexTypeDefinitionSubjectGroupData; - - -/** - *

Java class for ODMcomplexTypeDefinition-SubjectData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-SubjectData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}AuditRecord" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Signature" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}InvestigatorRef" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}SiteRef" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Annotation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}StudyEventData" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}SubjectDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SubjectDataAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SubjectDataAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-SubjectData", propOrder = { - "auditRecord", - "signature", - "investigatorRef", - "siteRef", - "annotation", - "studyEventData", - "subjectDataElementExtension" -}) -public class ODMcomplexTypeDefinitionSubjectData { - - @XmlElement(name = "AuditRecord") - protected ODMcomplexTypeDefinitionAuditRecord auditRecord; - @XmlElement(name = "Signature") - protected ODMcomplexTypeDefinitionSignature signature; - @XmlElement(name = "InvestigatorRef") - protected ODMcomplexTypeDefinitionInvestigatorRef investigatorRef; - @XmlElement(name = "SiteRef") - protected ODMcomplexTypeDefinitionSiteRef siteRef; - @XmlElement(name = "Annotation") - protected List annotation; - @XmlElement(name = "StudyEventData") - protected List studyEventData; - @XmlElements({ - @XmlElement(name = "SubjectGroupData", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionSubjectGroupData.class), - @XmlElement(name = "AuditLogs", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionAuditLogs.class), - @XmlElement(name = "DiscrepancyNotes", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", type = OCodmComplexTypeDefinitionDiscrepancyNotes.class) - }) - protected List subjectDataElementExtension; - @XmlAttribute(name = "SubjectKey", required = true) - protected String subjectKey; - @XmlAttribute(name = "TransactionType") - protected TransactionType transactionType; - @XmlAttribute(name = "StudySubjectID", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String studySubjectID; - @XmlAttribute(name = "UniqueIdentifier", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String uniqueIdentifier; - @XmlAttribute(name = "Status", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String status; - @XmlAttribute(name = "SecondaryID", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String secondaryID; - @XmlAttribute(name = "DateOfBirth", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected XMLGregorianCalendar dateOfBirth; - @XmlAttribute(name = "YearOfBirth", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected BigInteger yearOfBirth; - @XmlAttribute(name = "Sex", namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1") - protected String sex; - - /** - * Gets the value of the auditRecord property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public ODMcomplexTypeDefinitionAuditRecord getAuditRecord() { - return auditRecord; - } - - /** - * Sets the value of the auditRecord property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public void setAuditRecord(ODMcomplexTypeDefinitionAuditRecord value) { - this.auditRecord = value; - } - - /** - * Gets the value of the signature property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public ODMcomplexTypeDefinitionSignature getSignature() { - return signature; - } - - /** - * Sets the value of the signature property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSignature } - * - */ - public void setSignature(ODMcomplexTypeDefinitionSignature value) { - this.signature = value; - } - - /** - * Gets the value of the investigatorRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionInvestigatorRef } - * - */ - public ODMcomplexTypeDefinitionInvestigatorRef getInvestigatorRef() { - return investigatorRef; - } - - /** - * Sets the value of the investigatorRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionInvestigatorRef } - * - */ - public void setInvestigatorRef(ODMcomplexTypeDefinitionInvestigatorRef value) { - this.investigatorRef = value; - } - - /** - * Gets the value of the siteRef property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionSiteRef } - * - */ - public ODMcomplexTypeDefinitionSiteRef getSiteRef() { - return siteRef; - } - - /** - * Sets the value of the siteRef property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionSiteRef } - * - */ - public void setSiteRef(ODMcomplexTypeDefinitionSiteRef value) { - this.siteRef = value; - } - - /** - * Gets the value of the annotation property. - * - *

- * 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 set method for the annotation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAnnotation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAnnotation } - * - * - */ - public List getAnnotation() { - if (annotation == null) { - annotation = new ArrayList(); - } - return this.annotation; - } - - /** - * Gets the value of the studyEventData property. - * - *

- * 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 set method for the studyEventData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyEventData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionStudyEventData } - * - * - */ - public List getStudyEventData() { - if (studyEventData == null) { - studyEventData = new ArrayList(); - } - return this.studyEventData; - } - - /** - * Gets the value of the subjectDataElementExtension property. - * - *

- * 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 set method for the subjectDataElementExtension property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSubjectDataElementExtension().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionSubjectGroupData } - * {@link OCodmComplexTypeDefinitionAuditLogs } - * {@link OCodmComplexTypeDefinitionDiscrepancyNotes } - * - * - */ - public List getSubjectDataElementExtension() { - if (subjectDataElementExtension == null) { - subjectDataElementExtension = new ArrayList(); - } - return this.subjectDataElementExtension; - } - - /** - * Gets the value of the subjectKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubjectKey() { - return subjectKey; - } - - /** - * Sets the value of the subjectKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubjectKey(String value) { - this.subjectKey = value; - } - - /** - * Gets the value of the transactionType property. - * - * @return - * possible object is - * {@link TransactionType } - * - */ - public TransactionType getTransactionType() { - return transactionType; - } - - /** - * Sets the value of the transactionType property. - * - * @param value - * allowed object is - * {@link TransactionType } - * - */ - public void setTransactionType(TransactionType value) { - this.transactionType = value; - } - - /** - * Gets the value of the studySubjectID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudySubjectID() { - return studySubjectID; - } - - /** - * Sets the value of the studySubjectID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudySubjectID(String value) { - this.studySubjectID = value; - } - - /** - * Gets the value of the uniqueIdentifier property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUniqueIdentifier() { - return uniqueIdentifier; - } - - /** - * Sets the value of the uniqueIdentifier property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUniqueIdentifier(String value) { - this.uniqueIdentifier = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the secondaryID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryID() { - return secondaryID; - } - - /** - * Sets the value of the secondaryID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryID(String value) { - this.secondaryID = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the yearOfBirth property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getYearOfBirth() { - return yearOfBirth; - } - - /** - * Sets the value of the yearOfBirth property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setYearOfBirth(BigInteger value) { - this.yearOfBirth = value; - } - - /** - * Gets the value of the sex property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSex() { - return sex; - } - - /** - * Sets the value of the sex property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSex(String value) { - this.sex = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSymbol.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSymbol.java deleted file mode 100755 index f85cdad..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionSymbol.java +++ /dev/null @@ -1,78 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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; - - -/** - *

Java class for ODMcomplexTypeDefinition-Symbol complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-Symbol">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}TranslatedText" maxOccurs="unbounded"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}SymbolElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}SymbolAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-Symbol", propOrder = { - "translatedText" -}) -public class ODMcomplexTypeDefinitionSymbol { - - @XmlElement(name = "TranslatedText", required = true) - protected List translatedText; - - /** - * Gets the value of the translatedText property. - * - *

- * 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 set method for the translatedText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTranslatedText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionTranslatedText } - * - * - */ - public List getTranslatedText() { - if (translatedText == null) { - translatedText = new ArrayList(); - } - return this.translatedText; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionTranslatedText.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionTranslatedText.java deleted file mode 100755 index 090d004..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionTranslatedText.java +++ /dev/null @@ -1,100 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ODMcomplexTypeDefinition-TranslatedText complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-TranslatedText">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}TranslatedTextAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}TranslatedTextAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-TranslatedText", propOrder = { - "value" -}) -public class ODMcomplexTypeDefinitionTranslatedText { - - @XmlValue - protected String value; - @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlSchemaType(name = "language") - protected String lang; - - /** - * 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; - } - - /** - * Gets the value of the lang property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLang() { - return lang; - } - - /** - * Sets the value of the lang property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLang(String value) { - this.lang = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionUser.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionUser.java deleted file mode 100755 index 9271d00..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionUser.java +++ /dev/null @@ -1,521 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-User complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-User">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}LoginName" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}DisplayName" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FullName" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}FirstName" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}LastName" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Organization" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Address" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Email" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Picture" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Pager" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Fax" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Phone" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}LocationRef" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Certificate" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}UserElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}UserAttributeDefinition"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}UserAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-User", propOrder = { - "loginName", - "displayName", - "fullName", - "firstName", - "lastName", - "organization", - "address", - "email", - "picture", - "pager", - "fax", - "phone", - "locationRef", - "certificate" -}) -public class ODMcomplexTypeDefinitionUser { - - @XmlElement(name = "LoginName") - protected ODMcomplexTypeDefinitionLoginName loginName; - @XmlElement(name = "DisplayName") - protected ODMcomplexTypeDefinitionDisplayName displayName; - @XmlElement(name = "FullName") - protected ODMcomplexTypeDefinitionFullName fullName; - @XmlElement(name = "FirstName") - protected ODMcomplexTypeDefinitionFirstName firstName; - @XmlElement(name = "LastName") - protected ODMcomplexTypeDefinitionLastName lastName; - @XmlElement(name = "Organization") - protected ODMcomplexTypeDefinitionOrganization organization; - @XmlElement(name = "Address") - protected List address; - @XmlElement(name = "Email") - protected List email; - @XmlElement(name = "Picture") - protected ODMcomplexTypeDefinitionPicture picture; - @XmlElement(name = "Pager") - protected ODMcomplexTypeDefinitionPager pager; - @XmlElement(name = "Fax") - protected List fax; - @XmlElement(name = "Phone") - protected List phone; - @XmlElement(name = "LocationRef") - protected List locationRef; - @XmlElement(name = "Certificate") - protected List certificate; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "UserType") - protected UserType userType; - - /** - * Gets the value of the loginName property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionLoginName } - * - */ - public ODMcomplexTypeDefinitionLoginName getLoginName() { - return loginName; - } - - /** - * Sets the value of the loginName property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionLoginName } - * - */ - public void setLoginName(ODMcomplexTypeDefinitionLoginName value) { - this.loginName = value; - } - - /** - * Gets the value of the displayName property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDisplayName } - * - */ - public ODMcomplexTypeDefinitionDisplayName getDisplayName() { - return displayName; - } - - /** - * Sets the value of the displayName property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDisplayName } - * - */ - public void setDisplayName(ODMcomplexTypeDefinitionDisplayName value) { - this.displayName = value; - } - - /** - * Gets the value of the fullName property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionFullName } - * - */ - public ODMcomplexTypeDefinitionFullName getFullName() { - return fullName; - } - - /** - * Sets the value of the fullName property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionFullName } - * - */ - public void setFullName(ODMcomplexTypeDefinitionFullName value) { - this.fullName = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionFirstName } - * - */ - public ODMcomplexTypeDefinitionFirstName getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionFirstName } - * - */ - public void setFirstName(ODMcomplexTypeDefinitionFirstName value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionLastName } - * - */ - public ODMcomplexTypeDefinitionLastName getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionLastName } - * - */ - public void setLastName(ODMcomplexTypeDefinitionLastName value) { - this.lastName = value; - } - - /** - * Gets the value of the organization property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionOrganization } - * - */ - public ODMcomplexTypeDefinitionOrganization getOrganization() { - return organization; - } - - /** - * Sets the value of the organization property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionOrganization } - * - */ - public void setOrganization(ODMcomplexTypeDefinitionOrganization value) { - this.organization = value; - } - - /** - * Gets the value of the address property. - * - *

- * 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 set method for the address property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAddress().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionAddress } - * - * - */ - public List getAddress() { - if (address == null) { - address = new ArrayList(); - } - return this.address; - } - - /** - * Gets the value of the email property. - * - *

- * 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 set method for the email property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEmail().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionEmail } - * - * - */ - public List getEmail() { - if (email == null) { - email = new ArrayList(); - } - return this.email; - } - - /** - * Gets the value of the picture property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionPicture } - * - */ - public ODMcomplexTypeDefinitionPicture getPicture() { - return picture; - } - - /** - * Sets the value of the picture property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionPicture } - * - */ - public void setPicture(ODMcomplexTypeDefinitionPicture value) { - this.picture = value; - } - - /** - * Gets the value of the pager property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionPager } - * - */ - public ODMcomplexTypeDefinitionPager getPager() { - return pager; - } - - /** - * Sets the value of the pager property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionPager } - * - */ - public void setPager(ODMcomplexTypeDefinitionPager value) { - this.pager = value; - } - - /** - * Gets the value of the fax property. - * - *

- * 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 set method for the fax property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFax().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionFax } - * - * - */ - public List getFax() { - if (fax == null) { - fax = new ArrayList(); - } - return this.fax; - } - - /** - * Gets the value of the phone property. - * - *

- * 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 set method for the phone property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPhone().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionPhone } - * - * - */ - public List getPhone() { - if (phone == null) { - phone = new ArrayList(); - } - return this.phone; - } - - /** - * Gets the value of the locationRef property. - * - *

- * 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 set method for the locationRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLocationRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionLocationRef } - * - * - */ - public List getLocationRef() { - if (locationRef == null) { - locationRef = new ArrayList(); - } - return this.locationRef; - } - - /** - * Gets the value of the certificate property. - * - *

- * 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 set method for the certificate property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCertificate().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionCertificate } - * - * - */ - public List getCertificate() { - if (certificate == null) { - certificate = new ArrayList(); - } - return this.certificate; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = value; - } - - /** - * Gets the value of the userType property. - * - * @return - * possible object is - * {@link UserType } - * - */ - public UserType getUserType() { - return userType; - } - - /** - * Sets the value of the userType property. - * - * @param value - * allowed object is - * {@link UserType } - * - */ - public void setUserType(UserType value) { - this.userType = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionUserRef.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionUserRef.java deleted file mode 100755 index e791663..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ODMcomplexTypeDefinitionUserRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ODMcomplexTypeDefinition-UserRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ODMcomplexTypeDefinition-UserRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.cdisc.org/ns/odm/v1.3}UserRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}UserRefAttributeExtension"/>
- *       <attGroup ref="{http://www.cdisc.org/ns/odm/v1.3}UserRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ODMcomplexTypeDefinition-UserRef") -public class ODMcomplexTypeDefinitionUserRef { - - @XmlAttribute(name = "UserOID", required = true) - protected String userOID; - - /** - * Gets the value of the userOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserOID() { - return userOID; - } - - /** - * Sets the value of the userOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserOID(String value) { - this.userOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ObjectFactory.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ObjectFactory.java deleted file mode 100755 index dec0881..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/ObjectFactory.java +++ /dev/null @@ -1,2130 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -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.cdisk.odm.jaxb 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. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _User_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "User"); - private final static QName _SourceID_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "SourceID"); - private final static QName _LastName_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "LastName"); - private final static QName _ItemRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemRef"); - private final static QName _EnumeratedItem_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "EnumeratedItem"); - private final static QName _CodeListItem_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "CodeListItem"); - private final static QName _ItemDataPartialDatetime_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataPartialDatetime"); - private final static QName _ItemDataDurationDatetime_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataDurationDatetime"); - private final static QName _ClinicalData_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ClinicalData"); - private final static QName _FlagValue_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "FlagValue"); - private final static QName _ItemDataInteger_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataInteger"); - private final static QName _FormalExpression_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "FormalExpression"); - private final static QName _FlagType_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "FlagType"); - private final static QName _Country_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Country"); - private final static QName _Comment_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Comment"); - private final static QName _CodeListRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "CodeListRef"); - private final static QName _StudyEventDef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "StudyEventDef"); - private final static QName _Email_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Email"); - private final static QName _StreetName_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "StreetName"); - private final static QName _DateTimeStamp_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "DateTimeStamp"); - private final static QName _SubjectData_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "SubjectData"); - private final static QName _ItemGroupData_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemGroupData"); - private final static QName _Certificate_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Certificate"); - private final static QName _SignatureDef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "SignatureDef"); - private final static QName _ItemDataHexBinary_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataHexBinary"); - private final static QName _KeySet_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "KeySet"); - private final static QName _MethodDef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "MethodDef"); - private final static QName _ItemDataBoolean_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataBoolean"); - private final static QName _LocationRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "LocationRef"); - private final static QName _Association_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Association"); - private final static QName _ItemDataString_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataString"); - private final static QName _SiteRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "SiteRef"); - private final static QName _InvestigatorRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "InvestigatorRef"); - private final static QName _ItemDataIncompleteDatetime_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataIncompleteDatetime"); - private final static QName _GlobalVariables_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "GlobalVariables"); - private final static QName _CodeList_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "CodeList"); - private final static QName _ItemDataHexFloat_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataHexFloat"); - private final static QName _FullName_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "FullName"); - private final static QName _Question_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Question"); - private final static QName _AdminData_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "AdminData"); - private final static QName _ExternalQuestion_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ExternalQuestion"); - private final static QName _LegalReason_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "LegalReason"); - private final static QName _AuditRecord_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "AuditRecord"); - private final static QName _ItemDataDouble_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataDouble"); - private final static QName _FirstName_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "FirstName"); - private final static QName _MetaDataVersionRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "MetaDataVersionRef"); - private final static QName _Flag_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Flag"); - private final static QName _ArchiveLayout_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ArchiveLayout"); - private final static QName _Picture_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Picture"); - private final static QName _City_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "City"); - private final static QName _ItemGroupRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemGroupRef"); - private final static QName _Address_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Address"); - private final static QName _Annotation_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Annotation"); - private final static QName _Decode_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Decode"); - private final static QName _ItemDataAny_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataAny"); - private final static QName _Role_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Role"); - private final static QName _FormDef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "FormDef"); - private final static QName _ItemDataPartialDate_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataPartialDate"); - private final static QName _LoginName_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "LoginName"); - private final static QName _ReferenceData_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ReferenceData"); - private final static QName _ItemDef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDef"); - private final static QName _ItemDataBase64Float_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataBase64Float"); - private final static QName _ItemDataTime_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataTime"); - private final static QName _ProtocolName_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ProtocolName"); - private final static QName _Organization_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Organization"); - private final static QName _Meaning_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Meaning"); - private final static QName _Protocol_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Protocol"); - private final static QName _MeasurementUnit_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "MeasurementUnit"); - private final static QName _Pager_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Pager"); - private final static QName _MeasurementUnitRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "MeasurementUnitRef"); - private final static QName _StudyEventData_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "StudyEventData"); - private final static QName _RangeCheck_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "RangeCheck"); - private final static QName _Symbol_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Symbol"); - private final static QName _StudyDescription_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "StudyDescription"); - private final static QName _ErrorMessage_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ErrorMessage"); - private final static QName _StateProv_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "StateProv"); - private final static QName _UserRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "UserRef"); - private final static QName _CheckValue_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "CheckValue"); - private final static QName _ExternalCodeList_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ExternalCodeList"); - private final static QName _Signatures_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Signatures"); - private final static QName _ItemDataPartialTime_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataPartialTime"); - private final static QName _Phone_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Phone"); - private final static QName _Signature_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Signature"); - private final static QName _ConditionDef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ConditionDef"); - private final static QName _ReasonForChange_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ReasonForChange"); - private final static QName _StudyEventRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "StudyEventRef"); - private final static QName _OtherText_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "OtherText"); - private final static QName _Study_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Study"); - private final static QName _ItemDataDate_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataDate"); - private final static QName _ArchiveLayoutRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ArchiveLayoutRef"); - private final static QName _ItemDataFloat_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataFloat"); - private final static QName _Annotations_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Annotations"); - private final static QName _Include_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Include"); - private final static QName _ItemDataDatetime_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataDatetime"); - private final static QName _FormData_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "FormData"); - private final static QName _Fax_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Fax"); - private final static QName _MetaDataVersion_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "MetaDataVersion"); - private final static QName _StudyName_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "StudyName"); - private final static QName _Description_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Description"); - private final static QName _CryptoBindingManifest_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "CryptoBindingManifest"); - private final static QName _ItemData_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemData"); - private final static QName _TranslatedText_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "TranslatedText"); - private final static QName _DisplayName_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "DisplayName"); - private final static QName _Location_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Location"); - private final static QName _Presentation_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Presentation"); - private final static QName _BasicDefinitions_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "BasicDefinitions"); - private final static QName _ItemGroupDef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemGroupDef"); - private final static QName _ItemDataURI_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataURI"); - private final static QName _Alias_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "Alias"); - private final static QName _ItemDataIntervalDatetime_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataIntervalDatetime"); - private final static QName _AuditRecords_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "AuditRecords"); - private final static QName _PostalCode_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "PostalCode"); - private final static QName _SignatureRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "SignatureRef"); - private final static QName _FormRef_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "FormRef"); - private final static QName _ImputationMethod_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ImputationMethod"); - private final static QName _ItemDataBase64Binary_QNAME = new QName("http://www.cdisc.org/ns/odm/v1.3", "ItemDataBase64Binary"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cdisk.odm.jaxb - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionUser } - * - */ - public ODMcomplexTypeDefinitionUser createODMcomplexTypeDefinitionUser() { - return new ODMcomplexTypeDefinitionUser(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionEnumeratedItem } - * - */ - public ODMcomplexTypeDefinitionEnumeratedItem createODMcomplexTypeDefinitionEnumeratedItem() { - return new ODMcomplexTypeDefinitionEnumeratedItem(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemRef } - * - */ - public ODMcomplexTypeDefinitionItemRef createODMcomplexTypeDefinitionItemRef() { - return new ODMcomplexTypeDefinitionItemRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionLastName } - * - */ - public ODMcomplexTypeDefinitionLastName createODMcomplexTypeDefinitionLastName() { - return new ODMcomplexTypeDefinitionLastName(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionSourceID } - * - */ - public ODMcomplexTypeDefinitionSourceID createODMcomplexTypeDefinitionSourceID() { - return new ODMcomplexTypeDefinitionSourceID(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataPartialDatetime } - * - */ - public ODMcomplexTypeDefinitionItemDataPartialDatetime createODMcomplexTypeDefinitionItemDataPartialDatetime() { - return new ODMcomplexTypeDefinitionItemDataPartialDatetime(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionCodeListItem } - * - */ - public ODMcomplexTypeDefinitionCodeListItem createODMcomplexTypeDefinitionCodeListItem() { - return new ODMcomplexTypeDefinitionCodeListItem(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataInteger } - * - */ - public ODMcomplexTypeDefinitionItemDataInteger createODMcomplexTypeDefinitionItemDataInteger() { - return new ODMcomplexTypeDefinitionItemDataInteger(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFlagValue } - * - */ - public ODMcomplexTypeDefinitionFlagValue createODMcomplexTypeDefinitionFlagValue() { - return new ODMcomplexTypeDefinitionFlagValue(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionClinicalData } - * - */ - public ODMcomplexTypeDefinitionClinicalData createODMcomplexTypeDefinitionClinicalData() { - return new ODMcomplexTypeDefinitionClinicalData(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataDurationDatetime } - * - */ - public ODMcomplexTypeDefinitionItemDataDurationDatetime createODMcomplexTypeDefinitionItemDataDurationDatetime() { - return new ODMcomplexTypeDefinitionItemDataDurationDatetime(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFlagType } - * - */ - public ODMcomplexTypeDefinitionFlagType createODMcomplexTypeDefinitionFlagType() { - return new ODMcomplexTypeDefinitionFlagType(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFormalExpression } - * - */ - public ODMcomplexTypeDefinitionFormalExpression createODMcomplexTypeDefinitionFormalExpression() { - return new ODMcomplexTypeDefinitionFormalExpression(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionComment } - * - */ - public ODMcomplexTypeDefinitionComment createODMcomplexTypeDefinitionComment() { - return new ODMcomplexTypeDefinitionComment(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionCountry } - * - */ - public ODMcomplexTypeDefinitionCountry createODMcomplexTypeDefinitionCountry() { - return new ODMcomplexTypeDefinitionCountry(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionDateTimeStamp } - * - */ - public ODMcomplexTypeDefinitionDateTimeStamp createODMcomplexTypeDefinitionDateTimeStamp() { - return new ODMcomplexTypeDefinitionDateTimeStamp(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionEmail } - * - */ - public ODMcomplexTypeDefinitionEmail createODMcomplexTypeDefinitionEmail() { - return new ODMcomplexTypeDefinitionEmail(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionStreetName } - * - */ - public ODMcomplexTypeDefinitionStreetName createODMcomplexTypeDefinitionStreetName() { - return new ODMcomplexTypeDefinitionStreetName(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionCodeListRef } - * - */ - public ODMcomplexTypeDefinitionCodeListRef createODMcomplexTypeDefinitionCodeListRef() { - return new ODMcomplexTypeDefinitionCodeListRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionStudyEventDef } - * - */ - public ODMcomplexTypeDefinitionStudyEventDef createODMcomplexTypeDefinitionStudyEventDef() { - return new ODMcomplexTypeDefinitionStudyEventDef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataHexBinary } - * - */ - public ODMcomplexTypeDefinitionItemDataHexBinary createODMcomplexTypeDefinitionItemDataHexBinary() { - return new ODMcomplexTypeDefinitionItemDataHexBinary(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionKeySet } - * - */ - public ODMcomplexTypeDefinitionKeySet createODMcomplexTypeDefinitionKeySet() { - return new ODMcomplexTypeDefinitionKeySet(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionMethodDef } - * - */ - public ODMcomplexTypeDefinitionMethodDef createODMcomplexTypeDefinitionMethodDef() { - return new ODMcomplexTypeDefinitionMethodDef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionSignatureDef } - * - */ - public ODMcomplexTypeDefinitionSignatureDef createODMcomplexTypeDefinitionSignatureDef() { - return new ODMcomplexTypeDefinitionSignatureDef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionCertificate } - * - */ - public ODMcomplexTypeDefinitionCertificate createODMcomplexTypeDefinitionCertificate() { - return new ODMcomplexTypeDefinitionCertificate(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemGroupData } - * - */ - public ODMcomplexTypeDefinitionItemGroupData createODMcomplexTypeDefinitionItemGroupData() { - return new ODMcomplexTypeDefinitionItemGroupData(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionSubjectData } - * - */ - public ODMcomplexTypeDefinitionSubjectData createODMcomplexTypeDefinitionSubjectData() { - return new ODMcomplexTypeDefinitionSubjectData(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionSiteRef } - * - */ - public ODMcomplexTypeDefinitionSiteRef createODMcomplexTypeDefinitionSiteRef() { - return new ODMcomplexTypeDefinitionSiteRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataString } - * - */ - public ODMcomplexTypeDefinitionItemDataString createODMcomplexTypeDefinitionItemDataString() { - return new ODMcomplexTypeDefinitionItemDataString(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionLocationRef } - * - */ - public ODMcomplexTypeDefinitionLocationRef createODMcomplexTypeDefinitionLocationRef() { - return new ODMcomplexTypeDefinitionLocationRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionAssociation } - * - */ - public ODMcomplexTypeDefinitionAssociation createODMcomplexTypeDefinitionAssociation() { - return new ODMcomplexTypeDefinitionAssociation(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataBoolean } - * - */ - public ODMcomplexTypeDefinitionItemDataBoolean createODMcomplexTypeDefinitionItemDataBoolean() { - return new ODMcomplexTypeDefinitionItemDataBoolean(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataHexFloat } - * - */ - public ODMcomplexTypeDefinitionItemDataHexFloat createODMcomplexTypeDefinitionItemDataHexFloat() { - return new ODMcomplexTypeDefinitionItemDataHexFloat(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionCodeList } - * - */ - public ODMcomplexTypeDefinitionCodeList createODMcomplexTypeDefinitionCodeList() { - return new ODMcomplexTypeDefinitionCodeList(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataIncompleteDatetime } - * - */ - public ODMcomplexTypeDefinitionItemDataIncompleteDatetime createODMcomplexTypeDefinitionItemDataIncompleteDatetime() { - return new ODMcomplexTypeDefinitionItemDataIncompleteDatetime(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionGlobalVariables } - * - */ - public ODMcomplexTypeDefinitionGlobalVariables createODMcomplexTypeDefinitionGlobalVariables() { - return new ODMcomplexTypeDefinitionGlobalVariables(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionInvestigatorRef } - * - */ - public ODMcomplexTypeDefinitionInvestigatorRef createODMcomplexTypeDefinitionInvestigatorRef() { - return new ODMcomplexTypeDefinitionInvestigatorRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionExternalQuestion } - * - */ - public ODMcomplexTypeDefinitionExternalQuestion createODMcomplexTypeDefinitionExternalQuestion() { - return new ODMcomplexTypeDefinitionExternalQuestion(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFullName } - * - */ - public ODMcomplexTypeDefinitionFullName createODMcomplexTypeDefinitionFullName() { - return new ODMcomplexTypeDefinitionFullName(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionAdminData } - * - */ - public ODMcomplexTypeDefinitionAdminData createODMcomplexTypeDefinitionAdminData() { - return new ODMcomplexTypeDefinitionAdminData(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionQuestion } - * - */ - public ODMcomplexTypeDefinitionQuestion createODMcomplexTypeDefinitionQuestion() { - return new ODMcomplexTypeDefinitionQuestion(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataDouble } - * - */ - public ODMcomplexTypeDefinitionItemDataDouble createODMcomplexTypeDefinitionItemDataDouble() { - return new ODMcomplexTypeDefinitionItemDataDouble(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFirstName } - * - */ - public ODMcomplexTypeDefinitionFirstName createODMcomplexTypeDefinitionFirstName() { - return new ODMcomplexTypeDefinitionFirstName(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionAuditRecord } - * - */ - public ODMcomplexTypeDefinitionAuditRecord createODMcomplexTypeDefinitionAuditRecord() { - return new ODMcomplexTypeDefinitionAuditRecord(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionLegalReason } - * - */ - public ODMcomplexTypeDefinitionLegalReason createODMcomplexTypeDefinitionLegalReason() { - return new ODMcomplexTypeDefinitionLegalReason(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionPicture } - * - */ - public ODMcomplexTypeDefinitionPicture createODMcomplexTypeDefinitionPicture() { - return new ODMcomplexTypeDefinitionPicture(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionArchiveLayout } - * - */ - public ODMcomplexTypeDefinitionArchiveLayout createODMcomplexTypeDefinitionArchiveLayout() { - return new ODMcomplexTypeDefinitionArchiveLayout(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFlag } - * - */ - public ODMcomplexTypeDefinitionFlag createODMcomplexTypeDefinitionFlag() { - return new ODMcomplexTypeDefinitionFlag(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionMetaDataVersionRef } - * - */ - public ODMcomplexTypeDefinitionMetaDataVersionRef createODMcomplexTypeDefinitionMetaDataVersionRef() { - return new ODMcomplexTypeDefinitionMetaDataVersionRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemGroupRef } - * - */ - public ODMcomplexTypeDefinitionItemGroupRef createODMcomplexTypeDefinitionItemGroupRef() { - return new ODMcomplexTypeDefinitionItemGroupRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionCity } - * - */ - public ODMcomplexTypeDefinitionCity createODMcomplexTypeDefinitionCity() { - return new ODMcomplexTypeDefinitionCity(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionDecode } - * - */ - public ODMcomplexTypeDefinitionDecode createODMcomplexTypeDefinitionDecode() { - return new ODMcomplexTypeDefinitionDecode(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionAddress } - * - */ - public ODMcomplexTypeDefinitionAddress createODMcomplexTypeDefinitionAddress() { - return new ODMcomplexTypeDefinitionAddress(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionAnnotation } - * - */ - public ODMcomplexTypeDefinitionAnnotation createODMcomplexTypeDefinitionAnnotation() { - return new ODMcomplexTypeDefinitionAnnotation(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionRole } - * - */ - public ODMcomplexTypeDefinitionRole createODMcomplexTypeDefinitionRole() { - return new ODMcomplexTypeDefinitionRole(); - } - - /** - * Create an instance of {@link ODM } - * - */ - public ODM createODM() { - return new ODM(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionStudy } - * - */ - public ODMcomplexTypeDefinitionStudy createODMcomplexTypeDefinitionStudy() { - return new ODMcomplexTypeDefinitionStudy(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionReferenceData } - * - */ - public ODMcomplexTypeDefinitionReferenceData createODMcomplexTypeDefinitionReferenceData() { - return new ODMcomplexTypeDefinitionReferenceData(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataPartialDate } - * - */ - public ODMcomplexTypeDefinitionItemDataPartialDate createODMcomplexTypeDefinitionItemDataPartialDate() { - return new ODMcomplexTypeDefinitionItemDataPartialDate(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionLoginName } - * - */ - public ODMcomplexTypeDefinitionLoginName createODMcomplexTypeDefinitionLoginName() { - return new ODMcomplexTypeDefinitionLoginName(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFormDef } - * - */ - public ODMcomplexTypeDefinitionFormDef createODMcomplexTypeDefinitionFormDef() { - return new ODMcomplexTypeDefinitionFormDef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataTime } - * - */ - public ODMcomplexTypeDefinitionItemDataTime createODMcomplexTypeDefinitionItemDataTime() { - return new ODMcomplexTypeDefinitionItemDataTime(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionProtocolName } - * - */ - public ODMcomplexTypeDefinitionProtocolName createODMcomplexTypeDefinitionProtocolName() { - return new ODMcomplexTypeDefinitionProtocolName(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionOrganization } - * - */ - public ODMcomplexTypeDefinitionOrganization createODMcomplexTypeDefinitionOrganization() { - return new ODMcomplexTypeDefinitionOrganization(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataBase64Float } - * - */ - public ODMcomplexTypeDefinitionItemDataBase64Float createODMcomplexTypeDefinitionItemDataBase64Float() { - return new ODMcomplexTypeDefinitionItemDataBase64Float(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDef } - * - */ - public ODMcomplexTypeDefinitionItemDef createODMcomplexTypeDefinitionItemDef() { - return new ODMcomplexTypeDefinitionItemDef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionMeaning } - * - */ - public ODMcomplexTypeDefinitionMeaning createODMcomplexTypeDefinitionMeaning() { - return new ODMcomplexTypeDefinitionMeaning(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionProtocol } - * - */ - public ODMcomplexTypeDefinitionProtocol createODMcomplexTypeDefinitionProtocol() { - return new ODMcomplexTypeDefinitionProtocol(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionMeasurementUnit } - * - */ - public ODMcomplexTypeDefinitionMeasurementUnit createODMcomplexTypeDefinitionMeasurementUnit() { - return new ODMcomplexTypeDefinitionMeasurementUnit(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionPager } - * - */ - public ODMcomplexTypeDefinitionPager createODMcomplexTypeDefinitionPager() { - return new ODMcomplexTypeDefinitionPager(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionRangeCheck } - * - */ - public ODMcomplexTypeDefinitionRangeCheck createODMcomplexTypeDefinitionRangeCheck() { - return new ODMcomplexTypeDefinitionRangeCheck(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionStudyEventData } - * - */ - public ODMcomplexTypeDefinitionStudyEventData createODMcomplexTypeDefinitionStudyEventData() { - return new ODMcomplexTypeDefinitionStudyEventData(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionMeasurementUnitRef } - * - */ - public ODMcomplexTypeDefinitionMeasurementUnitRef createODMcomplexTypeDefinitionMeasurementUnitRef() { - return new ODMcomplexTypeDefinitionMeasurementUnitRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionCheckValue } - * - */ - public ODMcomplexTypeDefinitionCheckValue createODMcomplexTypeDefinitionCheckValue() { - return new ODMcomplexTypeDefinitionCheckValue(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionStudyDescription } - * - */ - public ODMcomplexTypeDefinitionStudyDescription createODMcomplexTypeDefinitionStudyDescription() { - return new ODMcomplexTypeDefinitionStudyDescription(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionErrorMessage } - * - */ - public ODMcomplexTypeDefinitionErrorMessage createODMcomplexTypeDefinitionErrorMessage() { - return new ODMcomplexTypeDefinitionErrorMessage(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionStateProv } - * - */ - public ODMcomplexTypeDefinitionStateProv createODMcomplexTypeDefinitionStateProv() { - return new ODMcomplexTypeDefinitionStateProv(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionUserRef } - * - */ - public ODMcomplexTypeDefinitionUserRef createODMcomplexTypeDefinitionUserRef() { - return new ODMcomplexTypeDefinitionUserRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionSymbol } - * - */ - public ODMcomplexTypeDefinitionSymbol createODMcomplexTypeDefinitionSymbol() { - return new ODMcomplexTypeDefinitionSymbol(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionSignatures } - * - */ - public ODMcomplexTypeDefinitionSignatures createODMcomplexTypeDefinitionSignatures() { - return new ODMcomplexTypeDefinitionSignatures(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataPartialTime } - * - */ - public ODMcomplexTypeDefinitionItemDataPartialTime createODMcomplexTypeDefinitionItemDataPartialTime() { - return new ODMcomplexTypeDefinitionItemDataPartialTime(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionExternalCodeList } - * - */ - public ODMcomplexTypeDefinitionExternalCodeList createODMcomplexTypeDefinitionExternalCodeList() { - return new ODMcomplexTypeDefinitionExternalCodeList(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionPhone } - * - */ - public ODMcomplexTypeDefinitionPhone createODMcomplexTypeDefinitionPhone() { - return new ODMcomplexTypeDefinitionPhone(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionStudyEventRef } - * - */ - public ODMcomplexTypeDefinitionStudyEventRef createODMcomplexTypeDefinitionStudyEventRef() { - return new ODMcomplexTypeDefinitionStudyEventRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionConditionDef } - * - */ - public ODMcomplexTypeDefinitionConditionDef createODMcomplexTypeDefinitionConditionDef() { - return new ODMcomplexTypeDefinitionConditionDef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionReasonForChange } - * - */ - public ODMcomplexTypeDefinitionReasonForChange createODMcomplexTypeDefinitionReasonForChange() { - return new ODMcomplexTypeDefinitionReasonForChange(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionSignature } - * - */ - public ODMcomplexTypeDefinitionSignature createODMcomplexTypeDefinitionSignature() { - return new ODMcomplexTypeDefinitionSignature(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataDate } - * - */ - public ODMcomplexTypeDefinitionItemDataDate createODMcomplexTypeDefinitionItemDataDate() { - return new ODMcomplexTypeDefinitionItemDataDate(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionArchiveLayoutRef } - * - */ - public ODMcomplexTypeDefinitionArchiveLayoutRef createODMcomplexTypeDefinitionArchiveLayoutRef() { - return new ODMcomplexTypeDefinitionArchiveLayoutRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionOtherText } - * - */ - public ODMcomplexTypeDefinitionOtherText createODMcomplexTypeDefinitionOtherText() { - return new ODMcomplexTypeDefinitionOtherText(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionAnnotations } - * - */ - public ODMcomplexTypeDefinitionAnnotations createODMcomplexTypeDefinitionAnnotations() { - return new ODMcomplexTypeDefinitionAnnotations(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionInclude } - * - */ - public ODMcomplexTypeDefinitionInclude createODMcomplexTypeDefinitionInclude() { - return new ODMcomplexTypeDefinitionInclude(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataFloat } - * - */ - public ODMcomplexTypeDefinitionItemDataFloat createODMcomplexTypeDefinitionItemDataFloat() { - return new ODMcomplexTypeDefinitionItemDataFloat(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemData } - * - */ - public ODMcomplexTypeDefinitionItemData createODMcomplexTypeDefinitionItemData() { - return new ODMcomplexTypeDefinitionItemData(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionDescription } - * - */ - public ODMcomplexTypeDefinitionDescription createODMcomplexTypeDefinitionDescription() { - return new ODMcomplexTypeDefinitionDescription(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionStudyName } - * - */ - public ODMcomplexTypeDefinitionStudyName createODMcomplexTypeDefinitionStudyName() { - return new ODMcomplexTypeDefinitionStudyName(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionMetaDataVersion } - * - */ - public ODMcomplexTypeDefinitionMetaDataVersion createODMcomplexTypeDefinitionMetaDataVersion() { - return new ODMcomplexTypeDefinitionMetaDataVersion(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionCryptoBindingManifest } - * - */ - public ODMcomplexTypeDefinitionCryptoBindingManifest createODMcomplexTypeDefinitionCryptoBindingManifest() { - return new ODMcomplexTypeDefinitionCryptoBindingManifest(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataDatetime } - * - */ - public ODMcomplexTypeDefinitionItemDataDatetime createODMcomplexTypeDefinitionItemDataDatetime() { - return new ODMcomplexTypeDefinitionItemDataDatetime(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFax } - * - */ - public ODMcomplexTypeDefinitionFax createODMcomplexTypeDefinitionFax() { - return new ODMcomplexTypeDefinitionFax(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFormData } - * - */ - public ODMcomplexTypeDefinitionFormData createODMcomplexTypeDefinitionFormData() { - return new ODMcomplexTypeDefinitionFormData(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionLocation } - * - */ - public ODMcomplexTypeDefinitionLocation createODMcomplexTypeDefinitionLocation() { - return new ODMcomplexTypeDefinitionLocation(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionDisplayName } - * - */ - public ODMcomplexTypeDefinitionDisplayName createODMcomplexTypeDefinitionDisplayName() { - return new ODMcomplexTypeDefinitionDisplayName(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionTranslatedText } - * - */ - public ODMcomplexTypeDefinitionTranslatedText createODMcomplexTypeDefinitionTranslatedText() { - return new ODMcomplexTypeDefinitionTranslatedText(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionSignatureRef } - * - */ - public ODMcomplexTypeDefinitionSignatureRef createODMcomplexTypeDefinitionSignatureRef() { - return new ODMcomplexTypeDefinitionSignatureRef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionPostalCode } - * - */ - public ODMcomplexTypeDefinitionPostalCode createODMcomplexTypeDefinitionPostalCode() { - return new ODMcomplexTypeDefinitionPostalCode(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionAuditRecords } - * - */ - public ODMcomplexTypeDefinitionAuditRecords createODMcomplexTypeDefinitionAuditRecords() { - return new ODMcomplexTypeDefinitionAuditRecords(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataIntervalDatetime } - * - */ - public ODMcomplexTypeDefinitionItemDataIntervalDatetime createODMcomplexTypeDefinitionItemDataIntervalDatetime() { - return new ODMcomplexTypeDefinitionItemDataIntervalDatetime(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionAlias } - * - */ - public ODMcomplexTypeDefinitionAlias createODMcomplexTypeDefinitionAlias() { - return new ODMcomplexTypeDefinitionAlias(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataURI } - * - */ - public ODMcomplexTypeDefinitionItemDataURI createODMcomplexTypeDefinitionItemDataURI() { - return new ODMcomplexTypeDefinitionItemDataURI(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionPresentation } - * - */ - public ODMcomplexTypeDefinitionPresentation createODMcomplexTypeDefinitionPresentation() { - return new ODMcomplexTypeDefinitionPresentation(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemGroupDef } - * - */ - public ODMcomplexTypeDefinitionItemGroupDef createODMcomplexTypeDefinitionItemGroupDef() { - return new ODMcomplexTypeDefinitionItemGroupDef(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionBasicDefinitions } - * - */ - public ODMcomplexTypeDefinitionBasicDefinitions createODMcomplexTypeDefinitionBasicDefinitions() { - return new ODMcomplexTypeDefinitionBasicDefinitions(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionImputationMethod } - * - */ - public ODMcomplexTypeDefinitionImputationMethod createODMcomplexTypeDefinitionImputationMethod() { - return new ODMcomplexTypeDefinitionImputationMethod(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionItemDataBase64Binary } - * - */ - public ODMcomplexTypeDefinitionItemDataBase64Binary createODMcomplexTypeDefinitionItemDataBase64Binary() { - return new ODMcomplexTypeDefinitionItemDataBase64Binary(); - } - - /** - * Create an instance of {@link ODMcomplexTypeDefinitionFormRef } - * - */ - public ODMcomplexTypeDefinitionFormRef createODMcomplexTypeDefinitionFormRef() { - return new ODMcomplexTypeDefinitionFormRef(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionUser }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "User") - public JAXBElement createUser(ODMcomplexTypeDefinitionUser value) { - return new JAXBElement(_User_QNAME, ODMcomplexTypeDefinitionUser.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionSourceID }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "SourceID") - public JAXBElement createSourceID(ODMcomplexTypeDefinitionSourceID value) { - return new JAXBElement(_SourceID_QNAME, ODMcomplexTypeDefinitionSourceID.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionLastName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "LastName") - public JAXBElement createLastName(ODMcomplexTypeDefinitionLastName value) { - return new JAXBElement(_LastName_QNAME, ODMcomplexTypeDefinitionLastName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemRef") - public JAXBElement createItemRef(ODMcomplexTypeDefinitionItemRef value) { - return new JAXBElement(_ItemRef_QNAME, ODMcomplexTypeDefinitionItemRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionEnumeratedItem }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "EnumeratedItem") - public JAXBElement createEnumeratedItem(ODMcomplexTypeDefinitionEnumeratedItem value) { - return new JAXBElement(_EnumeratedItem_QNAME, ODMcomplexTypeDefinitionEnumeratedItem.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionCodeListItem }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "CodeListItem") - public JAXBElement createCodeListItem(ODMcomplexTypeDefinitionCodeListItem value) { - return new JAXBElement(_CodeListItem_QNAME, ODMcomplexTypeDefinitionCodeListItem.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataPartialDatetime }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataPartialDatetime") - public JAXBElement createItemDataPartialDatetime(ODMcomplexTypeDefinitionItemDataPartialDatetime value) { - return new JAXBElement(_ItemDataPartialDatetime_QNAME, ODMcomplexTypeDefinitionItemDataPartialDatetime.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataDurationDatetime }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataDurationDatetime") - public JAXBElement createItemDataDurationDatetime(ODMcomplexTypeDefinitionItemDataDurationDatetime value) { - return new JAXBElement(_ItemDataDurationDatetime_QNAME, ODMcomplexTypeDefinitionItemDataDurationDatetime.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionClinicalData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ClinicalData") - public JAXBElement createClinicalData(ODMcomplexTypeDefinitionClinicalData value) { - return new JAXBElement(_ClinicalData_QNAME, ODMcomplexTypeDefinitionClinicalData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFlagValue }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "FlagValue") - public JAXBElement createFlagValue(ODMcomplexTypeDefinitionFlagValue value) { - return new JAXBElement(_FlagValue_QNAME, ODMcomplexTypeDefinitionFlagValue.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataInteger") - public JAXBElement createItemDataInteger(ODMcomplexTypeDefinitionItemDataInteger value) { - return new JAXBElement(_ItemDataInteger_QNAME, ODMcomplexTypeDefinitionItemDataInteger.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFormalExpression }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "FormalExpression") - public JAXBElement createFormalExpression(ODMcomplexTypeDefinitionFormalExpression value) { - return new JAXBElement(_FormalExpression_QNAME, ODMcomplexTypeDefinitionFormalExpression.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFlagType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "FlagType") - public JAXBElement createFlagType(ODMcomplexTypeDefinitionFlagType value) { - return new JAXBElement(_FlagType_QNAME, ODMcomplexTypeDefinitionFlagType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionCountry }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Country") - public JAXBElement createCountry(ODMcomplexTypeDefinitionCountry value) { - return new JAXBElement(_Country_QNAME, ODMcomplexTypeDefinitionCountry.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionComment }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Comment") - public JAXBElement createComment(ODMcomplexTypeDefinitionComment value) { - return new JAXBElement(_Comment_QNAME, ODMcomplexTypeDefinitionComment.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionCodeListRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "CodeListRef") - public JAXBElement createCodeListRef(ODMcomplexTypeDefinitionCodeListRef value) { - return new JAXBElement(_CodeListRef_QNAME, ODMcomplexTypeDefinitionCodeListRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionStudyEventDef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "StudyEventDef") - public JAXBElement createStudyEventDef(ODMcomplexTypeDefinitionStudyEventDef value) { - return new JAXBElement(_StudyEventDef_QNAME, ODMcomplexTypeDefinitionStudyEventDef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionEmail }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Email") - public JAXBElement createEmail(ODMcomplexTypeDefinitionEmail value) { - return new JAXBElement(_Email_QNAME, ODMcomplexTypeDefinitionEmail.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionStreetName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "StreetName") - public JAXBElement createStreetName(ODMcomplexTypeDefinitionStreetName value) { - return new JAXBElement(_StreetName_QNAME, ODMcomplexTypeDefinitionStreetName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionDateTimeStamp }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "DateTimeStamp") - public JAXBElement createDateTimeStamp(ODMcomplexTypeDefinitionDateTimeStamp value) { - return new JAXBElement(_DateTimeStamp_QNAME, ODMcomplexTypeDefinitionDateTimeStamp.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionSubjectData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "SubjectData") - public JAXBElement createSubjectData(ODMcomplexTypeDefinitionSubjectData value) { - return new JAXBElement(_SubjectData_QNAME, ODMcomplexTypeDefinitionSubjectData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemGroupData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemGroupData") - public JAXBElement createItemGroupData(ODMcomplexTypeDefinitionItemGroupData value) { - return new JAXBElement(_ItemGroupData_QNAME, ODMcomplexTypeDefinitionItemGroupData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionCertificate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Certificate") - public JAXBElement createCertificate(ODMcomplexTypeDefinitionCertificate value) { - return new JAXBElement(_Certificate_QNAME, ODMcomplexTypeDefinitionCertificate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionSignatureDef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "SignatureDef") - public JAXBElement createSignatureDef(ODMcomplexTypeDefinitionSignatureDef value) { - return new JAXBElement(_SignatureDef_QNAME, ODMcomplexTypeDefinitionSignatureDef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataHexBinary }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataHexBinary") - public JAXBElement createItemDataHexBinary(ODMcomplexTypeDefinitionItemDataHexBinary value) { - return new JAXBElement(_ItemDataHexBinary_QNAME, ODMcomplexTypeDefinitionItemDataHexBinary.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionKeySet }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "KeySet") - public JAXBElement createKeySet(ODMcomplexTypeDefinitionKeySet value) { - return new JAXBElement(_KeySet_QNAME, ODMcomplexTypeDefinitionKeySet.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionMethodDef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "MethodDef") - public JAXBElement createMethodDef(ODMcomplexTypeDefinitionMethodDef value) { - return new JAXBElement(_MethodDef_QNAME, ODMcomplexTypeDefinitionMethodDef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataBoolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataBoolean") - public JAXBElement createItemDataBoolean(ODMcomplexTypeDefinitionItemDataBoolean value) { - return new JAXBElement(_ItemDataBoolean_QNAME, ODMcomplexTypeDefinitionItemDataBoolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionLocationRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "LocationRef") - public JAXBElement createLocationRef(ODMcomplexTypeDefinitionLocationRef value) { - return new JAXBElement(_LocationRef_QNAME, ODMcomplexTypeDefinitionLocationRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAssociation }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Association") - public JAXBElement createAssociation(ODMcomplexTypeDefinitionAssociation value) { - return new JAXBElement(_Association_QNAME, ODMcomplexTypeDefinitionAssociation.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataString }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataString") - public JAXBElement createItemDataString(ODMcomplexTypeDefinitionItemDataString value) { - return new JAXBElement(_ItemDataString_QNAME, ODMcomplexTypeDefinitionItemDataString.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionSiteRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "SiteRef") - public JAXBElement createSiteRef(ODMcomplexTypeDefinitionSiteRef value) { - return new JAXBElement(_SiteRef_QNAME, ODMcomplexTypeDefinitionSiteRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionInvestigatorRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "InvestigatorRef") - public JAXBElement createInvestigatorRef(ODMcomplexTypeDefinitionInvestigatorRef value) { - return new JAXBElement(_InvestigatorRef_QNAME, ODMcomplexTypeDefinitionInvestigatorRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataIncompleteDatetime }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataIncompleteDatetime") - public JAXBElement createItemDataIncompleteDatetime(ODMcomplexTypeDefinitionItemDataIncompleteDatetime value) { - return new JAXBElement(_ItemDataIncompleteDatetime_QNAME, ODMcomplexTypeDefinitionItemDataIncompleteDatetime.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionGlobalVariables }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "GlobalVariables") - public JAXBElement createGlobalVariables(ODMcomplexTypeDefinitionGlobalVariables value) { - return new JAXBElement(_GlobalVariables_QNAME, ODMcomplexTypeDefinitionGlobalVariables.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionCodeList }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "CodeList") - public JAXBElement createCodeList(ODMcomplexTypeDefinitionCodeList value) { - return new JAXBElement(_CodeList_QNAME, ODMcomplexTypeDefinitionCodeList.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataHexFloat }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataHexFloat") - public JAXBElement createItemDataHexFloat(ODMcomplexTypeDefinitionItemDataHexFloat value) { - return new JAXBElement(_ItemDataHexFloat_QNAME, ODMcomplexTypeDefinitionItemDataHexFloat.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFullName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "FullName") - public JAXBElement createFullName(ODMcomplexTypeDefinitionFullName value) { - return new JAXBElement(_FullName_QNAME, ODMcomplexTypeDefinitionFullName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionQuestion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Question") - public JAXBElement createQuestion(ODMcomplexTypeDefinitionQuestion value) { - return new JAXBElement(_Question_QNAME, ODMcomplexTypeDefinitionQuestion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAdminData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "AdminData") - public JAXBElement createAdminData(ODMcomplexTypeDefinitionAdminData value) { - return new JAXBElement(_AdminData_QNAME, ODMcomplexTypeDefinitionAdminData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionExternalQuestion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ExternalQuestion") - public JAXBElement createExternalQuestion(ODMcomplexTypeDefinitionExternalQuestion value) { - return new JAXBElement(_ExternalQuestion_QNAME, ODMcomplexTypeDefinitionExternalQuestion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionLegalReason }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "LegalReason") - public JAXBElement createLegalReason(ODMcomplexTypeDefinitionLegalReason value) { - return new JAXBElement(_LegalReason_QNAME, ODMcomplexTypeDefinitionLegalReason.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAuditRecord }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "AuditRecord") - public JAXBElement createAuditRecord(ODMcomplexTypeDefinitionAuditRecord value) { - return new JAXBElement(_AuditRecord_QNAME, ODMcomplexTypeDefinitionAuditRecord.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataDouble }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataDouble") - public JAXBElement createItemDataDouble(ODMcomplexTypeDefinitionItemDataDouble value) { - return new JAXBElement(_ItemDataDouble_QNAME, ODMcomplexTypeDefinitionItemDataDouble.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFirstName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "FirstName") - public JAXBElement createFirstName(ODMcomplexTypeDefinitionFirstName value) { - return new JAXBElement(_FirstName_QNAME, ODMcomplexTypeDefinitionFirstName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionMetaDataVersionRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "MetaDataVersionRef") - public JAXBElement createMetaDataVersionRef(ODMcomplexTypeDefinitionMetaDataVersionRef value) { - return new JAXBElement(_MetaDataVersionRef_QNAME, ODMcomplexTypeDefinitionMetaDataVersionRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFlag }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Flag") - public JAXBElement createFlag(ODMcomplexTypeDefinitionFlag value) { - return new JAXBElement(_Flag_QNAME, ODMcomplexTypeDefinitionFlag.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionArchiveLayout }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ArchiveLayout") - public JAXBElement createArchiveLayout(ODMcomplexTypeDefinitionArchiveLayout value) { - return new JAXBElement(_ArchiveLayout_QNAME, ODMcomplexTypeDefinitionArchiveLayout.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionPicture }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Picture") - public JAXBElement createPicture(ODMcomplexTypeDefinitionPicture value) { - return new JAXBElement(_Picture_QNAME, ODMcomplexTypeDefinitionPicture.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionCity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "City") - public JAXBElement createCity(ODMcomplexTypeDefinitionCity value) { - return new JAXBElement(_City_QNAME, ODMcomplexTypeDefinitionCity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemGroupRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemGroupRef") - public JAXBElement createItemGroupRef(ODMcomplexTypeDefinitionItemGroupRef value) { - return new JAXBElement(_ItemGroupRef_QNAME, ODMcomplexTypeDefinitionItemGroupRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAddress }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Address") - public JAXBElement createAddress(ODMcomplexTypeDefinitionAddress value) { - return new JAXBElement(_Address_QNAME, ODMcomplexTypeDefinitionAddress.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAnnotation }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Annotation") - public JAXBElement createAnnotation(ODMcomplexTypeDefinitionAnnotation value) { - return new JAXBElement(_Annotation_QNAME, ODMcomplexTypeDefinitionAnnotation.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionDecode }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Decode") - public JAXBElement createDecode(ODMcomplexTypeDefinitionDecode value) { - return new JAXBElement(_Decode_QNAME, ODMcomplexTypeDefinitionDecode.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataString }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataAny") - public JAXBElement createItemDataAny(ODMcomplexTypeDefinitionItemDataString value) { - return new JAXBElement(_ItemDataAny_QNAME, ODMcomplexTypeDefinitionItemDataString.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionRole }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Role") - public JAXBElement createRole(ODMcomplexTypeDefinitionRole value) { - return new JAXBElement(_Role_QNAME, ODMcomplexTypeDefinitionRole.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFormDef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "FormDef") - public JAXBElement createFormDef(ODMcomplexTypeDefinitionFormDef value) { - return new JAXBElement(_FormDef_QNAME, ODMcomplexTypeDefinitionFormDef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataPartialDate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataPartialDate") - public JAXBElement createItemDataPartialDate(ODMcomplexTypeDefinitionItemDataPartialDate value) { - return new JAXBElement(_ItemDataPartialDate_QNAME, ODMcomplexTypeDefinitionItemDataPartialDate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionLoginName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "LoginName") - public JAXBElement createLoginName(ODMcomplexTypeDefinitionLoginName value) { - return new JAXBElement(_LoginName_QNAME, ODMcomplexTypeDefinitionLoginName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionReferenceData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ReferenceData") - public JAXBElement createReferenceData(ODMcomplexTypeDefinitionReferenceData value) { - return new JAXBElement(_ReferenceData_QNAME, ODMcomplexTypeDefinitionReferenceData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDef") - public JAXBElement createItemDef(ODMcomplexTypeDefinitionItemDef value) { - return new JAXBElement(_ItemDef_QNAME, ODMcomplexTypeDefinitionItemDef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataBase64Float }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataBase64Float") - public JAXBElement createItemDataBase64Float(ODMcomplexTypeDefinitionItemDataBase64Float value) { - return new JAXBElement(_ItemDataBase64Float_QNAME, ODMcomplexTypeDefinitionItemDataBase64Float.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataTime }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataTime") - public JAXBElement createItemDataTime(ODMcomplexTypeDefinitionItemDataTime value) { - return new JAXBElement(_ItemDataTime_QNAME, ODMcomplexTypeDefinitionItemDataTime.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionProtocolName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ProtocolName") - public JAXBElement createProtocolName(ODMcomplexTypeDefinitionProtocolName value) { - return new JAXBElement(_ProtocolName_QNAME, ODMcomplexTypeDefinitionProtocolName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionOrganization }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Organization") - public JAXBElement createOrganization(ODMcomplexTypeDefinitionOrganization value) { - return new JAXBElement(_Organization_QNAME, ODMcomplexTypeDefinitionOrganization.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionMeaning }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Meaning") - public JAXBElement createMeaning(ODMcomplexTypeDefinitionMeaning value) { - return new JAXBElement(_Meaning_QNAME, ODMcomplexTypeDefinitionMeaning.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionProtocol }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Protocol") - public JAXBElement createProtocol(ODMcomplexTypeDefinitionProtocol value) { - return new JAXBElement(_Protocol_QNAME, ODMcomplexTypeDefinitionProtocol.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionMeasurementUnit }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "MeasurementUnit") - public JAXBElement createMeasurementUnit(ODMcomplexTypeDefinitionMeasurementUnit value) { - return new JAXBElement(_MeasurementUnit_QNAME, ODMcomplexTypeDefinitionMeasurementUnit.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionPager }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Pager") - public JAXBElement createPager(ODMcomplexTypeDefinitionPager value) { - return new JAXBElement(_Pager_QNAME, ODMcomplexTypeDefinitionPager.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionMeasurementUnitRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "MeasurementUnitRef") - public JAXBElement createMeasurementUnitRef(ODMcomplexTypeDefinitionMeasurementUnitRef value) { - return new JAXBElement(_MeasurementUnitRef_QNAME, ODMcomplexTypeDefinitionMeasurementUnitRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionStudyEventData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "StudyEventData") - public JAXBElement createStudyEventData(ODMcomplexTypeDefinitionStudyEventData value) { - return new JAXBElement(_StudyEventData_QNAME, ODMcomplexTypeDefinitionStudyEventData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionRangeCheck }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "RangeCheck") - public JAXBElement createRangeCheck(ODMcomplexTypeDefinitionRangeCheck value) { - return new JAXBElement(_RangeCheck_QNAME, ODMcomplexTypeDefinitionRangeCheck.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionSymbol }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Symbol") - public JAXBElement createSymbol(ODMcomplexTypeDefinitionSymbol value) { - return new JAXBElement(_Symbol_QNAME, ODMcomplexTypeDefinitionSymbol.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionStudyDescription }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "StudyDescription") - public JAXBElement createStudyDescription(ODMcomplexTypeDefinitionStudyDescription value) { - return new JAXBElement(_StudyDescription_QNAME, ODMcomplexTypeDefinitionStudyDescription.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionErrorMessage }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ErrorMessage") - public JAXBElement createErrorMessage(ODMcomplexTypeDefinitionErrorMessage value) { - return new JAXBElement(_ErrorMessage_QNAME, ODMcomplexTypeDefinitionErrorMessage.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionStateProv }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "StateProv") - public JAXBElement createStateProv(ODMcomplexTypeDefinitionStateProv value) { - return new JAXBElement(_StateProv_QNAME, ODMcomplexTypeDefinitionStateProv.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionUserRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "UserRef") - public JAXBElement createUserRef(ODMcomplexTypeDefinitionUserRef value) { - return new JAXBElement(_UserRef_QNAME, ODMcomplexTypeDefinitionUserRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionCheckValue }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "CheckValue") - public JAXBElement createCheckValue(ODMcomplexTypeDefinitionCheckValue value) { - return new JAXBElement(_CheckValue_QNAME, ODMcomplexTypeDefinitionCheckValue.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionExternalCodeList }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ExternalCodeList") - public JAXBElement createExternalCodeList(ODMcomplexTypeDefinitionExternalCodeList value) { - return new JAXBElement(_ExternalCodeList_QNAME, ODMcomplexTypeDefinitionExternalCodeList.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionSignatures }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Signatures") - public JAXBElement createSignatures(ODMcomplexTypeDefinitionSignatures value) { - return new JAXBElement(_Signatures_QNAME, ODMcomplexTypeDefinitionSignatures.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataPartialTime }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataPartialTime") - public JAXBElement createItemDataPartialTime(ODMcomplexTypeDefinitionItemDataPartialTime value) { - return new JAXBElement(_ItemDataPartialTime_QNAME, ODMcomplexTypeDefinitionItemDataPartialTime.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionPhone }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Phone") - public JAXBElement createPhone(ODMcomplexTypeDefinitionPhone value) { - return new JAXBElement(_Phone_QNAME, ODMcomplexTypeDefinitionPhone.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionSignature }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Signature") - public JAXBElement createSignature(ODMcomplexTypeDefinitionSignature value) { - return new JAXBElement(_Signature_QNAME, ODMcomplexTypeDefinitionSignature.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionConditionDef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ConditionDef") - public JAXBElement createConditionDef(ODMcomplexTypeDefinitionConditionDef value) { - return new JAXBElement(_ConditionDef_QNAME, ODMcomplexTypeDefinitionConditionDef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionReasonForChange }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ReasonForChange") - public JAXBElement createReasonForChange(ODMcomplexTypeDefinitionReasonForChange value) { - return new JAXBElement(_ReasonForChange_QNAME, ODMcomplexTypeDefinitionReasonForChange.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionStudyEventRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "StudyEventRef") - public JAXBElement createStudyEventRef(ODMcomplexTypeDefinitionStudyEventRef value) { - return new JAXBElement(_StudyEventRef_QNAME, ODMcomplexTypeDefinitionStudyEventRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionOtherText }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "OtherText") - public JAXBElement createOtherText(ODMcomplexTypeDefinitionOtherText value) { - return new JAXBElement(_OtherText_QNAME, ODMcomplexTypeDefinitionOtherText.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionStudy }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Study") - public JAXBElement createStudy(ODMcomplexTypeDefinitionStudy value) { - return new JAXBElement(_Study_QNAME, ODMcomplexTypeDefinitionStudy.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataDate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataDate") - public JAXBElement createItemDataDate(ODMcomplexTypeDefinitionItemDataDate value) { - return new JAXBElement(_ItemDataDate_QNAME, ODMcomplexTypeDefinitionItemDataDate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionArchiveLayoutRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ArchiveLayoutRef") - public JAXBElement createArchiveLayoutRef(ODMcomplexTypeDefinitionArchiveLayoutRef value) { - return new JAXBElement(_ArchiveLayoutRef_QNAME, ODMcomplexTypeDefinitionArchiveLayoutRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataFloat }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataFloat") - public JAXBElement createItemDataFloat(ODMcomplexTypeDefinitionItemDataFloat value) { - return new JAXBElement(_ItemDataFloat_QNAME, ODMcomplexTypeDefinitionItemDataFloat.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAnnotations }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Annotations") - public JAXBElement createAnnotations(ODMcomplexTypeDefinitionAnnotations value) { - return new JAXBElement(_Annotations_QNAME, ODMcomplexTypeDefinitionAnnotations.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionInclude }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Include") - public JAXBElement createInclude(ODMcomplexTypeDefinitionInclude value) { - return new JAXBElement(_Include_QNAME, ODMcomplexTypeDefinitionInclude.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataDatetime }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataDatetime") - public JAXBElement createItemDataDatetime(ODMcomplexTypeDefinitionItemDataDatetime value) { - return new JAXBElement(_ItemDataDatetime_QNAME, ODMcomplexTypeDefinitionItemDataDatetime.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFormData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "FormData") - public JAXBElement createFormData(ODMcomplexTypeDefinitionFormData value) { - return new JAXBElement(_FormData_QNAME, ODMcomplexTypeDefinitionFormData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFax }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Fax") - public JAXBElement createFax(ODMcomplexTypeDefinitionFax value) { - return new JAXBElement(_Fax_QNAME, ODMcomplexTypeDefinitionFax.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionMetaDataVersion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "MetaDataVersion") - public JAXBElement createMetaDataVersion(ODMcomplexTypeDefinitionMetaDataVersion value) { - return new JAXBElement(_MetaDataVersion_QNAME, ODMcomplexTypeDefinitionMetaDataVersion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionStudyName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "StudyName") - public JAXBElement createStudyName(ODMcomplexTypeDefinitionStudyName value) { - return new JAXBElement(_StudyName_QNAME, ODMcomplexTypeDefinitionStudyName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionDescription }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Description") - public JAXBElement createDescription(ODMcomplexTypeDefinitionDescription value) { - return new JAXBElement(_Description_QNAME, ODMcomplexTypeDefinitionDescription.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionCryptoBindingManifest }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "CryptoBindingManifest") - public JAXBElement createCryptoBindingManifest(ODMcomplexTypeDefinitionCryptoBindingManifest value) { - return new JAXBElement(_CryptoBindingManifest_QNAME, ODMcomplexTypeDefinitionCryptoBindingManifest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemData") - public JAXBElement createItemData(ODMcomplexTypeDefinitionItemData value) { - return new JAXBElement(_ItemData_QNAME, ODMcomplexTypeDefinitionItemData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionTranslatedText }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "TranslatedText") - public JAXBElement createTranslatedText(ODMcomplexTypeDefinitionTranslatedText value) { - return new JAXBElement(_TranslatedText_QNAME, ODMcomplexTypeDefinitionTranslatedText.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionDisplayName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "DisplayName") - public JAXBElement createDisplayName(ODMcomplexTypeDefinitionDisplayName value) { - return new JAXBElement(_DisplayName_QNAME, ODMcomplexTypeDefinitionDisplayName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionLocation }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Location") - public JAXBElement createLocation(ODMcomplexTypeDefinitionLocation value) { - return new JAXBElement(_Location_QNAME, ODMcomplexTypeDefinitionLocation.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionPresentation }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Presentation") - public JAXBElement createPresentation(ODMcomplexTypeDefinitionPresentation value) { - return new JAXBElement(_Presentation_QNAME, ODMcomplexTypeDefinitionPresentation.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionBasicDefinitions }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "BasicDefinitions") - public JAXBElement createBasicDefinitions(ODMcomplexTypeDefinitionBasicDefinitions value) { - return new JAXBElement(_BasicDefinitions_QNAME, ODMcomplexTypeDefinitionBasicDefinitions.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemGroupDef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemGroupDef") - public JAXBElement createItemGroupDef(ODMcomplexTypeDefinitionItemGroupDef value) { - return new JAXBElement(_ItemGroupDef_QNAME, ODMcomplexTypeDefinitionItemGroupDef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataURI }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataURI") - public JAXBElement createItemDataURI(ODMcomplexTypeDefinitionItemDataURI value) { - return new JAXBElement(_ItemDataURI_QNAME, ODMcomplexTypeDefinitionItemDataURI.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAlias }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "Alias") - public JAXBElement createAlias(ODMcomplexTypeDefinitionAlias value) { - return new JAXBElement(_Alias_QNAME, ODMcomplexTypeDefinitionAlias.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataIntervalDatetime }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataIntervalDatetime") - public JAXBElement createItemDataIntervalDatetime(ODMcomplexTypeDefinitionItemDataIntervalDatetime value) { - return new JAXBElement(_ItemDataIntervalDatetime_QNAME, ODMcomplexTypeDefinitionItemDataIntervalDatetime.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionAuditRecords }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "AuditRecords") - public JAXBElement createAuditRecords(ODMcomplexTypeDefinitionAuditRecords value) { - return new JAXBElement(_AuditRecords_QNAME, ODMcomplexTypeDefinitionAuditRecords.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionPostalCode }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "PostalCode") - public JAXBElement createPostalCode(ODMcomplexTypeDefinitionPostalCode value) { - return new JAXBElement(_PostalCode_QNAME, ODMcomplexTypeDefinitionPostalCode.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionSignatureRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "SignatureRef") - public JAXBElement createSignatureRef(ODMcomplexTypeDefinitionSignatureRef value) { - return new JAXBElement(_SignatureRef_QNAME, ODMcomplexTypeDefinitionSignatureRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionFormRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "FormRef") - public JAXBElement createFormRef(ODMcomplexTypeDefinitionFormRef value) { - return new JAXBElement(_FormRef_QNAME, ODMcomplexTypeDefinitionFormRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionImputationMethod }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ImputationMethod") - public JAXBElement createImputationMethod(ODMcomplexTypeDefinitionImputationMethod value) { - return new JAXBElement(_ImputationMethod_QNAME, ODMcomplexTypeDefinitionImputationMethod.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ODMcomplexTypeDefinitionItemDataBase64Binary }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.cdisc.org/ns/odm/v1.3", name = "ItemDataBase64Binary") - public JAXBElement createItemDataBase64Binary(ODMcomplexTypeDefinitionItemDataBase64Binary value) { - return new JAXBElement(_ItemDataBase64Binary_QNAME, ODMcomplexTypeDefinitionItemDataBase64Binary.class, null, value); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/SignMethod.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/SignMethod.java deleted file mode 100755 index e44b7ae..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/SignMethod.java +++ /dev/null @@ -1,58 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SignMethod. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="SignMethod">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Digital"/>
- *     <enumeration value="Electronic"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SignMethod") -@XmlEnum -public enum SignMethod { - - @XmlEnumValue("Digital") - DIGITAL("Digital"), - @XmlEnumValue("Electronic") - ELECTRONIC("Electronic"); - private final String value; - - SignMethod(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SignMethod fromValue(String v) { - for (SignMethod c: SignMethod.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/SoftOrHard.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/SoftOrHard.java deleted file mode 100755 index 7f595d1..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/SoftOrHard.java +++ /dev/null @@ -1,58 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SoftOrHard. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="SoftOrHard">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Soft"/>
- *     <enumeration value="Hard"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SoftOrHard") -@XmlEnum -public enum SoftOrHard { - - @XmlEnumValue("Soft") - SOFT("Soft"), - @XmlEnumValue("Hard") - HARD("Hard"); - private final String value; - - SoftOrHard(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SoftOrHard fromValue(String v) { - for (SoftOrHard c: SoftOrHard.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/TransactionType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/TransactionType.java deleted file mode 100755 index ffbc0cd..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/TransactionType.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for TransactionType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="TransactionType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Insert"/>
- *     <enumeration value="Update"/>
- *     <enumeration value="Remove"/>
- *     <enumeration value="Upsert"/>
- *     <enumeration value="Context"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TransactionType") -@XmlEnum -public enum TransactionType { - - @XmlEnumValue("Insert") - INSERT("Insert"), - @XmlEnumValue("Update") - UPDATE("Update"), - @XmlEnumValue("Remove") - REMOVE("Remove"), - @XmlEnumValue("Upsert") - UPSERT("Upsert"), - @XmlEnumValue("Context") - CONTEXT("Context"); - private final String value; - - TransactionType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static TransactionType fromValue(String v) { - for (TransactionType c: TransactionType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/UserType.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/UserType.java deleted file mode 100755 index 5166bf6..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/UserType.java +++ /dev/null @@ -1,64 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="UserType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Sponsor"/>
- *     <enumeration value="Investigator"/>
- *     <enumeration value="Lab"/>
- *     <enumeration value="Other"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "UserType") -@XmlEnum -public enum UserType { - - @XmlEnumValue("Sponsor") - SPONSOR("Sponsor"), - @XmlEnumValue("Investigator") - INVESTIGATOR("Investigator"), - @XmlEnumValue("Lab") - LAB("Lab"), - @XmlEnumValue("Other") - OTHER("Other"); - private final String value; - - UserType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static UserType fromValue(String v) { - for (UserType c: UserType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/YesOnly.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/YesOnly.java deleted file mode 100755 index 30ca84b..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/YesOnly.java +++ /dev/null @@ -1,55 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for YesOnly. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="YesOnly">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Yes"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "YesOnly") -@XmlEnum -public enum YesOnly { - - @XmlEnumValue("Yes") - YES("Yes"); - private final String value; - - YesOnly(String v) { - value = v; - } - - public String value() { - return value; - } - - public static YesOnly fromValue(String v) { - for (YesOnly c: YesOnly.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/YesOrNo.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/YesOrNo.java deleted file mode 100755 index e774213..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/YesOrNo.java +++ /dev/null @@ -1,58 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.cdisk.odm.jaxb; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for YesOrNo. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="YesOrNo">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Yes"/>
- *     <enumeration value="No"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "YesOrNo") -@XmlEnum -public enum YesOrNo { - - @XmlEnumValue("Yes") - YES("Yes"), - @XmlEnumValue("No") - NO("No"); - private final String value; - - YesOrNo(String v) { - value = v; - } - - public String value() { - return value; - } - - public static YesOrNo fromValue(String v) { - for (YesOrNo c: YesOrNo.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/package-info.java b/odm/gensrc_openclinica/org/cdisk/odm/jaxb/package-info.java deleted file mode 100755 index 38577d7..0000000 --- a/odm/gensrc_openclinica/org/cdisk/odm/jaxb/package-info.java +++ /dev/null @@ -1,9 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - -@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.cdisc.org/ns/odm/v1.3", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package org.cdisk.odm.jaxb; diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAge.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAge.java deleted file mode 100755 index 58ce67e..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAge.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for OCodmComplexTypeDefinition-Age complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-Age">
- *   <simpleContent>
- *     <extension base="<http://www.cdisc.org/ns/odm/v1.3>text">
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AgeAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AgeAttributeDefinition"/>
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-Age", propOrder = { - "value" -}) -public class OCodmComplexTypeDefinitionAge { - - @XmlValue - protected String value; - @XmlAttribute(name = "MinimumAge") - protected String minimumAge; - @XmlAttribute(name = "MaximumAge") - protected String maximumAge; - - /** - * 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; - } - - /** - * Gets the value of the minimumAge property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMinimumAge() { - return minimumAge; - } - - /** - * Sets the value of the minimumAge property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMinimumAge(String value) { - this.minimumAge = value; - } - - /** - * Gets the value of the maximumAge property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaximumAge() { - return maximumAge; - } - - /** - * Sets the value of the maximumAge property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaximumAge(String value) { - this.maximumAge = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAuditLog.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAuditLog.java deleted file mode 100755 index db5fc79..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAuditLog.java +++ /dev/null @@ -1,226 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for OCodmComplexTypeDefinition-AuditLog complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-AuditLog">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AuditLogElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AuditLogAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AuditLogAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-AuditLog") -public class OCodmComplexTypeDefinitionAuditLog { - - @XmlAttribute(name = "ID") - protected String id; - @XmlAttribute(name = "UserID") - protected String userID; - @XmlAttribute(name = "DateTimeStamp") - protected XMLGregorianCalendar dateTimeStamp; - @XmlAttribute(name = "Type") - protected String type; - @XmlAttribute(name = "ReasonForChange") - protected String reasonForChange; - @XmlAttribute(name = "OldValue") - protected String oldValue; - @XmlAttribute(name = "NewValue") - protected String newValue; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = value; - } - - /** - * Gets the value of the userID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserID() { - return userID; - } - - /** - * Sets the value of the userID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserID(String value) { - this.userID = value; - } - - /** - * Gets the value of the dateTimeStamp property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateTimeStamp() { - return dateTimeStamp; - } - - /** - * Sets the value of the dateTimeStamp property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateTimeStamp(XMLGregorianCalendar value) { - this.dateTimeStamp = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the reasonForChange property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReasonForChange() { - return reasonForChange; - } - - /** - * Sets the value of the reasonForChange property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReasonForChange(String value) { - this.reasonForChange = value; - } - - /** - * Gets the value of the oldValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOldValue() { - return oldValue; - } - - /** - * Sets the value of the oldValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOldValue(String value) { - this.oldValue = value; - } - - /** - * Gets the value of the newValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNewValue() { - return newValue; - } - - /** - * Sets the value of the newValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNewValue(String value) { - this.newValue = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAuditLogs.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAuditLogs.java deleted file mode 100755 index b1f4a9c..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionAuditLogs.java +++ /dev/null @@ -1,106 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-AuditLogs complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-AuditLogs">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AuditLog" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AuditLogsElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AuditLogsAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}AuditLogsAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-AuditLogs", propOrder = { - "auditLog" -}) -public class OCodmComplexTypeDefinitionAuditLogs { - - @XmlElement(name = "AuditLog") - protected List auditLog; - @XmlAttribute(name = "EntityID", required = true) - protected String entityID; - - /** - * Gets the value of the auditLog property. - * - *

- * 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 set method for the auditLog property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuditLog().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionAuditLog } - * - * - */ - public List getAuditLog() { - if (auditLog == null) { - auditLog = new ArrayList(); - } - return this.auditLog; - } - - /** - * Gets the value of the entityID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEntityID() { - return entityID; - } - - /** - * Sets the value of the entityID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEntityID(String value) { - this.entityID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionChildNote.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionChildNote.java deleted file mode 100755 index 5362085..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionChildNote.java +++ /dev/null @@ -1,226 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import org.cdisk.odm.jaxb.ODMcomplexTypeDefinitionUserRef; - - -/** - *

Java class for OCodmComplexTypeDefinition-ChildNote complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-ChildNote">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Description" type="{http://www.cdisc.org/ns/odm/v1.3}text" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DetailedNote" type="{http://www.cdisc.org/ns/odm/v1.3}text" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}UserRef" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ChildNoteElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ChildNoteAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ChildNoteAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-ChildNote", propOrder = { - "description", - "detailedNote", - "userRef" -}) -public class OCodmComplexTypeDefinitionChildNote { - - @XmlElement(name = "Description") - protected List description; - @XmlElement(name = "DetailedNote") - protected List detailedNote; - @XmlElement(name = "UserRef", namespace = "http://www.cdisc.org/ns/odm/v1.3") - protected List userRef; - @XmlAttribute(name = "ID") - protected String id; - @XmlAttribute(name = "Status") - protected String status; - @XmlAttribute(name = "DateCreated") - protected XMLGregorianCalendar dateCreated; - - /** - * Gets the value of the description property. - * - *

- * 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 set method for the description property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDescription().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getDescription() { - if (description == null) { - description = new ArrayList(); - } - return this.description; - } - - /** - * Gets the value of the detailedNote property. - * - *

- * 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 set method for the detailedNote property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDetailedNote().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getDetailedNote() { - if (detailedNote == null) { - detailedNote = new ArrayList(); - } - return this.detailedNote; - } - - /** - * Gets the value of the userRef property. - * - *

- * 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 set method for the userRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUserRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ODMcomplexTypeDefinitionUserRef } - * - * - */ - public List getUserRef() { - if (userRef == null) { - userRef = new ArrayList(); - } - return this.userRef; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the dateCreated property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateCreated() { - return dateCreated; - } - - /** - * Sets the value of the dateCreated property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateCreated(XMLGregorianCalendar value) { - this.dateCreated = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionConditionsAndEligibility.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionConditionsAndEligibility.java deleted file mode 100755 index 206cc6c..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionConditionsAndEligibility.java +++ /dev/null @@ -1,241 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-ConditionsAndEligibility complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-ConditionsAndEligibility">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Conditions" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Keywords" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="EligibilityCriteria" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Sex" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}Age" minOccurs="0"/>
- *         <element name="HealthyVolunteersAccepted" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="ExpectedTotalEnrollment" type="{http://www.cdisc.org/ns/odm/v1.3}integer" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ConditionsAndEligibilityElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ConditionsAndEligibilityAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ConditionsAndEligibilityAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-ConditionsAndEligibility", propOrder = { - "conditions", - "keywords", - "eligibilityCriteria", - "sex", - "age", - "healthyVolunteersAccepted", - "expectedTotalEnrollment" -}) -public class OCodmComplexTypeDefinitionConditionsAndEligibility { - - @XmlElement(name = "Conditions") - protected String conditions; - @XmlElement(name = "Keywords") - protected String keywords; - @XmlElement(name = "EligibilityCriteria") - protected String eligibilityCriteria; - @XmlElement(name = "Sex") - protected String sex; - @XmlElement(name = "Age") - protected OCodmComplexTypeDefinitionAge age; - @XmlElement(name = "HealthyVolunteersAccepted") - protected String healthyVolunteersAccepted; - @XmlElement(name = "ExpectedTotalEnrollment") - protected BigInteger expectedTotalEnrollment; - - /** - * Gets the value of the conditions property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConditions() { - return conditions; - } - - /** - * Sets the value of the conditions property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConditions(String value) { - this.conditions = value; - } - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeywords(String value) { - this.keywords = value; - } - - /** - * Gets the value of the eligibilityCriteria property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEligibilityCriteria() { - return eligibilityCriteria; - } - - /** - * Sets the value of the eligibilityCriteria property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEligibilityCriteria(String value) { - this.eligibilityCriteria = value; - } - - /** - * Gets the value of the sex property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSex() { - return sex; - } - - /** - * Sets the value of the sex property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSex(String value) { - this.sex = value; - } - - /** - * Gets the value of the age property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionAge } - * - */ - public OCodmComplexTypeDefinitionAge getAge() { - return age; - } - - /** - * Sets the value of the age property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionAge } - * - */ - public void setAge(OCodmComplexTypeDefinitionAge value) { - this.age = value; - } - - /** - * Gets the value of the healthyVolunteersAccepted property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHealthyVolunteersAccepted() { - return healthyVolunteersAccepted; - } - - /** - * Sets the value of the healthyVolunteersAccepted property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHealthyVolunteersAccepted(String value) { - this.healthyVolunteersAccepted = value; - } - - /** - * Gets the value of the expectedTotalEnrollment property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getExpectedTotalEnrollment() { - return expectedTotalEnrollment; - } - - /** - * Sets the value of the expectedTotalEnrollment property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setExpectedTotalEnrollment(BigInteger value) { - this.expectedTotalEnrollment = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionDiscrepancyNote.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionDiscrepancyNote.java deleted file mode 100755 index d5a82e8..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionDiscrepancyNote.java +++ /dev/null @@ -1,212 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import java.math.BigInteger; -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for OCodmComplexTypeDefinition-DiscrepancyNote complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-DiscrepancyNote">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ChildNote" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}DiscrepancyNoteElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}DiscrepancyNoteAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}DiscrepancyNoteAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-DiscrepancyNote", propOrder = { - "childNote" -}) -public class OCodmComplexTypeDefinitionDiscrepancyNote { - - @XmlElement(name = "ChildNote") - protected List childNote; - @XmlAttribute(name = "ID") - protected String id; - @XmlAttribute(name = "NoteType") - protected String noteType; - @XmlAttribute(name = "Status") - protected String status; - @XmlAttribute(name = "DateUpdated") - protected XMLGregorianCalendar dateUpdated; - @XmlAttribute(name = "NumberOfChildNotes") - protected BigInteger numberOfChildNotes; - - /** - * Gets the value of the childNote property. - * - *

- * 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 set method for the childNote property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getChildNote().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionChildNote } - * - * - */ - public List getChildNote() { - if (childNote == null) { - childNote = new ArrayList(); - } - return this.childNote; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = value; - } - - /** - * Gets the value of the noteType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNoteType() { - return noteType; - } - - /** - * Sets the value of the noteType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNoteType(String value) { - this.noteType = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the dateUpdated property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUpdated() { - return dateUpdated; - } - - /** - * Sets the value of the dateUpdated property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUpdated(XMLGregorianCalendar value) { - this.dateUpdated = value; - } - - /** - * Gets the value of the numberOfChildNotes property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getNumberOfChildNotes() { - return numberOfChildNotes; - } - - /** - * Sets the value of the numberOfChildNotes property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setNumberOfChildNotes(BigInteger value) { - this.numberOfChildNotes = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionDiscrepancyNotes.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionDiscrepancyNotes.java deleted file mode 100755 index d8253c4..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionDiscrepancyNotes.java +++ /dev/null @@ -1,106 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-DiscrepancyNotes complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-DiscrepancyNotes">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}DiscrepancyNote" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}DiscrepancyNotesElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}DiscrepancyNotesAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}DiscrepancyNotesAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-DiscrepancyNotes", propOrder = { - "discrepancyNote" -}) -public class OCodmComplexTypeDefinitionDiscrepancyNotes { - - @XmlElement(name = "DiscrepancyNote") - protected List discrepancyNote; - @XmlAttribute(name = "EntityID", required = true) - protected String entityID; - - /** - * Gets the value of the discrepancyNote property. - * - *

- * 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 set method for the discrepancyNote property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDiscrepancyNote().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionDiscrepancyNote } - * - * - */ - public List getDiscrepancyNote() { - if (discrepancyNote == null) { - discrepancyNote = new ArrayList(); - } - return this.discrepancyNote; - } - - /** - * Gets the value of the entityID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEntityID() { - return entityID; - } - - /** - * Sets the value of the entityID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEntityID(String value) { - this.entityID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionEventDefinitionDetails.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionEventDefinitionDetails.java deleted file mode 100755 index c82af09..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionEventDefinitionDetails.java +++ /dev/null @@ -1,127 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-EventDefinitionDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-EventDefinitionDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Description" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Category" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}EventDefinitionDetailsElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}EventDefinitionDetailsAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}EventDefinitionDetailsAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-EventDefinitionDetails", propOrder = { - "description", - "category" -}) -public class OCodmComplexTypeDefinitionEventDefinitionDetails { - - @XmlElement(name = "Description") - protected String description; - @XmlElement(name = "Category") - protected String category; - @XmlAttribute(name = "StudyEventOID", required = true) - protected String studyEventOID; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the studyEventOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventOID() { - return studyEventOID; - } - - /** - * Sets the value of the studyEventOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventOID(String value) { - this.studyEventOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionFacilityInformation.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionFacilityInformation.java deleted file mode 100755 index 2a6871e..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionFacilityInformation.java +++ /dev/null @@ -1,296 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-FacilityInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-FacilityInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="FacilityName" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="FacilityCity" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="FacilityState" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="PostalCode" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="FacilityCountry" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="FacilityContactName" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="FacilityContactDegree" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="FacilityContactPhone" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="FacilityContactEmail" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}FacilityInformationElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}FacilityInformationAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}FacilityInformationAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-FacilityInformation", propOrder = { - "facilityName", - "facilityCity", - "facilityState", - "postalCode", - "facilityCountry", - "facilityContactName", - "facilityContactDegree", - "facilityContactPhone", - "facilityContactEmail" -}) -public class OCodmComplexTypeDefinitionFacilityInformation { - - @XmlElement(name = "FacilityName") - protected String facilityName; - @XmlElement(name = "FacilityCity") - protected String facilityCity; - @XmlElement(name = "FacilityState") - protected String facilityState; - @XmlElement(name = "PostalCode") - protected String postalCode; - @XmlElement(name = "FacilityCountry") - protected String facilityCountry; - @XmlElement(name = "FacilityContactName") - protected String facilityContactName; - @XmlElement(name = "FacilityContactDegree") - protected String facilityContactDegree; - @XmlElement(name = "FacilityContactPhone") - protected String facilityContactPhone; - @XmlElement(name = "FacilityContactEmail") - protected String facilityContactEmail; - - /** - * Gets the value of the facilityName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFacilityName() { - return facilityName; - } - - /** - * Sets the value of the facilityName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFacilityName(String value) { - this.facilityName = value; - } - - /** - * Gets the value of the facilityCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFacilityCity() { - return facilityCity; - } - - /** - * Sets the value of the facilityCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFacilityCity(String value) { - this.facilityCity = value; - } - - /** - * Gets the value of the facilityState property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFacilityState() { - return facilityState; - } - - /** - * Sets the value of the facilityState property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFacilityState(String value) { - this.facilityState = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the facilityCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFacilityCountry() { - return facilityCountry; - } - - /** - * Sets the value of the facilityCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFacilityCountry(String value) { - this.facilityCountry = value; - } - - /** - * Gets the value of the facilityContactName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFacilityContactName() { - return facilityContactName; - } - - /** - * Sets the value of the facilityContactName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFacilityContactName(String value) { - this.facilityContactName = value; - } - - /** - * Gets the value of the facilityContactDegree property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFacilityContactDegree() { - return facilityContactDegree; - } - - /** - * Sets the value of the facilityContactDegree property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFacilityContactDegree(String value) { - this.facilityContactDegree = value; - } - - /** - * Gets the value of the facilityContactPhone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFacilityContactPhone() { - return facilityContactPhone; - } - - /** - * Sets the value of the facilityContactPhone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFacilityContactPhone(String value) { - this.facilityContactPhone = value; - } - - /** - * Gets the value of the facilityContactEmail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFacilityContactEmail() { - return facilityContactEmail; - } - - /** - * Sets the value of the facilityContactEmail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFacilityContactEmail(String value) { - this.facilityContactEmail = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionFormDetails.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionFormDetails.java deleted file mode 100755 index 1eb31e1..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionFormDetails.java +++ /dev/null @@ -1,221 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-FormDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-FormDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SectionDetailsDefinition" maxOccurs="unbounded"/>
- *         <element name="VersionDescription" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="RevisionNotes" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInEventDefinition" maxOccurs="unbounded"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}FormDetailsElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}FormDetailsAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}FormDetailsAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-FormDetails", propOrder = { - "sectionDetailsDefinition", - "versionDescription", - "revisionNotes", - "presentInEventDefinition" -}) -public class OCodmComplexTypeDefinitionFormDetails { - - @XmlElement(name = "SectionDetailsDefinition", required = true) - protected List sectionDetailsDefinition; - @XmlElement(name = "VersionDescription") - protected String versionDescription; - @XmlElement(name = "RevisionNotes") - protected String revisionNotes; - @XmlElement(name = "PresentInEventDefinition", required = true) - protected List presentInEventDefinition; - @XmlAttribute(name = "FormOID", required = true) - protected String formOID; - @XmlAttribute(name = "ParentFormOID") - protected String parentFormOID; - - /** - * Gets the value of the sectionDetailsDefinition property. - * - *

- * 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 set method for the sectionDetailsDefinition property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSectionDetailsDefinition().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionSectionDetailsDefinition } - * - * - */ - public List getSectionDetailsDefinition() { - if (sectionDetailsDefinition == null) { - sectionDetailsDefinition = new ArrayList(); - } - return this.sectionDetailsDefinition; - } - - /** - * Gets the value of the versionDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersionDescription() { - return versionDescription; - } - - /** - * Sets the value of the versionDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersionDescription(String value) { - this.versionDescription = value; - } - - /** - * Gets the value of the revisionNotes property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRevisionNotes() { - return revisionNotes; - } - - /** - * Sets the value of the revisionNotes property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRevisionNotes(String value) { - this.revisionNotes = value; - } - - /** - * Gets the value of the presentInEventDefinition property. - * - *

- * 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 set method for the presentInEventDefinition property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPresentInEventDefinition().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionPresentInEventDefinition } - * - * - */ - public List getPresentInEventDefinition() { - if (presentInEventDefinition == null) { - presentInEventDefinition = new ArrayList(); - } - return this.presentInEventDefinition; - } - - /** - * Gets the value of the formOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormOID() { - return formOID; - } - - /** - * Sets the value of the formOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormOID(String value) { - this.formOID = value; - } - - /** - * Gets the value of the parentFormOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParentFormOID() { - return parentFormOID; - } - - /** - * Sets the value of the parentFormOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParentFormOID(String value) { - this.parentFormOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemDetails.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemDetails.java deleted file mode 100755 index 4f0adfd..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemDetails.java +++ /dev/null @@ -1,106 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-ItemDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-ItemDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemPresentInForm" maxOccurs="unbounded"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemDetailsElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemDetailsAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemDetailsAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-ItemDetails", propOrder = { - "itemPresentInForm" -}) -public class OCodmComplexTypeDefinitionItemDetails { - - @XmlElement(name = "ItemPresentInForm", required = true) - protected List itemPresentInForm; - @XmlAttribute(name = "ItemOID", required = true) - protected String itemOID; - - /** - * Gets the value of the itemPresentInForm property. - * - *

- * 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 set method for the itemPresentInForm property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItemPresentInForm().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionItemPresentInForm } - * - * - */ - public List getItemPresentInForm() { - if (itemPresentInForm == null) { - itemPresentInForm = new ArrayList(); - } - return this.itemPresentInForm; - } - - /** - * Gets the value of the itemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemOID() { - return itemOID; - } - - /** - * Sets the value of the itemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemOID(String value) { - this.itemOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemGroupDetails.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemGroupDetails.java deleted file mode 100755 index 1e9304d..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemGroupDetails.java +++ /dev/null @@ -1,106 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-ItemGroupDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-ItemGroupDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInForm" maxOccurs="unbounded"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemGroupDetailsElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemGroupDetailsAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemGroupDetailsAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-ItemGroupDetails", propOrder = { - "presentInForm" -}) -public class OCodmComplexTypeDefinitionItemGroupDetails { - - @XmlElement(name = "PresentInForm", required = true) - protected List presentInForm; - @XmlAttribute(name = "ItemGroupOID", required = true) - protected String itemGroupOID; - - /** - * Gets the value of the presentInForm property. - * - *

- * 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 set method for the presentInForm property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPresentInForm().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionPresentInForm } - * - * - */ - public List getPresentInForm() { - if (presentInForm == null) { - presentInForm = new ArrayList(); - } - return this.presentInForm; - } - - /** - * Gets the value of the itemGroupOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemGroupOID() { - return itemGroupOID; - } - - /** - * Sets the value of the itemGroupOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemGroupOID(String value) { - this.itemGroupOID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemGroupRepeat.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemGroupRepeat.java deleted file mode 100755 index 625e9bc..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemGroupRepeat.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-ItemGroupRepeat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-ItemGroupRepeat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemGroupRepeatElementExtension"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemGroupRepeatAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemGroupRepeatAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-ItemGroupRepeat") -public class OCodmComplexTypeDefinitionItemGroupRepeat { - - @XmlAttribute(name = "RepeatNumber") - protected BigInteger repeatNumber; - @XmlAttribute(name = "RepeatMax") - protected BigInteger repeatMax; - - /** - * Gets the value of the repeatNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getRepeatNumber() { - return repeatNumber; - } - - /** - * Sets the value of the repeatNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setRepeatNumber(BigInteger value) { - this.repeatNumber = value; - } - - /** - * Gets the value of the repeatMax property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getRepeatMax() { - return repeatMax; - } - - /** - * Sets the value of the repeatMax property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setRepeatMax(BigInteger value) { - this.repeatMax = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemPresentInForm.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemPresentInForm.java deleted file mode 100755 index c72436b..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemPresentInForm.java +++ /dev/null @@ -1,450 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-ItemPresentInForm complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-ItemPresentInForm">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LeftItemText" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="RightItemText" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="ItemHeader" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="ItemSubHeader" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="SectionLabel" type="{http://www.cdisc.org/ns/odm/v1.3}text"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemResponse"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SimpleConditionalDisplay" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInFormElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemPresentInFormAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemPresentInFormAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-ItemPresentInForm", propOrder = { - "leftItemText", - "rightItemText", - "itemHeader", - "itemSubHeader", - "sectionLabel", - "itemResponse", - "simpleConditionalDisplay" -}) -public class OCodmComplexTypeDefinitionItemPresentInForm { - - @XmlElement(name = "LeftItemText") - protected String leftItemText; - @XmlElement(name = "RightItemText") - protected String rightItemText; - @XmlElement(name = "ItemHeader") - protected String itemHeader; - @XmlElement(name = "ItemSubHeader") - protected String itemSubHeader; - @XmlElement(name = "SectionLabel", required = true) - protected String sectionLabel; - @XmlElement(name = "ItemResponse", required = true) - protected OCodmComplexTypeDefinitionItemResponse itemResponse; - @XmlElement(name = "SimpleConditionalDisplay") - protected OCodmComplexTypeDefinitionSimpleConditionalDisplay simpleConditionalDisplay; - @XmlAttribute(name = "FormOID", required = true) - protected String formOID; - @XmlAttribute(name = "ParentItemOID") - protected String parentItemOID; - @XmlAttribute(name = "ColumnNumber") - protected BigInteger columnNumber; - @XmlAttribute(name = "PageNumber") - protected String pageNumber; - @XmlAttribute(name = "DefaultValue") - protected String defaultValue; - @XmlAttribute(name = "PHI", required = true) - protected String phi; - @XmlAttribute(name = "ShowItem") - protected String showItem; - @XmlAttribute(name = "OrderInForm") - protected BigInteger orderInForm; - - /** - * Gets the value of the leftItemText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLeftItemText() { - return leftItemText; - } - - /** - * Sets the value of the leftItemText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLeftItemText(String value) { - this.leftItemText = value; - } - - /** - * Gets the value of the rightItemText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRightItemText() { - return rightItemText; - } - - /** - * Sets the value of the rightItemText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRightItemText(String value) { - this.rightItemText = value; - } - - /** - * Gets the value of the itemHeader property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemHeader() { - return itemHeader; - } - - /** - * Sets the value of the itemHeader property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemHeader(String value) { - this.itemHeader = value; - } - - /** - * Gets the value of the itemSubHeader property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemSubHeader() { - return itemSubHeader; - } - - /** - * Sets the value of the itemSubHeader property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemSubHeader(String value) { - this.itemSubHeader = value; - } - - /** - * Gets the value of the sectionLabel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectionLabel() { - return sectionLabel; - } - - /** - * Sets the value of the sectionLabel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectionLabel(String value) { - this.sectionLabel = value; - } - - /** - * Gets the value of the itemResponse property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionItemResponse } - * - */ - public OCodmComplexTypeDefinitionItemResponse getItemResponse() { - return itemResponse; - } - - /** - * Sets the value of the itemResponse property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionItemResponse } - * - */ - public void setItemResponse(OCodmComplexTypeDefinitionItemResponse value) { - this.itemResponse = value; - } - - /** - * Gets the value of the simpleConditionalDisplay property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionSimpleConditionalDisplay } - * - */ - public OCodmComplexTypeDefinitionSimpleConditionalDisplay getSimpleConditionalDisplay() { - return simpleConditionalDisplay; - } - - /** - * Sets the value of the simpleConditionalDisplay property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionSimpleConditionalDisplay } - * - */ - public void setSimpleConditionalDisplay(OCodmComplexTypeDefinitionSimpleConditionalDisplay value) { - this.simpleConditionalDisplay = value; - } - - /** - * Gets the value of the formOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormOID() { - return formOID; - } - - /** - * Sets the value of the formOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormOID(String value) { - this.formOID = value; - } - - /** - * Gets the value of the parentItemOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParentItemOID() { - return parentItemOID; - } - - /** - * Sets the value of the parentItemOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParentItemOID(String value) { - this.parentItemOID = value; - } - - /** - * Gets the value of the columnNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getColumnNumber() { - return columnNumber; - } - - /** - * Sets the value of the columnNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setColumnNumber(BigInteger value) { - this.columnNumber = value; - } - - /** - * Gets the value of the pageNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPageNumber() { - return pageNumber; - } - - /** - * Sets the value of the pageNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPageNumber(String value) { - this.pageNumber = value; - } - - /** - * Gets the value of the defaultValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDefaultValue() { - return defaultValue; - } - - /** - * Sets the value of the defaultValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDefaultValue(String value) { - this.defaultValue = value; - } - - /** - * Gets the value of the phi property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPHI() { - return phi; - } - - /** - * Sets the value of the phi property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPHI(String value) { - this.phi = value; - } - - /** - * Gets the value of the showItem property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShowItem() { - return showItem; - } - - /** - * Sets the value of the showItem property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShowItem(String value) { - this.showItem = value; - } - - /** - * Gets the value of the orderInForm property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOrderInForm() { - return orderInForm; - } - - /** - * Sets the value of the orderInForm property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOrderInForm(BigInteger value) { - this.orderInForm = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemResponse.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemResponse.java deleted file mode 100755 index dc982c6..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionItemResponse.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-ItemResponse complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-ItemResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemResponseElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemResponseAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemResponseAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-ItemResponse") -public class OCodmComplexTypeDefinitionItemResponse { - - @XmlAttribute(name = "ResponseType", required = true) - protected String responseType; - @XmlAttribute(name = "ResponseLayout") - protected String responseLayout; - - /** - * Gets the value of the responseType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResponseType() { - return responseType; - } - - /** - * Sets the value of the responseType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResponseType(String value) { - this.responseType = value; - } - - /** - * Gets the value of the responseLayout property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResponseLayout() { - return responseLayout; - } - - /** - * Sets the value of the responseLayout property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResponseLayout(String value) { - this.responseLayout = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectList.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectList.java deleted file mode 100755 index bc0b34c..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectList.java +++ /dev/null @@ -1,185 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import org.cdisk.odm.jaxb.DataType; - - -/** - *

Java class for OCodmComplexTypeDefinition-MultiSelectList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-MultiSelectList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListItem" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-MultiSelectList", propOrder = { - "multiSelectListItem" -}) -public class OCodmComplexTypeDefinitionMultiSelectList { - - @XmlElement(name = "MultiSelectListItem") - protected List multiSelectListItem; - @XmlAttribute(name = "ID", required = true) - protected String id; - @XmlAttribute(name = "Name") - protected String name; - @XmlAttribute(name = "DataType") - protected DataType dataType; - @XmlAttribute(name = "ActualDataType") - protected DataType actualDataType; - - /** - * Gets the value of the multiSelectListItem property. - * - *

- * 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 set method for the multiSelectListItem property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMultiSelectListItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionMultiSelectListItem } - * - * - */ - public List getMultiSelectListItem() { - if (multiSelectListItem == null) { - multiSelectListItem = new ArrayList(); - } - return this.multiSelectListItem; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = 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 dataType property. - * - * @return - * possible object is - * {@link DataType } - * - */ - public DataType getDataType() { - return dataType; - } - - /** - * Sets the value of the dataType property. - * - * @param value - * allowed object is - * {@link DataType } - * - */ - public void setDataType(DataType value) { - this.dataType = value; - } - - /** - * Gets the value of the actualDataType property. - * - * @return - * possible object is - * {@link DataType } - * - */ - public DataType getActualDataType() { - return actualDataType; - } - - /** - * Sets the value of the actualDataType property. - * - * @param value - * allowed object is - * {@link DataType } - * - */ - public void setActualDataType(DataType value) { - this.actualDataType = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectListItem.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectListItem.java deleted file mode 100755 index 0cc3c0c..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectListItem.java +++ /dev/null @@ -1,100 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import org.cdisk.odm.jaxb.ODMcomplexTypeDefinitionDecode; - - -/** - *

Java class for OCodmComplexTypeDefinition-MultiSelectListItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-MultiSelectListItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Decode"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListItemElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListItemAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListItemAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-MultiSelectListItem", propOrder = { - "decode" -}) -public class OCodmComplexTypeDefinitionMultiSelectListItem { - - @XmlElement(name = "Decode", namespace = "http://www.cdisc.org/ns/odm/v1.3", required = true) - protected ODMcomplexTypeDefinitionDecode decode; - @XmlAttribute(name = "CodedOptionValue", required = true) - protected String codedOptionValue; - - /** - * Gets the value of the decode property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDecode } - * - */ - public ODMcomplexTypeDefinitionDecode getDecode() { - return decode; - } - - /** - * Sets the value of the decode property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDecode } - * - */ - public void setDecode(ODMcomplexTypeDefinitionDecode value) { - this.decode = value; - } - - /** - * Gets the value of the codedOptionValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCodedOptionValue() { - return codedOptionValue; - } - - /** - * Sets the value of the codedOptionValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCodedOptionValue(String value) { - this.codedOptionValue = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectListRef.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectListRef.java deleted file mode 100755 index c0515f9..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionMultiSelectListRef.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-MultiSelectListRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-MultiSelectListRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListRefAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}MultiSelectListRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-MultiSelectListRef") -public class OCodmComplexTypeDefinitionMultiSelectListRef { - - @XmlAttribute(name = "MultiSelectListID", required = true) - protected String multiSelectListID; - - /** - * Gets the value of the multiSelectListID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMultiSelectListID() { - return multiSelectListID; - } - - /** - * Sets the value of the multiSelectListID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMultiSelectListID(String value) { - this.multiSelectListID = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionPresentInEventDefinition.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionPresentInEventDefinition.java deleted file mode 100755 index 6662191..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionPresentInEventDefinition.java +++ /dev/null @@ -1,225 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-PresentInEventDefinition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-PresentInEventDefinition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInEventDefinitionElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInEventDefinitionAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInEventDefinitionAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-PresentInEventDefinition") -public class OCodmComplexTypeDefinitionPresentInEventDefinition { - - @XmlAttribute(name = "StudyEventOID", required = true) - protected String studyEventOID; - @XmlAttribute(name = "IsDefaultVersion") - protected String isDefaultVersion; - @XmlAttribute(name = "NullValues") - protected String nullValues; - @XmlAttribute(name = "PasswordRequired") - protected String passwordRequired; - @XmlAttribute(name = "DoubleDataEntry") - protected String doubleDataEntry; - @XmlAttribute(name = "HideCRF") - protected String hideCRF; - @XmlAttribute(name = "SourceDataVerification") - protected String sourceDataVerification; - - /** - * Gets the value of the studyEventOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyEventOID() { - return studyEventOID; - } - - /** - * Sets the value of the studyEventOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyEventOID(String value) { - this.studyEventOID = value; - } - - /** - * Gets the value of the isDefaultVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIsDefaultVersion() { - return isDefaultVersion; - } - - /** - * Sets the value of the isDefaultVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIsDefaultVersion(String value) { - this.isDefaultVersion = value; - } - - /** - * Gets the value of the nullValues property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNullValues() { - return nullValues; - } - - /** - * Sets the value of the nullValues property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNullValues(String value) { - this.nullValues = value; - } - - /** - * Gets the value of the passwordRequired property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPasswordRequired() { - return passwordRequired; - } - - /** - * Sets the value of the passwordRequired property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPasswordRequired(String value) { - this.passwordRequired = value; - } - - /** - * Gets the value of the doubleDataEntry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDoubleDataEntry() { - return doubleDataEntry; - } - - /** - * Sets the value of the doubleDataEntry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDoubleDataEntry(String value) { - this.doubleDataEntry = value; - } - - /** - * Gets the value of the hideCRF property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHideCRF() { - return hideCRF; - } - - /** - * Sets the value of the hideCRF property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHideCRF(String value) { - this.hideCRF = value; - } - - /** - * Gets the value of the sourceDataVerification property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSourceDataVerification() { - return sourceDataVerification; - } - - /** - * Sets the value of the sourceDataVerification property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSourceDataVerification(String value) { - this.sourceDataVerification = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionPresentInForm.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionPresentInForm.java deleted file mode 100755 index 312faef..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionPresentInForm.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-PresentInForm complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-PresentInForm">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ItemGroupRepeat" minOccurs="0"/>
- *         <element name="ItemGroupHeader" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInFormElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInFormAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}PresentInFormAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-PresentInForm", propOrder = { - "itemGroupRepeat", - "itemGroupHeader" -}) -public class OCodmComplexTypeDefinitionPresentInForm { - - @XmlElement(name = "ItemGroupRepeat") - protected OCodmComplexTypeDefinitionItemGroupRepeat itemGroupRepeat; - @XmlElement(name = "ItemGroupHeader") - protected String itemGroupHeader; - @XmlAttribute(name = "FormOID", required = true) - protected String formOID; - @XmlAttribute(name = "ShowGroup") - protected String showGroup; - - /** - * Gets the value of the itemGroupRepeat property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionItemGroupRepeat } - * - */ - public OCodmComplexTypeDefinitionItemGroupRepeat getItemGroupRepeat() { - return itemGroupRepeat; - } - - /** - * Sets the value of the itemGroupRepeat property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionItemGroupRepeat } - * - */ - public void setItemGroupRepeat(OCodmComplexTypeDefinitionItemGroupRepeat value) { - this.itemGroupRepeat = value; - } - - /** - * Gets the value of the itemGroupHeader property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getItemGroupHeader() { - return itemGroupHeader; - } - - /** - * Sets the value of the itemGroupHeader property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setItemGroupHeader(String value) { - this.itemGroupHeader = value; - } - - /** - * Gets the value of the formOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormOID() { - return formOID; - } - - /** - * Sets the value of the formOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormOID(String value) { - this.formOID = value; - } - - /** - * Gets the value of the showGroup property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShowGroup() { - return showGroup; - } - - /** - * Sets the value of the showGroup property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShowGroup(String value) { - this.showGroup = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionRelatedInformation.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionRelatedInformation.java deleted file mode 100755 index 6bc900e..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionRelatedInformation.java +++ /dev/null @@ -1,156 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-RelatedInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-RelatedInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MEDLINEIdentifier" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="ResultsReference" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="URLReference" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="URLDescription" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}RelatedInformationElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}RelatedInformationAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}RelatedInformationAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-RelatedInformation", propOrder = { - "medlineIdentifier", - "resultsReference", - "urlReference", - "urlDescription" -}) -public class OCodmComplexTypeDefinitionRelatedInformation { - - @XmlElement(name = "MEDLINEIdentifier") - protected String medlineIdentifier; - @XmlElement(name = "ResultsReference") - protected String resultsReference; - @XmlElement(name = "URLReference") - protected String urlReference; - @XmlElement(name = "URLDescription") - protected String urlDescription; - - /** - * Gets the value of the medlineIdentifier property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMEDLINEIdentifier() { - return medlineIdentifier; - } - - /** - * Sets the value of the medlineIdentifier property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMEDLINEIdentifier(String value) { - this.medlineIdentifier = value; - } - - /** - * Gets the value of the resultsReference property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResultsReference() { - return resultsReference; - } - - /** - * Sets the value of the resultsReference property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResultsReference(String value) { - this.resultsReference = value; - } - - /** - * Gets the value of the urlReference property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getURLReference() { - return urlReference; - } - - /** - * Sets the value of the urlReference property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setURLReference(String value) { - this.urlReference = value; - } - - /** - * Gets the value of the urlDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getURLDescription() { - return urlDescription; - } - - /** - * Sets the value of the urlDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setURLDescription(String value) { - this.urlDescription = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSection.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSection.java deleted file mode 100755 index 4438b4c..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSection.java +++ /dev/null @@ -1,170 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-Section complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-Section">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SectionAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SectionAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-Section") -public class OCodmComplexTypeDefinitionSection { - - @XmlAttribute(name = "SectionLabel") - protected String sectionLabel; - @XmlAttribute(name = "SectionTitle") - protected String sectionTitle; - @XmlAttribute(name = "SectionSubtitle") - protected String sectionSubtitle; - @XmlAttribute(name = "SectionInstructions") - protected String sectionInstructions; - @XmlAttribute(name = "SectionPageNumber") - protected String sectionPageNumber; - - /** - * Gets the value of the sectionLabel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectionLabel() { - return sectionLabel; - } - - /** - * Sets the value of the sectionLabel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectionLabel(String value) { - this.sectionLabel = value; - } - - /** - * Gets the value of the sectionTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectionTitle() { - return sectionTitle; - } - - /** - * Sets the value of the sectionTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectionTitle(String value) { - this.sectionTitle = value; - } - - /** - * Gets the value of the sectionSubtitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectionSubtitle() { - return sectionSubtitle; - } - - /** - * Sets the value of the sectionSubtitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectionSubtitle(String value) { - this.sectionSubtitle = value; - } - - /** - * Gets the value of the sectionInstructions property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectionInstructions() { - return sectionInstructions; - } - - /** - * Sets the value of the sectionInstructions property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectionInstructions(String value) { - this.sectionInstructions = value; - } - - /** - * Gets the value of the sectionPageNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectionPageNumber() { - return sectionPageNumber; - } - - /** - * Sets the value of the sectionPageNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectionPageNumber(String value) { - this.sectionPageNumber = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSectionDetailsDefinition.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSectionDetailsDefinition.java deleted file mode 100755 index f9db6ab..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSectionDetailsDefinition.java +++ /dev/null @@ -1,79 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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; - - -/** - *

Java class for OCodmComplexTypeDefinition-SectionDetailsDefinition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-SectionDetailsDefinition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}Section" maxOccurs="unbounded"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SectionDetailsElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SectionDetailsAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SectionDetailsAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-SectionDetailsDefinition", propOrder = { - "section" -}) -public class OCodmComplexTypeDefinitionSectionDetailsDefinition { - - @XmlElement(name = "Section", required = true) - protected List section; - - /** - * Gets the value of the section property. - * - *

- * 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 set method for the section property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSection().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionSection } - * - * - */ - public List getSection() { - if (section == null) { - section = new ArrayList(); - } - return this.section; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSimpleConditionalDisplay.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSimpleConditionalDisplay.java deleted file mode 100755 index a2b7576..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSimpleConditionalDisplay.java +++ /dev/null @@ -1,128 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-SimpleConditionalDisplay complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-SimpleConditionalDisplay">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ControlItemName" type="{http://www.cdisc.org/ns/odm/v1.3}text"/>
- *         <element name="OptionValue" type="{http://www.cdisc.org/ns/odm/v1.3}text"/>
- *         <element name="Message" type="{http://www.cdisc.org/ns/odm/v1.3}text"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SimpleConditionalDisplayElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SimpleConditionalDisplayAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SimpleConditionalDisplayAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-SimpleConditionalDisplay", propOrder = { - "controlItemName", - "optionValue", - "message" -}) -public class OCodmComplexTypeDefinitionSimpleConditionalDisplay { - - @XmlElement(name = "ControlItemName", required = true) - protected String controlItemName; - @XmlElement(name = "OptionValue", required = true) - protected String optionValue; - @XmlElement(name = "Message", required = true) - protected String message; - - /** - * Gets the value of the controlItemName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getControlItemName() { - return controlItemName; - } - - /** - * Sets the value of the controlItemName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setControlItemName(String value) { - this.controlItemName = value; - } - - /** - * Gets the value of the optionValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOptionValue() { - return optionValue; - } - - /** - * Sets the value of the optionValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOptionValue(String value) { - this.optionValue = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyDescriptionAndStatus.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyDescriptionAndStatus.java deleted file mode 100755 index 6fe2386..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyDescriptionAndStatus.java +++ /dev/null @@ -1,652 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for OCodmComplexTypeDefinition-StudyDescriptionAndStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-StudyDescriptionAndStatus">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="StudySytemStatus" type="{http://www.cdisc.org/ns/odm/v1.3}text"/>
- *         <element name="PrincipalInvestigator" type="{http://www.cdisc.org/ns/odm/v1.3}text"/>
- *         <element name="DetailedDescription" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Sponsor" type="{http://www.cdisc.org/ns/odm/v1.3}text"/>
- *         <element name="Collaborators" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="StudyPhase" type="{http://www.cdisc.org/ns/odm/v1.3}text"/>
- *         <element name="ProtocolType" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="ProtocolVerificationDate" type="{http://www.cdisc.org/ns/odm/v1.3}date" minOccurs="0"/>
- *         <element name="Purpose" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Duration" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Selection" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Timing" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Allocation" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Masking" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="Control" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="InterventionModel" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <element name="StudyClassification" type="{http://www.cdisc.org/ns/odm/v1.3}text" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyDescriptionAndStatusElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyDescriptionAndStatusAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyDescriptionAndStatusAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-StudyDescriptionAndStatus", propOrder = { - "studySytemStatus", - "principalInvestigator", - "detailedDescription", - "sponsor", - "collaborators", - "studyPhase", - "protocolType", - "protocolVerificationDate", - "purpose", - "duration", - "selection", - "timing", - "allocation", - "masking", - "control", - "interventionModel", - "studyClassification" -}) -public class OCodmComplexTypeDefinitionStudyDescriptionAndStatus { - - @XmlElement(name = "StudySytemStatus", required = true) - protected String studySytemStatus; - @XmlElement(name = "PrincipalInvestigator", required = true) - protected String principalInvestigator; - @XmlElement(name = "DetailedDescription") - protected String detailedDescription; - @XmlElement(name = "Sponsor", required = true) - protected String sponsor; - @XmlElement(name = "Collaborators") - protected String collaborators; - @XmlElement(name = "StudyPhase", required = true) - protected String studyPhase; - @XmlElement(name = "ProtocolType") - protected String protocolType; - @XmlElement(name = "ProtocolVerificationDate") - protected XMLGregorianCalendar protocolVerificationDate; - @XmlElement(name = "Purpose") - protected String purpose; - @XmlElement(name = "Duration") - protected String duration; - @XmlElement(name = "Selection") - protected String selection; - @XmlElement(name = "Timing") - protected String timing; - @XmlElement(name = "Allocation") - protected String allocation; - @XmlElement(name = "Masking") - protected String masking; - @XmlElement(name = "Control") - protected String control; - @XmlElement(name = "InterventionModel") - protected String interventionModel; - @XmlElement(name = "StudyClassification") - protected String studyClassification; - @XmlAttribute(name = "OfficialTitle") - protected String officialTitle; - @XmlAttribute(name = "SecondaryIDs") - protected String secondaryIDs; - @XmlAttribute(name = "DateCreated") - protected XMLGregorianCalendar dateCreated; - @XmlAttribute(name = "StartDate") - protected XMLGregorianCalendar startDate; - @XmlAttribute(name = "StudyCompletionDate") - protected XMLGregorianCalendar studyCompletionDate; - - /** - * Gets the value of the studySytemStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudySytemStatus() { - return studySytemStatus; - } - - /** - * Sets the value of the studySytemStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudySytemStatus(String value) { - this.studySytemStatus = value; - } - - /** - * Gets the value of the principalInvestigator property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrincipalInvestigator() { - return principalInvestigator; - } - - /** - * Sets the value of the principalInvestigator property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrincipalInvestigator(String value) { - this.principalInvestigator = value; - } - - /** - * Gets the value of the detailedDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetailedDescription() { - return detailedDescription; - } - - /** - * Sets the value of the detailedDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetailedDescription(String value) { - this.detailedDescription = value; - } - - /** - * Gets the value of the sponsor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSponsor() { - return sponsor; - } - - /** - * Sets the value of the sponsor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSponsor(String value) { - this.sponsor = value; - } - - /** - * Gets the value of the collaborators property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCollaborators() { - return collaborators; - } - - /** - * Sets the value of the collaborators property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCollaborators(String value) { - this.collaborators = value; - } - - /** - * Gets the value of the studyPhase property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyPhase() { - return studyPhase; - } - - /** - * Sets the value of the studyPhase property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyPhase(String value) { - this.studyPhase = value; - } - - /** - * Gets the value of the protocolType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtocolType() { - return protocolType; - } - - /** - * Sets the value of the protocolType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtocolType(String value) { - this.protocolType = value; - } - - /** - * Gets the value of the protocolVerificationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProtocolVerificationDate() { - return protocolVerificationDate; - } - - /** - * Sets the value of the protocolVerificationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProtocolVerificationDate(XMLGregorianCalendar value) { - this.protocolVerificationDate = value; - } - - /** - * Gets the value of the purpose property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPurpose() { - return purpose; - } - - /** - * Sets the value of the purpose property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPurpose(String value) { - this.purpose = value; - } - - /** - * Gets the value of the duration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuration() { - return duration; - } - - /** - * Sets the value of the duration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuration(String value) { - this.duration = value; - } - - /** - * Gets the value of the selection property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSelection() { - return selection; - } - - /** - * Sets the value of the selection property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSelection(String value) { - this.selection = value; - } - - /** - * Gets the value of the timing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTiming() { - return timing; - } - - /** - * Sets the value of the timing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTiming(String value) { - this.timing = value; - } - - /** - * Gets the value of the allocation property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAllocation() { - return allocation; - } - - /** - * Sets the value of the allocation property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAllocation(String value) { - this.allocation = value; - } - - /** - * Gets the value of the masking property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMasking() { - return masking; - } - - /** - * Sets the value of the masking property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMasking(String value) { - this.masking = value; - } - - /** - * Gets the value of the control property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getControl() { - return control; - } - - /** - * Sets the value of the control property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setControl(String value) { - this.control = value; - } - - /** - * Gets the value of the interventionModel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInterventionModel() { - return interventionModel; - } - - /** - * Sets the value of the interventionModel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInterventionModel(String value) { - this.interventionModel = value; - } - - /** - * Gets the value of the studyClassification property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyClassification() { - return studyClassification; - } - - /** - * Sets the value of the studyClassification property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyClassification(String value) { - this.studyClassification = value; - } - - /** - * Gets the value of the officialTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfficialTitle() { - return officialTitle; - } - - /** - * Sets the value of the officialTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfficialTitle(String value) { - this.officialTitle = value; - } - - /** - * Gets the value of the secondaryIDs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryIDs() { - return secondaryIDs; - } - - /** - * Sets the value of the secondaryIDs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryIDs(String value) { - this.secondaryIDs = value; - } - - /** - * Gets the value of the dateCreated property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateCreated() { - return dateCreated; - } - - /** - * Sets the value of the dateCreated property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateCreated(XMLGregorianCalendar value) { - this.dateCreated = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - - /** - * Gets the value of the studyCompletionDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStudyCompletionDate() { - return studyCompletionDate; - } - - /** - * Sets the value of the studyCompletionDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStudyCompletionDate(XMLGregorianCalendar value) { - this.studyCompletionDate = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyDetails.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyDetails.java deleted file mode 100755 index 22a97ff..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyDetails.java +++ /dev/null @@ -1,263 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-StudyDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-StudyDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyDescriptionAndStatus"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}ConditionsAndEligibility"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}FacilityInformation" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}RelatedInformation" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterConfiguration"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyDetailsElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyDetailsAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyDetailsAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-StudyDetails", propOrder = { - "studyDescriptionAndStatus", - "conditionsAndEligibility", - "facilityInformation", - "relatedInformation", - "studyParameterConfiguration" -}) -public class OCodmComplexTypeDefinitionStudyDetails { - - @XmlElement(name = "StudyDescriptionAndStatus", required = true) - protected OCodmComplexTypeDefinitionStudyDescriptionAndStatus studyDescriptionAndStatus; - @XmlElement(name = "ConditionsAndEligibility", required = true) - protected OCodmComplexTypeDefinitionConditionsAndEligibility conditionsAndEligibility; - @XmlElement(name = "FacilityInformation") - protected OCodmComplexTypeDefinitionFacilityInformation facilityInformation; - @XmlElement(name = "RelatedInformation") - protected OCodmComplexTypeDefinitionRelatedInformation relatedInformation; - @XmlElement(name = "StudyParameterConfiguration", required = true) - protected OCodmComplexTypeDefinitionStudyParameterConfiguration studyParameterConfiguration; - @XmlAttribute(name = "StudyOID", required = true) - protected String studyOID; - @XmlAttribute(name = "SiteName") - protected String siteName; - @XmlAttribute(name = "ParentStudyName") - protected String parentStudyName; - - /** - * Gets the value of the studyDescriptionAndStatus property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionStudyDescriptionAndStatus } - * - */ - public OCodmComplexTypeDefinitionStudyDescriptionAndStatus getStudyDescriptionAndStatus() { - return studyDescriptionAndStatus; - } - - /** - * Sets the value of the studyDescriptionAndStatus property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionStudyDescriptionAndStatus } - * - */ - public void setStudyDescriptionAndStatus(OCodmComplexTypeDefinitionStudyDescriptionAndStatus value) { - this.studyDescriptionAndStatus = value; - } - - /** - * Gets the value of the conditionsAndEligibility property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionConditionsAndEligibility } - * - */ - public OCodmComplexTypeDefinitionConditionsAndEligibility getConditionsAndEligibility() { - return conditionsAndEligibility; - } - - /** - * Sets the value of the conditionsAndEligibility property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionConditionsAndEligibility } - * - */ - public void setConditionsAndEligibility(OCodmComplexTypeDefinitionConditionsAndEligibility value) { - this.conditionsAndEligibility = value; - } - - /** - * Gets the value of the facilityInformation property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionFacilityInformation } - * - */ - public OCodmComplexTypeDefinitionFacilityInformation getFacilityInformation() { - return facilityInformation; - } - - /** - * Sets the value of the facilityInformation property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionFacilityInformation } - * - */ - public void setFacilityInformation(OCodmComplexTypeDefinitionFacilityInformation value) { - this.facilityInformation = value; - } - - /** - * Gets the value of the relatedInformation property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionRelatedInformation } - * - */ - public OCodmComplexTypeDefinitionRelatedInformation getRelatedInformation() { - return relatedInformation; - } - - /** - * Sets the value of the relatedInformation property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionRelatedInformation } - * - */ - public void setRelatedInformation(OCodmComplexTypeDefinitionRelatedInformation value) { - this.relatedInformation = value; - } - - /** - * Gets the value of the studyParameterConfiguration property. - * - * @return - * possible object is - * {@link OCodmComplexTypeDefinitionStudyParameterConfiguration } - * - */ - public OCodmComplexTypeDefinitionStudyParameterConfiguration getStudyParameterConfiguration() { - return studyParameterConfiguration; - } - - /** - * Sets the value of the studyParameterConfiguration property. - * - * @param value - * allowed object is - * {@link OCodmComplexTypeDefinitionStudyParameterConfiguration } - * - */ - public void setStudyParameterConfiguration(OCodmComplexTypeDefinitionStudyParameterConfiguration value) { - this.studyParameterConfiguration = value; - } - - /** - * Gets the value of the studyOID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyOID() { - return studyOID; - } - - /** - * Sets the value of the studyOID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyOID(String value) { - this.studyOID = value; - } - - /** - * Gets the value of the siteName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSiteName() { - return siteName; - } - - /** - * Sets the value of the siteName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSiteName(String value) { - this.siteName = value; - } - - /** - * Gets the value of the parentStudyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParentStudyName() { - return parentStudyName; - } - - /** - * Sets the value of the parentStudyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParentStudyName(String value) { - this.parentStudyName = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyGroupClassList.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyGroupClassList.java deleted file mode 100755 index 0ceac8f..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyGroupClassList.java +++ /dev/null @@ -1,212 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-StudyGroupClassList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-StudyGroupClassList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyGroupItem" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyGroupClassListElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyGroupClassListAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyGroupClassListAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-StudyGroupClassList", propOrder = { - "studyGroupItem" -}) -public class OCodmComplexTypeDefinitionStudyGroupClassList { - - @XmlElement(name = "StudyGroupItem") - protected List studyGroupItem; - @XmlAttribute(name = "ID", required = true) - protected String id; - @XmlAttribute(name = "Name") - protected String name; - @XmlAttribute(name = "Type") - protected String type; - @XmlAttribute(name = "Status") - protected String status; - @XmlAttribute(name = "SubjectAssignment") - protected String subjectAssignment; - - /** - * Gets the value of the studyGroupItem property. - * - *

- * 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 set method for the studyGroupItem property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyGroupItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionStudyGroupItem } - * - * - */ - public List getStudyGroupItem() { - if (studyGroupItem == null) { - studyGroupItem = new ArrayList(); - } - return this.studyGroupItem; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = 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 type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the subjectAssignment property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubjectAssignment() { - return subjectAssignment; - } - - /** - * Sets the value of the subjectAssignment property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubjectAssignment(String value) { - this.subjectAssignment = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyGroupItem.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyGroupItem.java deleted file mode 100755 index bdd2fcf..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyGroupItem.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-StudyGroupItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-StudyGroupItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyGroupItemElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyGroupItemAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyGroupItemAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-StudyGroupItem") -public class OCodmComplexTypeDefinitionStudyGroupItem { - - @XmlAttribute(name = "Name") - protected String name; - @XmlAttribute(name = "Description") - protected String description; - - /** - * 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 description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterConfiguration.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterConfiguration.java deleted file mode 100755 index 0773039..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterConfiguration.java +++ /dev/null @@ -1,112 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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; - - -/** - *

Java class for OCodmComplexTypeDefinition-StudyParameterConfiguration complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-StudyParameterConfiguration">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListRef" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterList" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterConfigurationElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterConfigurationAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterConfigurationAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-StudyParameterConfiguration", propOrder = { - "studyParameterListRef", - "studyParameterList" -}) -public class OCodmComplexTypeDefinitionStudyParameterConfiguration { - - @XmlElement(name = "StudyParameterListRef") - protected List studyParameterListRef; - @XmlElement(name = "StudyParameterList") - protected List studyParameterList; - - /** - * Gets the value of the studyParameterListRef property. - * - *

- * 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 set method for the studyParameterListRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyParameterListRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionStudyParameterListRef } - * - * - */ - public List getStudyParameterListRef() { - if (studyParameterListRef == null) { - studyParameterListRef = new ArrayList(); - } - return this.studyParameterListRef; - } - - /** - * Gets the value of the studyParameterList property. - * - *

- * 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 set method for the studyParameterList property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyParameterList().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionStudyParameterList } - * - * - */ - public List getStudyParameterList() { - if (studyParameterList == null) { - studyParameterList = new ArrayList(); - } - return this.studyParameterList; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterList.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterList.java deleted file mode 100755 index a498883..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterList.java +++ /dev/null @@ -1,132 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-StudyParameterList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-StudyParameterList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListItem" maxOccurs="unbounded" minOccurs="0"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-StudyParameterList", propOrder = { - "studyParameterListItem" -}) -public class OCodmComplexTypeDefinitionStudyParameterList { - - @XmlElement(name = "StudyParameterListItem") - protected List studyParameterListItem; - @XmlAttribute(name = "ID", required = true) - protected String id; - @XmlAttribute(name = "Name") - protected String name; - - /** - * Gets the value of the studyParameterListItem property. - * - *

- * 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 set method for the studyParameterListItem property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStudyParameterListItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OCodmComplexTypeDefinitionStudyParameterListItem } - * - * - */ - public List getStudyParameterListItem() { - if (studyParameterListItem == null) { - studyParameterListItem = new ArrayList(); - } - return this.studyParameterListItem; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getID() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setID(String value) { - this.id = 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; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterListItem.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterListItem.java deleted file mode 100755 index 6719e32..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterListItem.java +++ /dev/null @@ -1,100 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import org.cdisk.odm.jaxb.ODMcomplexTypeDefinitionDecode; - - -/** - *

Java class for OCodmComplexTypeDefinition-StudyParameterListItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-StudyParameterListItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.cdisc.org/ns/odm/v1.3}Decode"/>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListItemElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListItemAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListItemAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-StudyParameterListItem", propOrder = { - "decode" -}) -public class OCodmComplexTypeDefinitionStudyParameterListItem { - - @XmlElement(name = "Decode", namespace = "http://www.cdisc.org/ns/odm/v1.3", required = true) - protected ODMcomplexTypeDefinitionDecode decode; - @XmlAttribute(name = "CodedParameterValue", required = true) - protected String codedParameterValue; - - /** - * Gets the value of the decode property. - * - * @return - * possible object is - * {@link ODMcomplexTypeDefinitionDecode } - * - */ - public ODMcomplexTypeDefinitionDecode getDecode() { - return decode; - } - - /** - * Sets the value of the decode property. - * - * @param value - * allowed object is - * {@link ODMcomplexTypeDefinitionDecode } - * - */ - public void setDecode(ODMcomplexTypeDefinitionDecode value) { - this.decode = value; - } - - /** - * Gets the value of the codedParameterValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCodedParameterValue() { - return codedParameterValue; - } - - /** - * Sets the value of the codedParameterValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCodedParameterValue(String value) { - this.codedParameterValue = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterListRef.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterListRef.java deleted file mode 100755 index 8f56ba0..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionStudyParameterListRef.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-StudyParameterListRef complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-StudyParameterListRef">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListRefElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListRefAttributeExtension"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}StudyParameterListRefAttributeDefinition"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-StudyParameterListRef") -public class OCodmComplexTypeDefinitionStudyParameterListRef { - - @XmlAttribute(name = "StudyParameterListID", required = true) - protected String studyParameterListID; - @XmlAttribute(name = "Value", required = true) - protected String value; - - /** - * Gets the value of the studyParameterListID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyParameterListID() { - return studyParameterListID; - } - - /** - * Sets the value of the studyParameterListID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyParameterListID(String value) { - this.studyParameterListID = 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; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSubjectGroupData.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSubjectGroupData.java deleted file mode 100755 index 2a63e91..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/OCodmComplexTypeDefinitionSubjectGroupData.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OCodmComplexTypeDefinition-SubjectGroupData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OCodmComplexTypeDefinition-SubjectGroupData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SubjectGroupDataElementExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SubjectGroupDataAttributeDefinition"/>
- *       <attGroup ref="{http://www.openclinica.org/ns/odm_ext_v130/v3.1}SubjectGroupDataAttributeExtension"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OCodmComplexTypeDefinition-SubjectGroupData") -public class OCodmComplexTypeDefinitionSubjectGroupData { - - @XmlAttribute(name = "StudyGroupClassID", required = true) - protected String studyGroupClassID; - @XmlAttribute(name = "StudyGroupClassName") - protected String studyGroupClassName; - @XmlAttribute(name = "StudyGroupName") - protected String studyGroupName; - - /** - * Gets the value of the studyGroupClassID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyGroupClassID() { - return studyGroupClassID; - } - - /** - * Sets the value of the studyGroupClassID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyGroupClassID(String value) { - this.studyGroupClassID = value; - } - - /** - * Gets the value of the studyGroupClassName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyGroupClassName() { - return studyGroupClassName; - } - - /** - * Sets the value of the studyGroupClassName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyGroupClassName(String value) { - this.studyGroupClassName = value; - } - - /** - * Gets the value of the studyGroupName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStudyGroupName() { - return studyGroupName; - } - - /** - * Sets the value of the studyGroupName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStudyGroupName(String value) { - this.studyGroupName = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/ObjectFactory.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/ObjectFactory.java deleted file mode 100755 index f965f90..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/ObjectFactory.java +++ /dev/null @@ -1,636 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.odm_ext_v130.v3; - -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.openclinica.ns.odm_ext_v130.v3 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. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _PresentInEventDefinition_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "PresentInEventDefinition"); - private final static QName _StudyDetails_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "StudyDetails"); - private final static QName _ItemDetails_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "ItemDetails"); - private final static QName _FormDetails_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "FormDetails"); - private final static QName _PresentInForm_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "PresentInForm"); - private final static QName _FacilityInformation_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "FacilityInformation"); - private final static QName _MultiSelectListRef_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "MultiSelectListRef"); - private final static QName _SubjectGroupData_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "SubjectGroupData"); - private final static QName _StudyGroupItem_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "StudyGroupItem"); - private final static QName _SectionDetailsDefinition_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "SectionDetailsDefinition"); - private final static QName _RelatedInformation_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "RelatedInformation"); - private final static QName _MultiSelectListItem_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "MultiSelectListItem"); - private final static QName _DiscrepancyNotes_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "DiscrepancyNotes"); - private final static QName _EventDefinitionDetails_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "EventDefinitionDetails"); - private final static QName _ItemGroupRepeat_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "ItemGroupRepeat"); - private final static QName _MultiSelectList_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "MultiSelectList"); - private final static QName _StudyDescriptionAndStatus_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "StudyDescriptionAndStatus"); - private final static QName _ConditionsAndEligibility_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "ConditionsAndEligibility"); - private final static QName _StudyParameterConfiguration_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "StudyParameterConfiguration"); - private final static QName _AuditLogs_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "AuditLogs"); - private final static QName _DiscrepancyNote_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "DiscrepancyNote"); - private final static QName _StudyGroupClassList_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "StudyGroupClassList"); - private final static QName _StudyParameterList_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "StudyParameterList"); - private final static QName _ItemPresentInForm_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "ItemPresentInForm"); - private final static QName _Section_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "Section"); - private final static QName _Age_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "Age"); - private final static QName _StudyParameterListRef_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "StudyParameterListRef"); - private final static QName _ItemGroupDetails_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "ItemGroupDetails"); - private final static QName _SimpleConditionalDisplay_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "SimpleConditionalDisplay"); - private final static QName _AuditLog_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "AuditLog"); - private final static QName _ItemResponse_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "ItemResponse"); - private final static QName _ChildNote_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "ChildNote"); - private final static QName _StudyParameterListItem_QNAME = new QName("http://www.openclinica.org/ns/odm_ext_v130/v3.1", "StudyParameterListItem"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openclinica.ns.odm_ext_v130.v3 - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionDiscrepancyNotes } - * - */ - public OCodmComplexTypeDefinitionDiscrepancyNotes createOCodmComplexTypeDefinitionDiscrepancyNotes() { - return new OCodmComplexTypeDefinitionDiscrepancyNotes(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionAge } - * - */ - public OCodmComplexTypeDefinitionAge createOCodmComplexTypeDefinitionAge() { - return new OCodmComplexTypeDefinitionAge(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionEventDefinitionDetails } - * - */ - public OCodmComplexTypeDefinitionEventDefinitionDetails createOCodmComplexTypeDefinitionEventDefinitionDetails() { - return new OCodmComplexTypeDefinitionEventDefinitionDetails(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionChildNote } - * - */ - public OCodmComplexTypeDefinitionChildNote createOCodmComplexTypeDefinitionChildNote() { - return new OCodmComplexTypeDefinitionChildNote(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionMultiSelectListItem } - * - */ - public OCodmComplexTypeDefinitionMultiSelectListItem createOCodmComplexTypeDefinitionMultiSelectListItem() { - return new OCodmComplexTypeDefinitionMultiSelectListItem(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionStudyParameterListItem } - * - */ - public OCodmComplexTypeDefinitionStudyParameterListItem createOCodmComplexTypeDefinitionStudyParameterListItem() { - return new OCodmComplexTypeDefinitionStudyParameterListItem(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionFormDetails } - * - */ - public OCodmComplexTypeDefinitionFormDetails createOCodmComplexTypeDefinitionFormDetails() { - return new OCodmComplexTypeDefinitionFormDetails(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionItemDetails } - * - */ - public OCodmComplexTypeDefinitionItemDetails createOCodmComplexTypeDefinitionItemDetails() { - return new OCodmComplexTypeDefinitionItemDetails(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionStudyParameterListRef } - * - */ - public OCodmComplexTypeDefinitionStudyParameterListRef createOCodmComplexTypeDefinitionStudyParameterListRef() { - return new OCodmComplexTypeDefinitionStudyParameterListRef(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionItemGroupRepeat } - * - */ - public OCodmComplexTypeDefinitionItemGroupRepeat createOCodmComplexTypeDefinitionItemGroupRepeat() { - return new OCodmComplexTypeDefinitionItemGroupRepeat(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionItemGroupDetails } - * - */ - public OCodmComplexTypeDefinitionItemGroupDetails createOCodmComplexTypeDefinitionItemGroupDetails() { - return new OCodmComplexTypeDefinitionItemGroupDetails(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionStudyDescriptionAndStatus } - * - */ - public OCodmComplexTypeDefinitionStudyDescriptionAndStatus createOCodmComplexTypeDefinitionStudyDescriptionAndStatus() { - return new OCodmComplexTypeDefinitionStudyDescriptionAndStatus(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionMultiSelectList } - * - */ - public OCodmComplexTypeDefinitionMultiSelectList createOCodmComplexTypeDefinitionMultiSelectList() { - return new OCodmComplexTypeDefinitionMultiSelectList(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionConditionsAndEligibility } - * - */ - public OCodmComplexTypeDefinitionConditionsAndEligibility createOCodmComplexTypeDefinitionConditionsAndEligibility() { - return new OCodmComplexTypeDefinitionConditionsAndEligibility(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionFacilityInformation } - * - */ - public OCodmComplexTypeDefinitionFacilityInformation createOCodmComplexTypeDefinitionFacilityInformation() { - return new OCodmComplexTypeDefinitionFacilityInformation(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionStudyParameterConfiguration } - * - */ - public OCodmComplexTypeDefinitionStudyParameterConfiguration createOCodmComplexTypeDefinitionStudyParameterConfiguration() { - return new OCodmComplexTypeDefinitionStudyParameterConfiguration(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionPresentInForm } - * - */ - public OCodmComplexTypeDefinitionPresentInForm createOCodmComplexTypeDefinitionPresentInForm() { - return new OCodmComplexTypeDefinitionPresentInForm(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionSimpleConditionalDisplay } - * - */ - public OCodmComplexTypeDefinitionSimpleConditionalDisplay createOCodmComplexTypeDefinitionSimpleConditionalDisplay() { - return new OCodmComplexTypeDefinitionSimpleConditionalDisplay(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionStudyGroupClassList } - * - */ - public OCodmComplexTypeDefinitionStudyGroupClassList createOCodmComplexTypeDefinitionStudyGroupClassList() { - return new OCodmComplexTypeDefinitionStudyGroupClassList(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionAuditLogs } - * - */ - public OCodmComplexTypeDefinitionAuditLogs createOCodmComplexTypeDefinitionAuditLogs() { - return new OCodmComplexTypeDefinitionAuditLogs(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionDiscrepancyNote } - * - */ - public OCodmComplexTypeDefinitionDiscrepancyNote createOCodmComplexTypeDefinitionDiscrepancyNote() { - return new OCodmComplexTypeDefinitionDiscrepancyNote(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionSubjectGroupData } - * - */ - public OCodmComplexTypeDefinitionSubjectGroupData createOCodmComplexTypeDefinitionSubjectGroupData() { - return new OCodmComplexTypeDefinitionSubjectGroupData(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionMultiSelectListRef } - * - */ - public OCodmComplexTypeDefinitionMultiSelectListRef createOCodmComplexTypeDefinitionMultiSelectListRef() { - return new OCodmComplexTypeDefinitionMultiSelectListRef(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionSection } - * - */ - public OCodmComplexTypeDefinitionSection createOCodmComplexTypeDefinitionSection() { - return new OCodmComplexTypeDefinitionSection(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionItemPresentInForm } - * - */ - public OCodmComplexTypeDefinitionItemPresentInForm createOCodmComplexTypeDefinitionItemPresentInForm() { - return new OCodmComplexTypeDefinitionItemPresentInForm(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionItemResponse } - * - */ - public OCodmComplexTypeDefinitionItemResponse createOCodmComplexTypeDefinitionItemResponse() { - return new OCodmComplexTypeDefinitionItemResponse(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionRelatedInformation } - * - */ - public OCodmComplexTypeDefinitionRelatedInformation createOCodmComplexTypeDefinitionRelatedInformation() { - return new OCodmComplexTypeDefinitionRelatedInformation(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionAuditLog } - * - */ - public OCodmComplexTypeDefinitionAuditLog createOCodmComplexTypeDefinitionAuditLog() { - return new OCodmComplexTypeDefinitionAuditLog(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionStudyParameterList } - * - */ - public OCodmComplexTypeDefinitionStudyParameterList createOCodmComplexTypeDefinitionStudyParameterList() { - return new OCodmComplexTypeDefinitionStudyParameterList(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionSectionDetailsDefinition } - * - */ - public OCodmComplexTypeDefinitionSectionDetailsDefinition createOCodmComplexTypeDefinitionSectionDetailsDefinition() { - return new OCodmComplexTypeDefinitionSectionDetailsDefinition(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionStudyGroupItem } - * - */ - public OCodmComplexTypeDefinitionStudyGroupItem createOCodmComplexTypeDefinitionStudyGroupItem() { - return new OCodmComplexTypeDefinitionStudyGroupItem(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionStudyDetails } - * - */ - public OCodmComplexTypeDefinitionStudyDetails createOCodmComplexTypeDefinitionStudyDetails() { - return new OCodmComplexTypeDefinitionStudyDetails(); - } - - /** - * Create an instance of {@link OCodmComplexTypeDefinitionPresentInEventDefinition } - * - */ - public OCodmComplexTypeDefinitionPresentInEventDefinition createOCodmComplexTypeDefinitionPresentInEventDefinition() { - return new OCodmComplexTypeDefinitionPresentInEventDefinition(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionPresentInEventDefinition }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "PresentInEventDefinition") - public JAXBElement createPresentInEventDefinition(OCodmComplexTypeDefinitionPresentInEventDefinition value) { - return new JAXBElement(_PresentInEventDefinition_QNAME, OCodmComplexTypeDefinitionPresentInEventDefinition.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionStudyDetails }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "StudyDetails") - public JAXBElement createStudyDetails(OCodmComplexTypeDefinitionStudyDetails value) { - return new JAXBElement(_StudyDetails_QNAME, OCodmComplexTypeDefinitionStudyDetails.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionItemDetails }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "ItemDetails") - public JAXBElement createItemDetails(OCodmComplexTypeDefinitionItemDetails value) { - return new JAXBElement(_ItemDetails_QNAME, OCodmComplexTypeDefinitionItemDetails.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionFormDetails }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "FormDetails") - public JAXBElement createFormDetails(OCodmComplexTypeDefinitionFormDetails value) { - return new JAXBElement(_FormDetails_QNAME, OCodmComplexTypeDefinitionFormDetails.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionPresentInForm }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "PresentInForm") - public JAXBElement createPresentInForm(OCodmComplexTypeDefinitionPresentInForm value) { - return new JAXBElement(_PresentInForm_QNAME, OCodmComplexTypeDefinitionPresentInForm.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionFacilityInformation }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "FacilityInformation") - public JAXBElement createFacilityInformation(OCodmComplexTypeDefinitionFacilityInformation value) { - return new JAXBElement(_FacilityInformation_QNAME, OCodmComplexTypeDefinitionFacilityInformation.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionMultiSelectListRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "MultiSelectListRef") - public JAXBElement createMultiSelectListRef(OCodmComplexTypeDefinitionMultiSelectListRef value) { - return new JAXBElement(_MultiSelectListRef_QNAME, OCodmComplexTypeDefinitionMultiSelectListRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionSubjectGroupData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "SubjectGroupData") - public JAXBElement createSubjectGroupData(OCodmComplexTypeDefinitionSubjectGroupData value) { - return new JAXBElement(_SubjectGroupData_QNAME, OCodmComplexTypeDefinitionSubjectGroupData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionStudyGroupItem }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "StudyGroupItem") - public JAXBElement createStudyGroupItem(OCodmComplexTypeDefinitionStudyGroupItem value) { - return new JAXBElement(_StudyGroupItem_QNAME, OCodmComplexTypeDefinitionStudyGroupItem.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionSectionDetailsDefinition }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "SectionDetailsDefinition") - public JAXBElement createSectionDetailsDefinition(OCodmComplexTypeDefinitionSectionDetailsDefinition value) { - return new JAXBElement(_SectionDetailsDefinition_QNAME, OCodmComplexTypeDefinitionSectionDetailsDefinition.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionRelatedInformation }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "RelatedInformation") - public JAXBElement createRelatedInformation(OCodmComplexTypeDefinitionRelatedInformation value) { - return new JAXBElement(_RelatedInformation_QNAME, OCodmComplexTypeDefinitionRelatedInformation.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionMultiSelectListItem }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "MultiSelectListItem") - public JAXBElement createMultiSelectListItem(OCodmComplexTypeDefinitionMultiSelectListItem value) { - return new JAXBElement(_MultiSelectListItem_QNAME, OCodmComplexTypeDefinitionMultiSelectListItem.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionDiscrepancyNotes }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "DiscrepancyNotes") - public JAXBElement createDiscrepancyNotes(OCodmComplexTypeDefinitionDiscrepancyNotes value) { - return new JAXBElement(_DiscrepancyNotes_QNAME, OCodmComplexTypeDefinitionDiscrepancyNotes.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionEventDefinitionDetails }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "EventDefinitionDetails") - public JAXBElement createEventDefinitionDetails(OCodmComplexTypeDefinitionEventDefinitionDetails value) { - return new JAXBElement(_EventDefinitionDetails_QNAME, OCodmComplexTypeDefinitionEventDefinitionDetails.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionItemGroupRepeat }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "ItemGroupRepeat") - public JAXBElement createItemGroupRepeat(OCodmComplexTypeDefinitionItemGroupRepeat value) { - return new JAXBElement(_ItemGroupRepeat_QNAME, OCodmComplexTypeDefinitionItemGroupRepeat.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionMultiSelectList }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "MultiSelectList") - public JAXBElement createMultiSelectList(OCodmComplexTypeDefinitionMultiSelectList value) { - return new JAXBElement(_MultiSelectList_QNAME, OCodmComplexTypeDefinitionMultiSelectList.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionStudyDescriptionAndStatus }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "StudyDescriptionAndStatus") - public JAXBElement createStudyDescriptionAndStatus(OCodmComplexTypeDefinitionStudyDescriptionAndStatus value) { - return new JAXBElement(_StudyDescriptionAndStatus_QNAME, OCodmComplexTypeDefinitionStudyDescriptionAndStatus.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionConditionsAndEligibility }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "ConditionsAndEligibility") - public JAXBElement createConditionsAndEligibility(OCodmComplexTypeDefinitionConditionsAndEligibility value) { - return new JAXBElement(_ConditionsAndEligibility_QNAME, OCodmComplexTypeDefinitionConditionsAndEligibility.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionStudyParameterConfiguration }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "StudyParameterConfiguration") - public JAXBElement createStudyParameterConfiguration(OCodmComplexTypeDefinitionStudyParameterConfiguration value) { - return new JAXBElement(_StudyParameterConfiguration_QNAME, OCodmComplexTypeDefinitionStudyParameterConfiguration.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionAuditLogs }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "AuditLogs") - public JAXBElement createAuditLogs(OCodmComplexTypeDefinitionAuditLogs value) { - return new JAXBElement(_AuditLogs_QNAME, OCodmComplexTypeDefinitionAuditLogs.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionDiscrepancyNote }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "DiscrepancyNote") - public JAXBElement createDiscrepancyNote(OCodmComplexTypeDefinitionDiscrepancyNote value) { - return new JAXBElement(_DiscrepancyNote_QNAME, OCodmComplexTypeDefinitionDiscrepancyNote.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionStudyGroupClassList }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "StudyGroupClassList") - public JAXBElement createStudyGroupClassList(OCodmComplexTypeDefinitionStudyGroupClassList value) { - return new JAXBElement(_StudyGroupClassList_QNAME, OCodmComplexTypeDefinitionStudyGroupClassList.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionStudyParameterList }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "StudyParameterList") - public JAXBElement createStudyParameterList(OCodmComplexTypeDefinitionStudyParameterList value) { - return new JAXBElement(_StudyParameterList_QNAME, OCodmComplexTypeDefinitionStudyParameterList.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionItemPresentInForm }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "ItemPresentInForm") - public JAXBElement createItemPresentInForm(OCodmComplexTypeDefinitionItemPresentInForm value) { - return new JAXBElement(_ItemPresentInForm_QNAME, OCodmComplexTypeDefinitionItemPresentInForm.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionSection }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "Section") - public JAXBElement createSection(OCodmComplexTypeDefinitionSection value) { - return new JAXBElement(_Section_QNAME, OCodmComplexTypeDefinitionSection.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionAge }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "Age") - public JAXBElement createAge(OCodmComplexTypeDefinitionAge value) { - return new JAXBElement(_Age_QNAME, OCodmComplexTypeDefinitionAge.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionStudyParameterListRef }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "StudyParameterListRef") - public JAXBElement createStudyParameterListRef(OCodmComplexTypeDefinitionStudyParameterListRef value) { - return new JAXBElement(_StudyParameterListRef_QNAME, OCodmComplexTypeDefinitionStudyParameterListRef.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionItemGroupDetails }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "ItemGroupDetails") - public JAXBElement createItemGroupDetails(OCodmComplexTypeDefinitionItemGroupDetails value) { - return new JAXBElement(_ItemGroupDetails_QNAME, OCodmComplexTypeDefinitionItemGroupDetails.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionSimpleConditionalDisplay }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "SimpleConditionalDisplay") - public JAXBElement createSimpleConditionalDisplay(OCodmComplexTypeDefinitionSimpleConditionalDisplay value) { - return new JAXBElement(_SimpleConditionalDisplay_QNAME, OCodmComplexTypeDefinitionSimpleConditionalDisplay.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionAuditLog }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "AuditLog") - public JAXBElement createAuditLog(OCodmComplexTypeDefinitionAuditLog value) { - return new JAXBElement(_AuditLog_QNAME, OCodmComplexTypeDefinitionAuditLog.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionItemResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "ItemResponse") - public JAXBElement createItemResponse(OCodmComplexTypeDefinitionItemResponse value) { - return new JAXBElement(_ItemResponse_QNAME, OCodmComplexTypeDefinitionItemResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionChildNote }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "ChildNote") - public JAXBElement createChildNote(OCodmComplexTypeDefinitionChildNote value) { - return new JAXBElement(_ChildNote_QNAME, OCodmComplexTypeDefinitionChildNote.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OCodmComplexTypeDefinitionStudyParameterListItem }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", name = "StudyParameterListItem") - public JAXBElement createStudyParameterListItem(OCodmComplexTypeDefinitionStudyParameterListItem value) { - return new JAXBElement(_StudyParameterListItem_QNAME, OCodmComplexTypeDefinitionStudyParameterListItem.class, null, value); - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/package-info.java b/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/package-info.java deleted file mode 100755 index 351f6f7..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/odm_ext_v130/v3/package-info.java +++ /dev/null @@ -1,9 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - -@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.openclinica.org/ns/odm_ext_v130/v3.1", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package org.openclinica.ns.odm_ext_v130.v3; diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ActionRunType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ActionRunType.java deleted file mode 100755 index 628e857..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ActionRunType.java +++ /dev/null @@ -1,131 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ActionRunType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ActionRunType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}ActionRunAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ActionRunType") -public class ActionRunType { - - @XmlAttribute(name = "AdministrativeDataEntry", required = true) - protected boolean administrativeDataEntry; - @XmlAttribute(name = "InitialDataEntry", required = true) - protected boolean initialDataEntry; - @XmlAttribute(name = "DoubleDataEntry", required = true) - protected boolean doubleDataEntry; - @XmlAttribute(name = "ImportDataEntry", required = true) - protected boolean importDataEntry; - @XmlAttribute(name = "Batch", required = true) - protected boolean batch; - - /** - * Gets the value of the administrativeDataEntry property. - * - */ - public boolean isAdministrativeDataEntry() { - return administrativeDataEntry; - } - - /** - * Sets the value of the administrativeDataEntry property. - * - */ - public void setAdministrativeDataEntry(boolean value) { - this.administrativeDataEntry = value; - } - - /** - * Gets the value of the initialDataEntry property. - * - */ - public boolean isInitialDataEntry() { - return initialDataEntry; - } - - /** - * Sets the value of the initialDataEntry property. - * - */ - public void setInitialDataEntry(boolean value) { - this.initialDataEntry = value; - } - - /** - * Gets the value of the doubleDataEntry property. - * - */ - public boolean isDoubleDataEntry() { - return doubleDataEntry; - } - - /** - * Sets the value of the doubleDataEntry property. - * - */ - public void setDoubleDataEntry(boolean value) { - this.doubleDataEntry = value; - } - - /** - * Gets the value of the importDataEntry property. - * - */ - public boolean isImportDataEntry() { - return importDataEntry; - } - - /** - * Sets the value of the importDataEntry property. - * - */ - public void setImportDataEntry(boolean value) { - this.importDataEntry = value; - } - - /** - * Gets the value of the batch property. - * - */ - public boolean isBatch() { - return batch; - } - - /** - * Sets the value of the batch property. - * - */ - public void setBatch(boolean value) { - this.batch = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ContextType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ContextType.java deleted file mode 100755 index 89a7da0..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ContextType.java +++ /dev/null @@ -1,55 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for contextType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="contextType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OC_RULES_V1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "contextType") -@XmlEnum -public enum ContextType { - - @XmlEnumValue("OC_RULES_V1") - OC_RULES_V_1("OC_RULES_V1"); - private final String value; - - ContextType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ContextType fromValue(String v) { - for (ContextType c: ContextType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/DiscrepancyNoteActionType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/DiscrepancyNoteActionType.java deleted file mode 100755 index 0d1d538..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/DiscrepancyNoteActionType.java +++ /dev/null @@ -1,125 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DiscrepancyNoteActionType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DiscrepancyNoteActionType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Run" type="{http://www.openclinica.org/ns/rules/v3.1}ActionRunType" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}DiscrepancyNoteActionAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DiscrepancyNoteActionType", propOrder = { - "run", - "message" -}) -public class DiscrepancyNoteActionType { - - @XmlElement(name = "Run") - protected ActionRunType run; - @XmlElement(name = "Message", required = true) - protected String message; - @XmlAttribute(name = "IfExpressionEvaluates") - protected String ifExpressionEvaluates; - - /** - * Gets the value of the run property. - * - * @return - * possible object is - * {@link ActionRunType } - * - */ - public ActionRunType getRun() { - return run; - } - - /** - * Sets the value of the run property. - * - * @param value - * allowed object is - * {@link ActionRunType } - * - */ - public void setRun(ActionRunType value) { - this.run = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - - /** - * Gets the value of the ifExpressionEvaluates property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIfExpressionEvaluates() { - return ifExpressionEvaluates; - } - - /** - * Sets the value of the ifExpressionEvaluates property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIfExpressionEvaluates(String value) { - this.ifExpressionEvaluates = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/EmailActionType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/EmailActionType.java deleted file mode 100755 index e2b10f6..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/EmailActionType.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EmailActionType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="EmailActionType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Run" type="{http://www.openclinica.org/ns/rules/v3.1}ActionRunType" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="To" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}DiscrepancyNoteActionAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EmailActionType", propOrder = { - "run", - "message", - "to" -}) -public class EmailActionType { - - @XmlElement(name = "Run") - protected ActionRunType run; - @XmlElement(name = "Message", required = true) - protected String message; - @XmlElement(name = "To", required = true) - protected String to; - @XmlAttribute(name = "IfExpressionEvaluates") - protected String ifExpressionEvaluates; - - /** - * Gets the value of the run property. - * - * @return - * possible object is - * {@link ActionRunType } - * - */ - public ActionRunType getRun() { - return run; - } - - /** - * Sets the value of the run property. - * - * @param value - * allowed object is - * {@link ActionRunType } - * - */ - public void setRun(ActionRunType value) { - this.run = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - - /** - * Gets the value of the to property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTo() { - return to; - } - - /** - * Sets the value of the to property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTo(String value) { - this.to = value; - } - - /** - * Gets the value of the ifExpressionEvaluates property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIfExpressionEvaluates() { - return ifExpressionEvaluates; - } - - /** - * Sets the value of the ifExpressionEvaluates property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIfExpressionEvaluates(String value) { - this.ifExpressionEvaluates = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/HideActionType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/HideActionType.java deleted file mode 100755 index 8b287e2..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/HideActionType.java +++ /dev/null @@ -1,160 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for HideActionType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HideActionType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Run" type="{http://www.openclinica.org/ns/rules/v3.1}ActionRunType" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DestinationProperty" type="{http://www.openclinica.org/ns/rules/v3.1}PropertyType" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}DiscrepancyNoteActionAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HideActionType", propOrder = { - "run", - "message", - "destinationProperty" -}) -public class HideActionType { - - @XmlElement(name = "Run") - protected ActionRunType run; - @XmlElement(name = "Message", required = true) - protected String message; - @XmlElement(name = "DestinationProperty", required = true) - protected List destinationProperty; - @XmlAttribute(name = "IfExpressionEvaluates") - protected String ifExpressionEvaluates; - - /** - * Gets the value of the run property. - * - * @return - * possible object is - * {@link ActionRunType } - * - */ - public ActionRunType getRun() { - return run; - } - - /** - * Sets the value of the run property. - * - * @param value - * allowed object is - * {@link ActionRunType } - * - */ - public void setRun(ActionRunType value) { - this.run = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - - /** - * Gets the value of the destinationProperty property. - * - *

- * 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 set method for the destinationProperty property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDestinationProperty().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PropertyType } - * - * - */ - public List getDestinationProperty() { - if (destinationProperty == null) { - destinationProperty = new ArrayList(); - } - return this.destinationProperty; - } - - /** - * Gets the value of the ifExpressionEvaluates property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIfExpressionEvaluates() { - return ifExpressionEvaluates; - } - - /** - * Sets the value of the ifExpressionEvaluates property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIfExpressionEvaluates(String value) { - this.ifExpressionEvaluates = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/InsertActionType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/InsertActionType.java deleted file mode 100755 index adb5080..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/InsertActionType.java +++ /dev/null @@ -1,132 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsertActionType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsertActionType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Run" type="{http://www.openclinica.org/ns/rules/v3.1}ActionRunType" minOccurs="0"/>
- *         <element name="DestinationProperty" type="{http://www.openclinica.org/ns/rules/v3.1}PropertyType" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}DiscrepancyNoteActionAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsertActionType", propOrder = { - "run", - "destinationProperty" -}) -public class InsertActionType { - - @XmlElement(name = "Run") - protected ActionRunType run; - @XmlElement(name = "DestinationProperty", required = true) - protected List destinationProperty; - @XmlAttribute(name = "IfExpressionEvaluates") - protected String ifExpressionEvaluates; - - /** - * Gets the value of the run property. - * - * @return - * possible object is - * {@link ActionRunType } - * - */ - public ActionRunType getRun() { - return run; - } - - /** - * Sets the value of the run property. - * - * @param value - * allowed object is - * {@link ActionRunType } - * - */ - public void setRun(ActionRunType value) { - this.run = value; - } - - /** - * Gets the value of the destinationProperty property. - * - *

- * 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 set method for the destinationProperty property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDestinationProperty().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PropertyType } - * - * - */ - public List getDestinationProperty() { - if (destinationProperty == null) { - destinationProperty = new ArrayList(); - } - return this.destinationProperty; - } - - /** - * Gets the value of the ifExpressionEvaluates property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIfExpressionEvaluates() { - return ifExpressionEvaluates; - } - - /** - * Sets the value of the ifExpressionEvaluates property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIfExpressionEvaluates(String value) { - this.ifExpressionEvaluates = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ObjectFactory.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ObjectFactory.java deleted file mode 100755 index d055ad0..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ObjectFactory.java +++ /dev/null @@ -1,238 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -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.openclinica.ns.rules.v3 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. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _RuleRef_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "RuleRef"); - private final static QName _DiscrepancyNoteAction_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "DiscrepancyNoteAction"); - private final static QName _HideAction_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "HideAction"); - private final static QName _Target_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "Target"); - private final static QName _Rules_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "Rules"); - private final static QName _ShowAction_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "ShowAction"); - private final static QName _RuleDef_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "RuleDef"); - private final static QName _InsertAction_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "InsertAction"); - private final static QName _RuleAssignment_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "RuleAssignment"); - private final static QName _EmailAction_QNAME = new QName("http://www.openclinica.org/ns/rules/v3.1", "EmailAction"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openclinica.ns.rules.v3 - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RuleDefType } - * - */ - public RuleDefType createRuleDefType() { - return new RuleDefType(); - } - - /** - * Create an instance of {@link InsertActionType } - * - */ - public InsertActionType createInsertActionType() { - return new InsertActionType(); - } - - /** - * Create an instance of {@link RuleRefType } - * - */ - public RuleRefType createRuleRefType() { - return new RuleRefType(); - } - - /** - * Create an instance of {@link TargetType } - * - */ - public TargetType createTargetType() { - return new TargetType(); - } - - /** - * Create an instance of {@link EmailActionType } - * - */ - public EmailActionType createEmailActionType() { - return new EmailActionType(); - } - - /** - * Create an instance of {@link RuleAssignmentType } - * - */ - public RuleAssignmentType createRuleAssignmentType() { - return new RuleAssignmentType(); - } - - /** - * Create an instance of {@link RuleImportType } - * - */ - public RuleImportType createRuleImportType() { - return new RuleImportType(); - } - - /** - * Create an instance of {@link DiscrepancyNoteActionType } - * - */ - public DiscrepancyNoteActionType createDiscrepancyNoteActionType() { - return new DiscrepancyNoteActionType(); - } - - /** - * Create an instance of {@link HideActionType } - * - */ - public HideActionType createHideActionType() { - return new HideActionType(); - } - - /** - * Create an instance of {@link ShowActionType } - * - */ - public ShowActionType createShowActionType() { - return new ShowActionType(); - } - - /** - * Create an instance of {@link PropertyType } - * - */ - public PropertyType createPropertyType() { - return new PropertyType(); - } - - /** - * Create an instance of {@link ActionRunType } - * - */ - public ActionRunType createActionRunType() { - return new ActionRunType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RuleRefType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "RuleRef") - public JAXBElement createRuleRef(RuleRefType value) { - return new JAXBElement(_RuleRef_QNAME, RuleRefType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DiscrepancyNoteActionType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "DiscrepancyNoteAction") - public JAXBElement createDiscrepancyNoteAction(DiscrepancyNoteActionType value) { - return new JAXBElement(_DiscrepancyNoteAction_QNAME, DiscrepancyNoteActionType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HideActionType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "HideAction") - public JAXBElement createHideAction(HideActionType value) { - return new JAXBElement(_HideAction_QNAME, HideActionType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link TargetType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "Target") - public JAXBElement createTarget(TargetType value) { - return new JAXBElement(_Target_QNAME, TargetType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RuleImportType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "Rules") - public JAXBElement createRules(RuleImportType value) { - return new JAXBElement(_Rules_QNAME, RuleImportType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ShowActionType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "ShowAction") - public JAXBElement createShowAction(ShowActionType value) { - return new JAXBElement(_ShowAction_QNAME, ShowActionType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RuleDefType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "RuleDef") - public JAXBElement createRuleDef(RuleDefType value) { - return new JAXBElement(_RuleDef_QNAME, RuleDefType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InsertActionType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "InsertAction") - public JAXBElement createInsertAction(InsertActionType value) { - return new JAXBElement(_InsertAction_QNAME, InsertActionType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RuleAssignmentType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "RuleAssignment") - public JAXBElement createRuleAssignment(RuleAssignmentType value) { - return new JAXBElement(_RuleAssignment_QNAME, RuleAssignmentType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link EmailActionType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.openclinica.org/ns/rules/v3.1", name = "EmailAction") - public JAXBElement createEmailAction(EmailActionType value) { - return new JAXBElement(_EmailAction_QNAME, EmailActionType.class, null, value); - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/PropertyType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/PropertyType.java deleted file mode 100755 index 4b67681..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/PropertyType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PropertyType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PropertyType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ValueExpression" type="{http://www.openclinica.org/ns/rules/v3.1}TargetType" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}PropertyAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PropertyType", propOrder = { - "valueExpression" -}) -public class PropertyType { - - @XmlElement(name = "ValueExpression") - protected TargetType valueExpression; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Value") - protected String value; - - /** - * Gets the value of the valueExpression property. - * - * @return - * possible object is - * {@link TargetType } - * - */ - public TargetType getValueExpression() { - return valueExpression; - } - - /** - * Sets the value of the valueExpression property. - * - * @param value - * allowed object is - * {@link TargetType } - * - */ - public void setValueExpression(TargetType value) { - this.valueExpression = value; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleAssignmentType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleAssignmentType.java deleted file mode 100755 index 40fdbba..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleAssignmentType.java +++ /dev/null @@ -1,104 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -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; - - -/** - *

Java class for RuleAssignmentType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RuleAssignmentType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}Target"/>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}RuleRef" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RuleAssignmentType", propOrder = { - "target", - "ruleRef" -}) -public class RuleAssignmentType { - - @XmlElement(name = "Target", required = true) - protected TargetType target; - @XmlElement(name = "RuleRef", required = true) - protected List ruleRef; - - /** - * Gets the value of the target property. - * - * @return - * possible object is - * {@link TargetType } - * - */ - public TargetType getTarget() { - return target; - } - - /** - * Sets the value of the target property. - * - * @param value - * allowed object is - * {@link TargetType } - * - */ - public void setTarget(TargetType value) { - this.target = value; - } - - /** - * Gets the value of the ruleRef property. - * - *

- * 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 set method for the ruleRef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRuleRef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RuleRefType } - * - * - */ - public List getRuleRef() { - if (ruleRef == null) { - ruleRef = new ArrayList(); - } - return this.ruleRef; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleDefType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleDefType.java deleted file mode 100755 index 442df9d..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleDefType.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RuleDefType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RuleDefType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Expression" type="{http://www.openclinica.org/ns/rules/v3.1}TargetType"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}RuleDefAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RuleDefType", propOrder = { - "description", - "expression" -}) -public class RuleDefType { - - @XmlElement(name = "Description", required = true) - protected String description; - @XmlElement(name = "Expression", required = true) - protected TargetType expression; - @XmlAttribute(name = "OID", required = true) - protected String oid; - @XmlAttribute(name = "Name") - protected String name; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the expression property. - * - * @return - * possible object is - * {@link TargetType } - * - */ - public TargetType getExpression() { - return expression; - } - - /** - * Sets the value of the expression property. - * - * @param value - * allowed object is - * {@link TargetType } - * - */ - public void setExpression(TargetType value) { - this.expression = value; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = 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; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleImportType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleImportType.java deleted file mode 100755 index 041205c..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleImportType.java +++ /dev/null @@ -1,112 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -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; - - -/** - * The top level root element. Allows the definition of default values - * for all nested bean definitions. - * - *

Java class for RuleImportType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RuleImportType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}RuleAssignment" maxOccurs="unbounded"/>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}RuleDef" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RuleImportType", propOrder = { - "ruleAssignment", - "ruleDef" -}) -public class RuleImportType { - - @XmlElement(name = "RuleAssignment", required = true) - protected List ruleAssignment; - @XmlElement(name = "RuleDef") - protected List ruleDef; - - /** - * Gets the value of the ruleAssignment property. - * - *

- * 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 set method for the ruleAssignment property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRuleAssignment().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RuleAssignmentType } - * - * - */ - public List getRuleAssignment() { - if (ruleAssignment == null) { - ruleAssignment = new ArrayList(); - } - return this.ruleAssignment; - } - - /** - * Gets the value of the ruleDef property. - * - *

- * 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 set method for the ruleDef property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRuleDef().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RuleDefType } - * - * - */ - public List getRuleDef() { - if (ruleDef == null) { - ruleDef = new ArrayList(); - } - return this.ruleDef; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleRefType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleRefType.java deleted file mode 100755 index ea54110..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/RuleRefType.java +++ /dev/null @@ -1,236 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RuleRefType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RuleRefType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}DiscrepancyNoteAction" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}EmailAction" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}ShowAction" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}HideAction" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{http://www.openclinica.org/ns/rules/v3.1}InsertAction" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}RuleRefAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RuleRefType", propOrder = { - "discrepancyNoteAction", - "emailAction", - "showAction", - "hideAction", - "insertAction" -}) -public class RuleRefType { - - @XmlElement(name = "DiscrepancyNoteAction") - protected List discrepancyNoteAction; - @XmlElement(name = "EmailAction") - protected List emailAction; - @XmlElement(name = "ShowAction") - protected List showAction; - @XmlElement(name = "HideAction") - protected List hideAction; - @XmlElement(name = "InsertAction") - protected List insertAction; - @XmlAttribute(name = "OID", required = true) - protected String oid; - - /** - * Gets the value of the discrepancyNoteAction property. - * - *

- * 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 set method for the discrepancyNoteAction property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDiscrepancyNoteAction().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DiscrepancyNoteActionType } - * - * - */ - public List getDiscrepancyNoteAction() { - if (discrepancyNoteAction == null) { - discrepancyNoteAction = new ArrayList(); - } - return this.discrepancyNoteAction; - } - - /** - * Gets the value of the emailAction property. - * - *

- * 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 set method for the emailAction property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEmailAction().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EmailActionType } - * - * - */ - public List getEmailAction() { - if (emailAction == null) { - emailAction = new ArrayList(); - } - return this.emailAction; - } - - /** - * Gets the value of the showAction property. - * - *

- * 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 set method for the showAction property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getShowAction().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ShowActionType } - * - * - */ - public List getShowAction() { - if (showAction == null) { - showAction = new ArrayList(); - } - return this.showAction; - } - - /** - * Gets the value of the hideAction property. - * - *

- * 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 set method for the hideAction property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHideAction().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HideActionType } - * - * - */ - public List getHideAction() { - if (hideAction == null) { - hideAction = new ArrayList(); - } - return this.hideAction; - } - - /** - * Gets the value of the insertAction property. - * - *

- * 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 set method for the insertAction property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getInsertAction().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InsertActionType } - * - * - */ - public List getInsertAction() { - if (insertAction == null) { - insertAction = new ArrayList(); - } - return this.insertAction; - } - - /** - * Gets the value of the oid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOID() { - return oid; - } - - /** - * Sets the value of the oid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOID(String value) { - this.oid = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ShowActionType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ShowActionType.java deleted file mode 100755 index 8830a19..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/ShowActionType.java +++ /dev/null @@ -1,160 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ShowActionType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ShowActionType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Run" type="{http://www.openclinica.org/ns/rules/v3.1}ActionRunType" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DestinationProperty" type="{http://www.openclinica.org/ns/rules/v3.1}PropertyType" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attGroup ref="{http://www.openclinica.org/ns/rules/v3.1}DiscrepancyNoteActionAttributeType"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ShowActionType", propOrder = { - "run", - "message", - "destinationProperty" -}) -public class ShowActionType { - - @XmlElement(name = "Run") - protected ActionRunType run; - @XmlElement(name = "Message", required = true) - protected String message; - @XmlElement(name = "DestinationProperty", required = true) - protected List destinationProperty; - @XmlAttribute(name = "IfExpressionEvaluates") - protected String ifExpressionEvaluates; - - /** - * Gets the value of the run property. - * - * @return - * possible object is - * {@link ActionRunType } - * - */ - public ActionRunType getRun() { - return run; - } - - /** - * Sets the value of the run property. - * - * @param value - * allowed object is - * {@link ActionRunType } - * - */ - public void setRun(ActionRunType value) { - this.run = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - - /** - * Gets the value of the destinationProperty property. - * - *

- * 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 set method for the destinationProperty property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDestinationProperty().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PropertyType } - * - * - */ - public List getDestinationProperty() { - if (destinationProperty == null) { - destinationProperty = new ArrayList(); - } - return this.destinationProperty; - } - - /** - * Gets the value of the ifExpressionEvaluates property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIfExpressionEvaluates() { - return ifExpressionEvaluates; - } - - /** - * Sets the value of the ifExpressionEvaluates property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIfExpressionEvaluates(String value) { - this.ifExpressionEvaluates = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/TargetType.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/TargetType.java deleted file mode 100755 index b03893d..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/TargetType.java +++ /dev/null @@ -1,94 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.openclinica.ns.rules.v3; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for TargetType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TargetType">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *       <attribute name="Context" type="{http://www.openclinica.org/ns/rules/v3.1}contextType" />
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TargetType", propOrder = { - "value" -}) -public class TargetType { - - @XmlValue - protected String value; - @XmlAttribute(name = "Context") - protected ContextType context; - - /** - * 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; - } - - /** - * Gets the value of the context property. - * - * @return - * possible object is - * {@link ContextType } - * - */ - public ContextType getContext() { - return context; - } - - /** - * Sets the value of the context property. - * - * @param value - * allowed object is - * {@link ContextType } - * - */ - public void setContext(ContextType value) { - this.context = value; - } - -} diff --git a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/package-info.java b/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/package-info.java deleted file mode 100755 index 19c87aa..0000000 --- a/odm/gensrc_openclinica/org/openclinica/ns/rules/v3/package-info.java +++ /dev/null @@ -1,9 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - -@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.openclinica.org/ns/rules/v3.1", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package org.openclinica.ns.rules.v3; diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/CanonicalizationMethodType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/CanonicalizationMethodType.java deleted file mode 100755 index ca4e9db..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/CanonicalizationMethodType.java +++ /dev/null @@ -1,109 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CanonicalizationMethodType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CanonicalizationMethodType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <any maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CanonicalizationMethodType", propOrder = { - "content" -}) -public class CanonicalizationMethodType { - - @XmlMixed - @XmlAnyElement(lax = true) - protected List content; - @XmlAttribute(name = "Algorithm", required = true) - @XmlSchemaType(name = "anyURI") - protected String algorithm; - - /** - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * {@link Object } - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - - /** - * Gets the value of the algorithm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlgorithm() { - return algorithm; - } - - /** - * Sets the value of the algorithm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlgorithm(String value) { - this.algorithm = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/DSAKeyValueType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/DSAKeyValueType.java deleted file mode 100755 index 3f46906..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/DSAKeyValueType.java +++ /dev/null @@ -1,227 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DSAKeyValueType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DSAKeyValueType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <sequence minOccurs="0">
- *           <element name="P" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *           <element name="Q" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *         </sequence>
- *         <element name="G" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/>
- *         <element name="Y" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *         <element name="J" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/>
- *         <sequence minOccurs="0">
- *           <element name="Seed" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *           <element name="PgenCounter" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *         </sequence>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DSAKeyValueType", propOrder = { - "p", - "q", - "g", - "y", - "j", - "seed", - "pgenCounter" -}) -public class DSAKeyValueType { - - @XmlElement(name = "P") - protected byte[] p; - @XmlElement(name = "Q") - protected byte[] q; - @XmlElement(name = "G") - protected byte[] g; - @XmlElement(name = "Y", required = true) - protected byte[] y; - @XmlElement(name = "J") - protected byte[] j; - @XmlElement(name = "Seed") - protected byte[] seed; - @XmlElement(name = "PgenCounter") - protected byte[] pgenCounter; - - /** - * Gets the value of the p property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getP() { - return p; - } - - /** - * Sets the value of the p property. - * - * @param value - * allowed object is - * byte[] - */ - public void setP(byte[] value) { - this.p = value; - } - - /** - * Gets the value of the q property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getQ() { - return q; - } - - /** - * Sets the value of the q property. - * - * @param value - * allowed object is - * byte[] - */ - public void setQ(byte[] value) { - this.q = value; - } - - /** - * Gets the value of the g property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getG() { - return g; - } - - /** - * Sets the value of the g property. - * - * @param value - * allowed object is - * byte[] - */ - public void setG(byte[] value) { - this.g = value; - } - - /** - * Gets the value of the y property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getY() { - return y; - } - - /** - * Sets the value of the y property. - * - * @param value - * allowed object is - * byte[] - */ - public void setY(byte[] value) { - this.y = value; - } - - /** - * Gets the value of the j property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getJ() { - return j; - } - - /** - * Sets the value of the j property. - * - * @param value - * allowed object is - * byte[] - */ - public void setJ(byte[] value) { - this.j = value; - } - - /** - * Gets the value of the seed property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getSeed() { - return seed; - } - - /** - * Sets the value of the seed property. - * - * @param value - * allowed object is - * byte[] - */ - public void setSeed(byte[] value) { - this.seed = value; - } - - /** - * Gets the value of the pgenCounter property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getPgenCounter() { - return pgenCounter; - } - - /** - * Sets the value of the pgenCounter property. - * - * @param value - * allowed object is - * byte[] - */ - public void setPgenCounter(byte[] value) { - this.pgenCounter = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/DigestMethodType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/DigestMethodType.java deleted file mode 100755 index ea9ed6d..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/DigestMethodType.java +++ /dev/null @@ -1,111 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import org.w3c.dom.Element; - - -/** - *

Java class for DigestMethodType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DigestMethodType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DigestMethodType", propOrder = { - "content" -}) -public class DigestMethodType { - - @XmlMixed - @XmlAnyElement(lax = true) - protected List content; - @XmlAttribute(name = "Algorithm", required = true) - @XmlSchemaType(name = "anyURI") - protected String algorithm; - - /** - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link String } - * {@link Object } - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - - /** - * Gets the value of the algorithm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlgorithm() { - return algorithm; - } - - /** - * Sets the value of the algorithm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlgorithm(String value) { - this.algorithm = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/KeyInfoType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/KeyInfoType.java deleted file mode 100755 index 418dcea..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/KeyInfoType.java +++ /dev/null @@ -1,142 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import org.w3c.dom.Element; - - -/** - *

Java class for KeyInfoType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeyInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyName"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyValue"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}RetrievalMethod"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}X509Data"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}PGPData"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}SPKIData"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}MgmtData"/>
- *         <any processContents='lax' namespace='##other'/>
- *       </choice>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeyInfoType", propOrder = { - "content" -}) -public class KeyInfoType { - - @XmlElementRefs({ - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) - }) - @XmlMixed - @XmlAnyElement(lax = true) - protected List content; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/KeyValueType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/KeyValueType.java deleted file mode 100755 index a0e5061..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/KeyValueType.java +++ /dev/null @@ -1,92 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlType; -import org.w3c.dom.Element; - - -/** - *

Java class for KeyValueType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeyValueType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}DSAKeyValue"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}RSAKeyValue"/>
- *         <any processContents='lax' namespace='##other'/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeyValueType", propOrder = { - "content" -}) -public class KeyValueType { - - @XmlElementRefs({ - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) - }) - @XmlMixed - @XmlAnyElement(lax = true) - protected List content; - - /** - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link String } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Element } - * {@link Object } - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ManifestType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ManifestType.java deleted file mode 100755 index 01145ec..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ManifestType.java +++ /dev/null @@ -1,111 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ManifestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ManifestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Reference" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ManifestType", propOrder = { - "reference" -}) -public class ManifestType { - - @XmlElement(name = "Reference", required = true) - protected List reference; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the reference property. - * - *

- * 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 set method for the reference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ReferenceType } - * - * - */ - public List getReference() { - if (reference == null) { - reference = new ArrayList(); - } - return this.reference; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ObjectFactory.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ObjectFactory.java deleted file mode 100755 index 8b4514c..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ObjectFactory.java +++ /dev/null @@ -1,559 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.math.BigInteger; -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.w3.xmldsig.jaxb 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. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _PGPData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPData"); - private final static QName _SPKIData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKIData"); - private final static QName _CanonicalizationMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "CanonicalizationMethod"); - private final static QName _Transforms_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Transforms"); - private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); - private final static QName _SignatureMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureMethod"); - private final static QName _KeyInfo_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyInfo"); - private final static QName _DigestMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DigestMethod"); - private final static QName _MgmtData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "MgmtData"); - private final static QName _SignedInfo_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignedInfo"); - private final static QName _Object_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Object"); - private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); - private final static QName _SignatureProperties_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperties"); - private final static QName _KeyName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyName"); - private final static QName _RetrievalMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "RetrievalMethod"); - private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _Reference_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Reference"); - private final static QName _RSAKeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "RSAKeyValue"); - private final static QName _Signature_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Signature"); - private final static QName _DSAKeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DSAKeyValue"); - private final static QName _SignatureValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureValue"); - private final static QName _Transform_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Transform"); - private final static QName _DigestValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DigestValue"); - private final static QName _KeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyValue"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); - private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); - private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); - private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3.xmldsig.jaxb - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link SignatureType } - * - */ - public SignatureType createSignatureType() { - return new SignatureType(); - } - - /** - * Create an instance of {@link KeyInfoType } - * - */ - public KeyInfoType createKeyInfoType() { - return new KeyInfoType(); - } - - /** - * Create an instance of {@link SignedInfoType } - * - */ - public SignedInfoType createSignedInfoType() { - return new SignedInfoType(); - } - - /** - * Create an instance of {@link RetrievalMethodType } - * - */ - public RetrievalMethodType createRetrievalMethodType() { - return new RetrievalMethodType(); - } - - /** - * Create an instance of {@link DigestMethodType } - * - */ - public DigestMethodType createDigestMethodType() { - return new DigestMethodType(); - } - - /** - * Create an instance of {@link SignatureMethodType } - * - */ - public SignatureMethodType createSignatureMethodType() { - return new SignatureMethodType(); - } - - /** - * Create an instance of {@link SPKIDataType } - * - */ - public SPKIDataType createSPKIDataType() { - return new SPKIDataType(); - } - - /** - * Create an instance of {@link X509DataType } - * - */ - public X509DataType createX509DataType() { - return new X509DataType(); - } - - /** - * Create an instance of {@link PGPDataType } - * - */ - public PGPDataType createPGPDataType() { - return new PGPDataType(); - } - - /** - * Create an instance of {@link DSAKeyValueType } - * - */ - public DSAKeyValueType createDSAKeyValueType() { - return new DSAKeyValueType(); - } - - /** - * Create an instance of {@link ManifestType } - * - */ - public ManifestType createManifestType() { - return new ManifestType(); - } - - /** - * Create an instance of {@link SignatureValueType } - * - */ - public SignatureValueType createSignatureValueType() { - return new SignatureValueType(); - } - - /** - * Create an instance of {@link TransformsType } - * - */ - public TransformsType createTransformsType() { - return new TransformsType(); - } - - /** - * Create an instance of {@link RSAKeyValueType } - * - */ - public RSAKeyValueType createRSAKeyValueType() { - return new RSAKeyValueType(); - } - - /** - * Create an instance of {@link TransformType } - * - */ - public TransformType createTransformType() { - return new TransformType(); - } - - /** - * Create an instance of {@link SignaturePropertyType } - * - */ - public SignaturePropertyType createSignaturePropertyType() { - return new SignaturePropertyType(); - } - - /** - * Create an instance of {@link KeyValueType } - * - */ - public KeyValueType createKeyValueType() { - return new KeyValueType(); - } - - /** - * Create an instance of {@link ReferenceType } - * - */ - public ReferenceType createReferenceType() { - return new ReferenceType(); - } - - /** - * Create an instance of {@link CanonicalizationMethodType } - * - */ - public CanonicalizationMethodType createCanonicalizationMethodType() { - return new CanonicalizationMethodType(); - } - - /** - * Create an instance of {@link SignaturePropertiesType } - * - */ - public SignaturePropertiesType createSignaturePropertiesType() { - return new SignaturePropertiesType(); - } - - /** - * Create an instance of {@link ObjectType } - * - */ - public ObjectType createObjectType() { - return new ObjectType(); - } - - /** - * Create an instance of {@link X509IssuerSerialType } - * - */ - public X509IssuerSerialType createX509IssuerSerialType() { - return new X509IssuerSerialType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PGPDataType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPData") - public JAXBElement createPGPData(PGPDataType value) { - return new JAXBElement(_PGPData_QNAME, PGPDataType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKIData") - public JAXBElement createSPKIData(SPKIDataType value) { - return new JAXBElement(_SPKIData_QNAME, SPKIDataType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CanonicalizationMethodType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "CanonicalizationMethod") - public JAXBElement createCanonicalizationMethod(CanonicalizationMethodType value) { - return new JAXBElement(_CanonicalizationMethod_QNAME, CanonicalizationMethodType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link TransformsType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Transforms") - public JAXBElement createTransforms(TransformsType value) { - return new JAXBElement(_Transforms_QNAME, TransformsType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ManifestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Manifest") - public JAXBElement createManifest(ManifestType value) { - return new JAXBElement(_Manifest_QNAME, ManifestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignatureMethodType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureMethod") - public JAXBElement createSignatureMethod(SignatureMethodType value) { - return new JAXBElement(_SignatureMethod_QNAME, SignatureMethodType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeyInfoType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyInfo") - public JAXBElement createKeyInfo(KeyInfoType value) { - return new JAXBElement(_KeyInfo_QNAME, KeyInfoType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DigestMethodType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DigestMethod") - public JAXBElement createDigestMethod(DigestMethodType value) { - return new JAXBElement(_DigestMethod_QNAME, DigestMethodType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "MgmtData") - public JAXBElement createMgmtData(String value) { - return new JAXBElement(_MgmtData_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignedInfoType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignedInfo") - public JAXBElement createSignedInfo(SignedInfoType value) { - return new JAXBElement(_SignedInfo_QNAME, SignedInfoType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjectType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Object") - public JAXBElement createObject(ObjectType value) { - return new JAXBElement(_Object_QNAME, ObjectType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509DataType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Data") - public JAXBElement createX509Data(X509DataType value) { - return new JAXBElement(_X509Data_QNAME, X509DataType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignaturePropertiesType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureProperties") - public JAXBElement createSignatureProperties(SignaturePropertiesType value) { - return new JAXBElement(_SignatureProperties_QNAME, SignaturePropertiesType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyName") - public JAXBElement createKeyName(String value) { - return new JAXBElement(_KeyName_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "RetrievalMethod") - public JAXBElement createRetrievalMethod(RetrievalMethodType value) { - return new JAXBElement(_RetrievalMethod_QNAME, RetrievalMethodType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignaturePropertyType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureProperty") - public JAXBElement createSignatureProperty(SignaturePropertyType value) { - return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ReferenceType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Reference") - public JAXBElement createReference(ReferenceType value) { - return new JAXBElement(_Reference_QNAME, ReferenceType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "RSAKeyValue") - public JAXBElement createRSAKeyValue(RSAKeyValueType value) { - return new JAXBElement(_RSAKeyValue_QNAME, RSAKeyValueType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignatureType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Signature") - public JAXBElement createSignature(SignatureType value) { - return new JAXBElement(_Signature_QNAME, SignatureType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DSAKeyValue") - public JAXBElement createDSAKeyValue(DSAKeyValueType value) { - return new JAXBElement(_DSAKeyValue_QNAME, DSAKeyValueType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignatureValueType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureValue") - public JAXBElement createSignatureValue(SignatureValueType value) { - return new JAXBElement(_SignatureValue_QNAME, SignatureValueType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link TransformType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Transform") - public JAXBElement createTransform(TransformType value) { - return new JAXBElement(_Transform_QNAME, TransformType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DigestValue") - public JAXBElement createDigestValue(byte[] value) { - return new JAXBElement(_DigestValue_QNAME, byte[].class, null, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeyValueType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyValue") - public JAXBElement createKeyValue(KeyValueType value) { - return new JAXBElement(_KeyValue_QNAME, KeyValueType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ObjectType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ObjectType.java deleted file mode 100755 index ec712ca..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ObjectType.java +++ /dev/null @@ -1,171 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import org.w3c.dom.Element; - - -/** - *

Java class for ObjectType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ObjectType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded" minOccurs="0">
- *         <any processContents='lax'/>
- *       </sequence>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *       <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Encoding" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjectType", propOrder = { - "content" -}) -public class ObjectType { - - @XmlMixed - @XmlAnyElement(lax = true) - protected List content; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - @XmlAttribute(name = "MimeType") - protected String mimeType; - @XmlAttribute(name = "Encoding") - @XmlSchemaType(name = "anyURI") - protected String encoding; - - /** - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link String } - * {@link Object } - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the mimeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMimeType() { - return mimeType; - } - - /** - * Sets the value of the mimeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMimeType(String value) { - this.mimeType = value; - } - - /** - * Gets the value of the encoding property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEncoding() { - return encoding; - } - - /** - * Sets the value of the encoding property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEncoding(String value) { - this.encoding = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/PGPDataType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/PGPDataType.java deleted file mode 100755 index 9fb756b..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/PGPDataType.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlType; -import org.w3c.dom.Element; - - -/** - *

Java class for PGPDataType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PGPDataType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <sequence>
- *           <element name="PGPKeyID" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *           <element name="PGPKeyPacket" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *           <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <sequence>
- *           <element name="PGPKeyPacket" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *           <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PGPDataType", propOrder = { - "content" -}) -public class PGPDataType { - - @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) - }) - @XmlAnyElement(lax = true) - protected List content; - - /** - * Gets the rest of the content model. - * - *

- * You are getting this "catch-all" property because of the following reason: - * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 191 of file:/C:/Ward/2014/workspace/ODM-to-i2b2/odm/xsd/OpenClinica-ToODM1-3-0-OC2-0/xmldsig-core-schema.xsd - * line 186 of file:/C:/Ward/2014/workspace/ODM-to-i2b2/odm/xsd/OpenClinica-ToODM1-3-0-OC2-0/xmldsig-core-schema.xsd - *

- * To get rid of this property, apply a property customization to one - * of both of the following declarations to change their names: - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } - * {@link Object } - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/RSAKeyValueType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/RSAKeyValueType.java deleted file mode 100755 index 416268d..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/RSAKeyValueType.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RSAKeyValueType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RSAKeyValueType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Modulus" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *         <element name="Exponent" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RSAKeyValueType", propOrder = { - "modulus", - "exponent" -}) -public class RSAKeyValueType { - - @XmlElement(name = "Modulus", required = true) - protected byte[] modulus; - @XmlElement(name = "Exponent", required = true) - protected byte[] exponent; - - /** - * Gets the value of the modulus property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getModulus() { - return modulus; - } - - /** - * Sets the value of the modulus property. - * - * @param value - * allowed object is - * byte[] - */ - public void setModulus(byte[] value) { - this.modulus = value; - } - - /** - * Gets the value of the exponent property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getExponent() { - return exponent; - } - - /** - * Sets the value of the exponent property. - * - * @param value - * allowed object is - * byte[] - */ - public void setExponent(byte[] value) { - this.exponent = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ReferenceType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ReferenceType.java deleted file mode 100755 index 659378c..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/ReferenceType.java +++ /dev/null @@ -1,214 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for ReferenceType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ReferenceType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestMethod"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestValue"/>
- *       </sequence>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *       <attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *       <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenceType", propOrder = { - "transforms", - "digestMethod", - "digestValue" -}) -public class ReferenceType { - - @XmlElement(name = "Transforms") - protected TransformsType transforms; - @XmlElement(name = "DigestMethod", required = true) - protected DigestMethodType digestMethod; - @XmlElement(name = "DigestValue", required = true) - protected byte[] digestValue; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - @XmlAttribute(name = "URI") - @XmlSchemaType(name = "anyURI") - protected String uri; - @XmlAttribute(name = "Type") - @XmlSchemaType(name = "anyURI") - protected String type; - - /** - * Gets the value of the transforms property. - * - * @return - * possible object is - * {@link TransformsType } - * - */ - public TransformsType getTransforms() { - return transforms; - } - - /** - * Sets the value of the transforms property. - * - * @param value - * allowed object is - * {@link TransformsType } - * - */ - public void setTransforms(TransformsType value) { - this.transforms = value; - } - - /** - * Gets the value of the digestMethod property. - * - * @return - * possible object is - * {@link DigestMethodType } - * - */ - public DigestMethodType getDigestMethod() { - return digestMethod; - } - - /** - * Sets the value of the digestMethod property. - * - * @param value - * allowed object is - * {@link DigestMethodType } - * - */ - public void setDigestMethod(DigestMethodType value) { - this.digestMethod = value; - } - - /** - * Gets the value of the digestValue property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDigestValue() { - return digestValue; - } - - /** - * Sets the value of the digestValue property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDigestValue(byte[] value) { - this.digestValue = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the uri property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getURI() { - return uri; - } - - /** - * Sets the value of the uri property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setURI(String value) { - this.uri = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/RetrievalMethodType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/RetrievalMethodType.java deleted file mode 100755 index 6adb027..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/RetrievalMethodType.java +++ /dev/null @@ -1,127 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RetrievalMethodType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RetrievalMethodType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *       <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RetrievalMethodType", propOrder = { - "transforms" -}) -public class RetrievalMethodType { - - @XmlElement(name = "Transforms") - protected TransformsType transforms; - @XmlAttribute(name = "URI") - @XmlSchemaType(name = "anyURI") - protected String uri; - @XmlAttribute(name = "Type") - @XmlSchemaType(name = "anyURI") - protected String type; - - /** - * Gets the value of the transforms property. - * - * @return - * possible object is - * {@link TransformsType } - * - */ - public TransformsType getTransforms() { - return transforms; - } - - /** - * Sets the value of the transforms property. - * - * @param value - * allowed object is - * {@link TransformsType } - * - */ - public void setTransforms(TransformsType value) { - this.transforms = value; - } - - /** - * Gets the value of the uri property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getURI() { - return uri; - } - - /** - * Sets the value of the uri property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setURI(String value) { - this.uri = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SPKIDataType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SPKIDataType.java deleted file mode 100755 index 7357aa2..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SPKIDataType.java +++ /dev/null @@ -1,83 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; -import org.w3c.dom.Element; - - -/** - *

Java class for SPKIDataType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SPKIDataType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded">
- *         <element name="SPKISexp" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <any processContents='lax' namespace='##other' minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SPKIDataType", propOrder = { - "spkiSexpAndAny" -}) -public class SPKIDataType { - - @XmlElementRef(name = "SPKISexp", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class) - @XmlAnyElement(lax = true) - protected List spkiSexpAndAny; - - /** - * Gets the value of the spkiSexpAndAny property. - * - *

- * 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 set method for the spkiSexpAndAny property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSPKISexpAndAny().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * - * - */ - public List getSPKISexpAndAny() { - if (spkiSexpAndAny == null) { - spkiSexpAndAny = new ArrayList(); - } - return this.spkiSexpAndAny; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureMethodType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureMethodType.java deleted file mode 100755 index 3a54dd6..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureMethodType.java +++ /dev/null @@ -1,115 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.math.BigInteger; -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SignatureMethodType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SignatureMethodType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="HMACOutputLength" type="{http://www.w3.org/2000/09/xmldsig#}HMACOutputLengthType" minOccurs="0"/>
- *         <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SignatureMethodType", propOrder = { - "content" -}) -public class SignatureMethodType { - - @XmlElementRef(name = "HMACOutputLength", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) - @XmlMixed - @XmlAnyElement(lax = true) - protected List content; - @XmlAttribute(name = "Algorithm", required = true) - @XmlSchemaType(name = "anyURI") - protected String algorithm; - - /** - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} - * {@link String } - * {@link Object } - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - - /** - * Gets the value of the algorithm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlgorithm() { - return algorithm; - } - - /** - * Sets the value of the algorithm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlgorithm(String value) { - this.algorithm = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignaturePropertiesType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignaturePropertiesType.java deleted file mode 100755 index 5382a05..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignaturePropertiesType.java +++ /dev/null @@ -1,111 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for SignaturePropertiesType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SignaturePropertiesType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureProperty" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SignaturePropertiesType", propOrder = { - "signatureProperty" -}) -public class SignaturePropertiesType { - - @XmlElement(name = "SignatureProperty", required = true) - protected List signatureProperty; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the signatureProperty property. - * - *

- * 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 set method for the signatureProperty property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSignatureProperty().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SignaturePropertyType } - * - * - */ - public List getSignatureProperty() { - if (signatureProperty == null) { - signatureProperty = new ArrayList(); - } - return this.signatureProperty; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignaturePropertyType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignaturePropertyType.java deleted file mode 100755 index 1c8a310..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignaturePropertyType.java +++ /dev/null @@ -1,144 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import org.w3c.dom.Element; - - -/** - *

Java class for SignaturePropertyType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SignaturePropertyType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <any processContents='lax' namespace='##other'/>
- *       </choice>
- *       <attribute name="Target" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SignaturePropertyType", propOrder = { - "content" -}) -public class SignaturePropertyType { - - @XmlMixed - @XmlAnyElement(lax = true) - protected List content; - @XmlAttribute(name = "Target", required = true) - @XmlSchemaType(name = "anyURI") - protected String target; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link String } - * {@link Object } - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - - /** - * Gets the value of the target property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTarget() { - return target; - } - - /** - * Sets the value of the target property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTarget(String value) { - this.target = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureType.java deleted file mode 100755 index bf75e79..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureType.java +++ /dev/null @@ -1,195 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for SignatureType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SignatureType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}SignedInfo"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureValue"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" minOccurs="0"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Object" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SignatureType", propOrder = { - "signedInfo", - "signatureValue", - "keyInfo", - "object" -}) -public class SignatureType { - - @XmlElement(name = "SignedInfo", required = true) - protected SignedInfoType signedInfo; - @XmlElement(name = "SignatureValue", required = true) - protected SignatureValueType signatureValue; - @XmlElement(name = "KeyInfo") - protected KeyInfoType keyInfo; - @XmlElement(name = "Object") - protected List object; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the signedInfo property. - * - * @return - * possible object is - * {@link SignedInfoType } - * - */ - public SignedInfoType getSignedInfo() { - return signedInfo; - } - - /** - * Sets the value of the signedInfo property. - * - * @param value - * allowed object is - * {@link SignedInfoType } - * - */ - public void setSignedInfo(SignedInfoType value) { - this.signedInfo = value; - } - - /** - * Gets the value of the signatureValue property. - * - * @return - * possible object is - * {@link SignatureValueType } - * - */ - public SignatureValueType getSignatureValue() { - return signatureValue; - } - - /** - * Sets the value of the signatureValue property. - * - * @param value - * allowed object is - * {@link SignatureValueType } - * - */ - public void setSignatureValue(SignatureValueType value) { - this.signatureValue = value; - } - - /** - * Gets the value of the keyInfo property. - * - * @return - * possible object is - * {@link KeyInfoType } - * - */ - public KeyInfoType getKeyInfo() { - return keyInfo; - } - - /** - * Sets the value of the keyInfo property. - * - * @param value - * allowed object is - * {@link KeyInfoType } - * - */ - public void setKeyInfo(KeyInfoType value) { - this.keyInfo = value; - } - - /** - * Gets the value of the object property. - * - *

- * 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 set method for the object property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getObject().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ObjectType } - * - * - */ - public List getObject() { - if (object == null) { - object = new ArrayList(); - } - return this.object; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureValueType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureValueType.java deleted file mode 100755 index 41bb4d5..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignatureValueType.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for SignatureValueType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SignatureValueType">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>base64Binary">
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SignatureValueType", propOrder = { - "value" -}) -public class SignatureValueType { - - @XmlValue - protected byte[] value; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * byte[] - */ - public void setValue(byte[] value) { - this.value = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignedInfoType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignedInfoType.java deleted file mode 100755 index 71ee6c9..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/SignedInfoType.java +++ /dev/null @@ -1,167 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for SignedInfoType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SignedInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}CanonicalizationMethod"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureMethod"/>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Reference" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SignedInfoType", propOrder = { - "canonicalizationMethod", - "signatureMethod", - "reference" -}) -public class SignedInfoType { - - @XmlElement(name = "CanonicalizationMethod", required = true) - protected CanonicalizationMethodType canonicalizationMethod; - @XmlElement(name = "SignatureMethod", required = true) - protected SignatureMethodType signatureMethod; - @XmlElement(name = "Reference", required = true) - protected List reference; - @XmlAttribute(name = "Id") - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - - /** - * Gets the value of the canonicalizationMethod property. - * - * @return - * possible object is - * {@link CanonicalizationMethodType } - * - */ - public CanonicalizationMethodType getCanonicalizationMethod() { - return canonicalizationMethod; - } - - /** - * Sets the value of the canonicalizationMethod property. - * - * @param value - * allowed object is - * {@link CanonicalizationMethodType } - * - */ - public void setCanonicalizationMethod(CanonicalizationMethodType value) { - this.canonicalizationMethod = value; - } - - /** - * Gets the value of the signatureMethod property. - * - * @return - * possible object is - * {@link SignatureMethodType } - * - */ - public SignatureMethodType getSignatureMethod() { - return signatureMethod; - } - - /** - * Sets the value of the signatureMethod property. - * - * @param value - * allowed object is - * {@link SignatureMethodType } - * - */ - public void setSignatureMethod(SignatureMethodType value) { - this.signatureMethod = value; - } - - /** - * Gets the value of the reference property. - * - *

- * 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 set method for the reference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ReferenceType } - * - * - */ - public List getReference() { - if (reference == null) { - reference = new ArrayList(); - } - return this.reference; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/TransformType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/TransformType.java deleted file mode 100755 index 51f834e..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/TransformType.java +++ /dev/null @@ -1,116 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import org.w3c.dom.Element; - - -/** - *

Java class for TransformType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TransformType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded" minOccurs="0">
- *         <any processContents='lax' namespace='##other'/>
- *         <element name="XPath" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </choice>
- *       <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TransformType", propOrder = { - "content" -}) -public class TransformType { - - @XmlElementRef(name = "XPath", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) - @XmlMixed - @XmlAnyElement(lax = true) - protected List content; - @XmlAttribute(name = "Algorithm", required = true) - @XmlSchemaType(name = "anyURI") - protected String algorithm; - - /** - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } - * {@link Object } - * - * - */ - public List getContent() { - if (content == null) { - content = new ArrayList(); - } - return this.content; - } - - /** - * Gets the value of the algorithm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlgorithm() { - return algorithm; - } - - /** - * Sets the value of the algorithm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlgorithm(String value) { - this.algorithm = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/TransformsType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/TransformsType.java deleted file mode 100755 index 71f3d60..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/TransformsType.java +++ /dev/null @@ -1,76 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -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; - - -/** - *

Java class for TransformsType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TransformsType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Transform" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TransformsType", propOrder = { - "transform" -}) -public class TransformsType { - - @XmlElement(name = "Transform", required = true) - protected List transform; - - /** - * Gets the value of the transform property. - * - *

- * 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 set method for the transform property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTransform().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TransformType } - * - * - */ - public List getTransform() { - if (transform == null) { - transform = new ArrayList(); - } - return this.transform; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/X509DataType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/X509DataType.java deleted file mode 100755 index 7cdb556..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/X509DataType.java +++ /dev/null @@ -1,100 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlType; -import org.w3c.dom.Element; - - -/** - *

Java class for X509DataType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="X509DataType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded">
- *         <choice>
- *           <element name="X509IssuerSerial" type="{http://www.w3.org/2000/09/xmldsig#}X509IssuerSerialType"/>
- *           <element name="X509SKI" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *           <element name="X509SubjectName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *           <element name="X509Certificate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *           <element name="X509CRL" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *           <any processContents='lax' namespace='##other'/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "X509DataType", propOrder = { - "x509IssuerSerialOrX509SKIOrX509SubjectName" -}) -public class X509DataType { - - @XmlElementRefs({ - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) - }) - @XmlAnyElement(lax = true) - protected List x509IssuerSerialOrX509SKIOrX509SubjectName; - - /** - * Gets the value of the x509IssuerSerialOrX509SKIOrX509SubjectName property. - * - *

- * 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 set method for the x509IssuerSerialOrX509SKIOrX509SubjectName property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getX509IssuerSerialOrX509SKIOrX509SubjectName().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Element } - * - * - */ - public List getX509IssuerSerialOrX509SKIOrX509SubjectName() { - if (x509IssuerSerialOrX509SKIOrX509SubjectName == null) { - x509IssuerSerialOrX509SKIOrX509SubjectName = new ArrayList(); - } - return this.x509IssuerSerialOrX509SKIOrX509SubjectName; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/X509IssuerSerialType.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/X509IssuerSerialType.java deleted file mode 100755 index 3a1b14c..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/X509IssuerSerialType.java +++ /dev/null @@ -1,98 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - - -package org.w3.xmldsig.jaxb; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for X509IssuerSerialType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="X509IssuerSerialType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "X509IssuerSerialType", propOrder = { - "x509IssuerName", - "x509SerialNumber" -}) -public class X509IssuerSerialType { - - @XmlElement(name = "X509IssuerName", required = true) - protected String x509IssuerName; - @XmlElement(name = "X509SerialNumber", required = true) - protected BigInteger x509SerialNumber; - - /** - * Gets the value of the x509IssuerName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getX509IssuerName() { - return x509IssuerName; - } - - /** - * Sets the value of the x509IssuerName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setX509IssuerName(String value) { - this.x509IssuerName = value; - } - - /** - * Gets the value of the x509SerialNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getX509SerialNumber() { - return x509SerialNumber; - } - - /** - * Sets the value of the x509SerialNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setX509SerialNumber(BigInteger value) { - this.x509SerialNumber = value; - } - -} diff --git a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/package-info.java b/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/package-info.java deleted file mode 100755 index 2b4d746..0000000 --- a/odm/gensrc_openclinica/org/w3/xmldsig/jaxb/package-info.java +++ /dev/null @@ -1,9 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2014.05.06 at 02:44:20 PM CEST -// - -@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2000/09/xmldsig#", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package org.w3.xmldsig.jaxb; diff --git a/odm/lib/commons-lang-2.5.jar b/odm/lib/commons-lang-2.5.jar deleted file mode 100755 index ae491da..0000000 Binary files a/odm/lib/commons-lang-2.5.jar and /dev/null differ diff --git a/odm/lib/commons-logging-1.1.1.jar b/odm/lib/commons-logging-1.1.1.jar deleted file mode 100755 index 8758a96..0000000 Binary files a/odm/lib/commons-logging-1.1.1.jar and /dev/null differ diff --git a/odm/lib/guava-15.0.jar b/odm/lib/guava-15.0.jar deleted file mode 100644 index eb9ef8a..0000000 Binary files a/odm/lib/guava-15.0.jar and /dev/null differ diff --git a/odm/lib/jackson-core-asl-1.9.3.jar b/odm/lib/jackson-core-asl-1.9.3.jar deleted file mode 100755 index d42972e..0000000 Binary files a/odm/lib/jackson-core-asl-1.9.3.jar and /dev/null differ diff --git a/odm/lib/jdom-1.1.2.jar b/odm/lib/jdom-1.1.2.jar deleted file mode 100755 index b8091ef..0000000 Binary files a/odm/lib/jdom-1.1.2.jar and /dev/null differ diff --git a/odm/lib/jsoup-1.7.3.jar b/odm/lib/jsoup-1.7.3.jar deleted file mode 100755 index aa5c798..0000000 Binary files a/odm/lib/jsoup-1.7.3.jar and /dev/null differ diff --git a/odm/lib/jtds-1.2.5.jar b/odm/lib/jtds-1.2.5.jar deleted file mode 100755 index 79ba560..0000000 Binary files a/odm/lib/jtds-1.2.5.jar and /dev/null differ diff --git a/odm/lib/junit-4.8.2.jar b/odm/lib/junit-4.8.2.jar deleted file mode 100755 index 5b4bb84..0000000 Binary files a/odm/lib/junit-4.8.2.jar and /dev/null differ diff --git a/odm/lib/junit-dep-4.8.2.jar b/odm/lib/junit-dep-4.8.2.jar deleted file mode 100755 index f28b4ef..0000000 Binary files a/odm/lib/junit-dep-4.8.2.jar and /dev/null differ diff --git a/odm/lib/log4j-snmp-appender.jar b/odm/lib/log4j-snmp-appender.jar deleted file mode 100755 index a2e249c..0000000 Binary files a/odm/lib/log4j-snmp-appender.jar and /dev/null differ diff --git a/odm/lib/log4j.jar b/odm/lib/log4j.jar deleted file mode 100755 index 69b0005..0000000 Binary files a/odm/lib/log4j.jar and /dev/null differ diff --git a/odm/lib/opencsv-2.3.jar b/odm/lib/opencsv-2.3.jar deleted file mode 100755 index 10daf50..0000000 Binary files a/odm/lib/opencsv-2.3.jar and /dev/null differ diff --git a/odm/lib/sqljdbc4.jar b/odm/lib/sqljdbc4.jar deleted file mode 100755 index a8b2f31..0000000 Binary files a/odm/lib/sqljdbc4.jar and /dev/null differ diff --git a/odm/odm.iml b/odm/odm.iml deleted file mode 100755 index 0e14b5f..0000000 --- a/odm/odm.iml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/documentation/DevelopersInformation.md b/src/documentation/DevelopersInformation.md index 47534a6..8a63c9e 100755 --- a/src/documentation/DevelopersInformation.md +++ b/src/documentation/DevelopersInformation.md @@ -17,7 +17,6 @@ via the screenshots. Developers who want to use/test the very latest state of th Requirements: ------------- -- internet access - git ```sh $ sudo apt-get install git