diff --git a/.gitignore b/.gitignore index 6143e53..ca4dd61 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,7 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* + +#intellij +.idea/ +/target/ \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..a5df10b --- /dev/null +++ b/pom.xml @@ -0,0 +1,120 @@ + + + 4.0.0 + org.cbio + gdcpipeline + 0.0.1-SNAPSHOT + jar + + gdcpipeline + GDC Data Transformation + + + org.springframework.boot + spring-boot-starter-parent + 1.2.7.RELEASE + + + + + UTF-8 + UTF-8 + 1.8 + + + + + org.springframework.boot + spring-boot-starter-batch + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-test + test + + + + org.springframework + spring-oxm + + + commons-collections + commons-collections + jar + + + commons-cli + commons-cli + 1.4 + + + commons-io + commons-io + 2.4 + jar + + + commons-logging + commons-logging + 1.2 + + + com.google.code.gson + gson + + + org.mockito + mockito-all + 1.9.5 + + + org.powermock + powermock-module-junit4 + 1.7.0 + test + + + org.powermock + powermock-api-mockito + 1.7.0 + test + + + com.h2database + h2 + 1.3.156 + + + com.github.genome-nexus + genome-nexus-annotation-pipeline + b97fa34b24dd5083f055cafa31867e69e0bcfb7c + + + commons-lang + commons-lang + 2.6 + jar + + + + + + jitpack.io + https://jitpack.io + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + diff --git a/src/main/java/org/cbio/gdcpipeline/GDCPipelineApplication.java b/src/main/java/org/cbio/gdcpipeline/GDCPipelineApplication.java new file mode 100644 index 0000000..5d944b0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/GDCPipelineApplication.java @@ -0,0 +1,128 @@ +package org.cbio.gdcpipeline; + +import org.apache.commons.cli.*; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.util.CommonDataUtil; + +import org.springframework.batch.core.Job; +import org.springframework.batch.core.JobExecution; +import org.springframework.batch.core.JobParameters; +import org.springframework.batch.core.JobParametersBuilder; +import org.springframework.batch.core.launch.JobLauncher; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.ConfigurableApplicationContext; + +/** + * @author Dixit Patel + */ +@SpringBootApplication +public class GDCPipelineApplication { + private static Log LOG = LogFactory.getLog(GDCPipelineApplication.class); + private final static String GDC_JOB = "gdcJob"; + private final static String DEFAULT_DATATYPES = "ALL"; + private final static String DEFAULT_FILTER_NORMAL_SAMPLE = "true"; + private final static String DEFAULT_SEPARATE_MAF_FILES = "false"; + private final static String DEFAULT_ISOFORM_OVERRIDE_SOURCE = "uniprot"; + private final static String DEFAULT_REFERENCE_GENOME_BUILD = CommonDataUtil.REFERENCE_GENOME.GRCh37.toString(); + + private static Options getOptions(String[] input) { + Options options = new Options(); + options.addOption("s", "source", true, "source directory for files"); + options.addOption("o", "output", true, "output directory for files"); + options.addOption("c", "cancer_study_id", true, "Cancer Study Id"); + options.addOption("m", "manifest_file", true, "Manifest file path"); + options.addOption("f", "filter_normal_sample", true, "True or False. Flag to filter normal samples. Default is True "); + options.addOption("d", "datatypes", true, "Datatypes to run. Default is All"); + options.addOption("separate_mafs", "separate_mafs", true, "True or False. Process MAF files individually or merge together. Default is False"); + options.addOption("i", "isoformOverrideSource", true, "Isoform Override Source. Default is \'uniprot\'"); + options.addOption("r", "reference_genome_build", true, "Reference Genome to use for processing MAF. Default is GRCh37"); + options.addOption("h", "help", false, "shows this help document and quits."); + return options; + } + + private static void help(Options gnuOptions, int exitStatus, String opt) { + HelpFormatter helpFormatter = new HelpFormatter(); + if (!opt.isEmpty()) { + System.out.println(opt); + } + helpFormatter.printHelp(" Pipeline Options ", gnuOptions); + System.exit(exitStatus); + } + + private static void launchJob(String[] args, String sourceDirectory, String outputDirectory, String cancer_study_id, String manifest_file, String filter_normal_sample, String datatypes, String separate_mafs,String isoformOverrideSource,String reference_genome_build) throws Exception { + SpringApplication app = new SpringApplication(GDCPipelineApplication.class); + ConfigurableApplicationContext ctx = app.run(args); + Job gdcJob = ctx.getBean(GDC_JOB, Job.class); + JobLauncher jobLauncher = ctx.getBean(JobLauncher.class); + JobParameters jobParameters = new JobParametersBuilder() + .addString("sourceDirectory", sourceDirectory) + .addString("outputDirectory", outputDirectory) + .addString("cancer_study_id", cancer_study_id) + .addString("manifest_file", manifest_file) + .addString("filter_normal_sample", filter_normal_sample) + .addString("datatypes", datatypes) + .addString("separate_mafs", separate_mafs) + .addString("isoformOverrideSource",isoformOverrideSource) + .addString("reference_genome_build",reference_genome_build) + .toJobParameters(); + JobExecution jobExecution = jobLauncher.run(gdcJob, jobParameters); + } + + public static void main(String[] args) throws Exception { + Options options = GDCPipelineApplication.getOptions(args); + CommandLineParser parser = new DefaultParser(); + CommandLine cli = parser.parse(options, args); + if (cli.hasOption("help")) { + GDCPipelineApplication.help(options, 0, ""); + } + if (!cli.hasOption("source")) { + GDCPipelineApplication.help(options, 0, "Source directory of files must be specified"); + } + if (!cli.hasOption("output")) { + GDCPipelineApplication.help(options, 0, "Output directory for files must be specified"); + } + if (!cli.hasOption("manifest_file")) { + GDCPipelineApplication.help(options, 0, "Manifest file path must be specified"); + } + String datatypes = DEFAULT_DATATYPES; + if (cli.hasOption("datatypes")) { + datatypes = cli.getOptionValue("datatypes"); + } + + String filter_normal_sample = DEFAULT_FILTER_NORMAL_SAMPLE; + if (cli.hasOption("filter_normal_sample")) { + if (cli.getOptionValue("filter_normal_sample").toLowerCase().equals("false")) { + filter_normal_sample = "false"; + } else if (!cli.getOptionValue("filter_normal_sample").toLowerCase().equals("true")) { + GDCPipelineApplication.help(options, 0, "Filter Option must either be True or False"); + } + } + + String separate_mafs = DEFAULT_SEPARATE_MAF_FILES; + if (cli.hasOption("separate_mafs")) { + if (cli.getOptionValue("separate_mafs").toLowerCase().equals("true")) { + separate_mafs = "true"; + } else if (!cli.getOptionValue("separate_mafs").toLowerCase().equals("false")) { + GDCPipelineApplication.help(options, 0, "MAF File Option must either be True or False"); + } + } + + String isoformOverrideSource = DEFAULT_ISOFORM_OVERRIDE_SOURCE; + if (cli.hasOption("isoformOverrideSource")) { + isoformOverrideSource = cli.getOptionValue("isoformOverrideSource"); + } + + String reference_genome_build = DEFAULT_REFERENCE_GENOME_BUILD; + if(cli.hasOption("reference_genome_build")){ + reference_genome_build = cli.getOptionValue("reference_genome_build"); + if(!(CommonDataUtil.REFERENCE_GENOME.build37.contains(reference_genome_build))){ + GDCPipelineApplication.help(options, 0, reference_genome_build+" reference genome build is not currently supported."); + } + } + + launchJob(args, cli.getOptionValue("source"), cli.getOptionValue("output"), cli.getOptionValue("cancer_study_id"), cli.getOptionValue("manifest_file"), filter_normal_sample, datatypes, separate_mafs,isoformOverrideSource,reference_genome_build); + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/JobConfiguration/BatchConfiguration.java b/src/main/java/org/cbio/gdcpipeline/JobConfiguration/BatchConfiguration.java new file mode 100644 index 0000000..56577b0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/JobConfiguration/BatchConfiguration.java @@ -0,0 +1,191 @@ +package org.cbio.gdcpipeline.JobConfiguration; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.decider.ClinicalFileTypeDecider; +import org.cbio.gdcpipeline.decider.StepDecider; +import org.cbio.gdcpipeline.tasklet.BiospecimenXmlDataTasklet; +import org.cbio.gdcpipeline.tasklet.ProcessManifestFileTasklet; +import org.cbio.gdcpipeline.tasklet.SetUpPipelineTasklet; +import org.cbio.gdcpipeline.util.CommonDataUtil; +import org.springframework.batch.core.Job; +import org.springframework.batch.core.Step; +import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; +import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; +import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; +import org.springframework.batch.core.configuration.annotation.StepScope; +import org.springframework.batch.core.job.builder.FlowBuilder; +import org.springframework.batch.core.job.flow.Flow; +import org.springframework.batch.core.job.flow.JobExecutionDecider; +import org.springframework.batch.core.listener.ExecutionContextPromotionListener; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.ComponentScan; +import org.springframework.context.annotation.Configuration; + +import javax.annotation.Resource; + +/** + * @author Dixit Patel + */ +@EnableBatchProcessing +@Configuration +@ComponentScan(basePackages="org.cbioportal.annotator") +public class BatchConfiguration { + private static Log LOG = LogFactory.getLog(BatchConfiguration.class); + @Autowired + JobBuilderFactory jobBuilderFactory; + + @Autowired + StepBuilderFactory stepBuilderFactory; + + @Resource(name = "clinicalDataStep") + Step clinicalDataStep; + + @Resource(name = "clinicalMetaDataStep") + Step clinicalMetaDataStep; + + @Resource(name = "mutationDataStep") + Step mutationDataStep; + + @Resource(name = "mutationMetaDataStep") + Step mutationMetaDataStep; + + @Value("${chunk.interval}") + private int chunkInterval; + + @Bean + public Step setUpPipeline() { + return stepBuilderFactory.get("setUpPipeline") + .tasklet(setUpPipelineTasklet()) + .build(); + } + + @Bean + public ExecutionContextPromotionListener processManifestFileListener() { + String[] keys = new String[]{"gdcFileMetadatas"}; + ExecutionContextPromotionListener executionContextPromotionListener = new ExecutionContextPromotionListener(); + executionContextPromotionListener.setKeys(keys); + return executionContextPromotionListener; + + } + + @Bean + public Step processManifestFile() { + return stepBuilderFactory.get("processManifestFile") + .listener(processManifestFileListener()) + .tasklet(processManifestFileTasklet()) + .build(); + } + + @Bean + @StepScope + public Tasklet processManifestFileTasklet() { + return new ProcessManifestFileTasklet(); + } + + @Bean + @StepScope + public Tasklet setUpPipelineTasklet() { + return new SetUpPipelineTasklet(); + } + + + @Bean + @StepScope + public Tasklet biospecimenXmlDataTasklet() { + return new BiospecimenXmlDataTasklet(); + } + + @Bean + public ExecutionContextPromotionListener biospecimenXmlDataListener() { + String[] keys = new String[]{"barcodeToSamplesMap"}; + ExecutionContextPromotionListener executionContextPromotionListener = new ExecutionContextPromotionListener(); + executionContextPromotionListener.setKeys(keys); + return executionContextPromotionListener; + + } + + @Bean + public Step biospecimenXmlDataStep() { + return stepBuilderFactory.get("biospecimenXmlDataStep") + .listener(biospecimenXmlDataListener()) + .tasklet(biospecimenXmlDataTasklet()) + .build(); + } + + @Bean + public Flow clinicalXmlDataFlow() { + return new FlowBuilder("clinicalXmlDataFlow") + .start(biospecimenXmlDataStep()) + .next(clinicalDataStep) + .next(clinicalMetaDataStep) + .build(); + } + + @Bean + public Flow mutationDataFlow() { + return new FlowBuilder("mutationDataFlow") + .start(mutationDataStep) + .from(mutationDataStep).on("CONTINUE").to(mutationDataStep) + .next(mutationMetaDataStep) + .build(); + } + + @Bean + public JobExecutionDecider clinicalFileTypeDecider() { + return new ClinicalFileTypeDecider(); + } + + @Bean + public Flow clinicalFileTypeDeciderFlow() { + return new FlowBuilder("clinicalFileTypeDeciderFlow") + .start(clinicalFileTypeDecider()) + .on(CommonDataUtil.GDC_DATAFORMAT.BCR_XML.toString()).to(clinicalXmlDataFlow()) + .on("FAIL").fail() + .build(); + } + + @Bean + public Flow gdcAllDatatypesFlow() { + return new FlowBuilder("gdcAllDatatypesFlow") + .start(clinicalFileTypeDecider()) + .on(CommonDataUtil.GDC_DATAFORMAT.BCR_XML.toString()).to(clinicalXmlDataFlow()) + .next(mutationDataFlow()) + .build(); + } + + @Bean + public Flow configurePipelineFlow() { + return new FlowBuilder("configurePipelineFlow") + .start(setUpPipeline()) + .next(processManifestFile()) + .build(); + } + + public Flow stepDeciderFlow() { + return new FlowBuilder("stepDeciderFlow") + .start(stepDecider()) + .on(StepDecider.STEP.ALL.toString()).to(gdcAllDatatypesFlow()) + .from(stepDecider()).on(StepDecider.STEP.CLINICAL.toString()).to(clinicalFileTypeDeciderFlow()) + .from(stepDecider()).on(StepDecider.STEP.MUTATION.toString()).to(mutationDataFlow()) + .build(); + } + + @Bean + public JobExecutionDecider stepDecider() { + return new StepDecider(); + } + + // Flow of All Steps + @Bean + public Job gdcJob() { + return jobBuilderFactory.get("gdcJob") + .start(configurePipelineFlow()) + .next(stepDeciderFlow()) + .end() + .build(); + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/decider/ClinicalFileTypeDecider.java b/src/main/java/org/cbio/gdcpipeline/decider/ClinicalFileTypeDecider.java new file mode 100644 index 0000000..a87e17c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/decider/ClinicalFileTypeDecider.java @@ -0,0 +1,46 @@ +package org.cbio.gdcpipeline.decider; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.rest.response.Hits; +import org.cbio.gdcpipeline.util.CommonDataUtil; +import org.springframework.batch.core.JobExecution; +import org.springframework.batch.core.StepExecution; +import org.springframework.batch.core.job.flow.FlowExecutionStatus; +import org.springframework.batch.core.job.flow.JobExecutionDecider; + +import java.util.List; + +/** + * @author Dixit Patel + */ +public class ClinicalFileTypeDecider implements JobExecutionDecider { + private static Log LOG = LogFactory.getLog(ClinicalFileTypeDecider.class); + + @Override + public FlowExecutionStatus decide(JobExecution jobExecution, StepExecution stepExecution) { + List gdcFileMetadatas = (List) jobExecution.getExecutionContext().get("gdcFileMetadatas"); + String data_format = getClinicalFileFormat(gdcFileMetadatas); + if ((data_format!=null) && !data_format.isEmpty()) { + if (data_format.equals(CommonDataUtil.GDC_DATAFORMAT.BCR_XML.toString())) { + if (LOG.isInfoEnabled()) { + LOG.info(" Found Clinical files of XML type"); + } + return new FlowExecutionStatus(CommonDataUtil.GDC_DATAFORMAT.BCR_XML.toString()); + } + } + if (LOG.isErrorEnabled()) { + LOG.error(" Error in deciding Clinical File type."); + } + return new FlowExecutionStatus("FAIL"); + } + + private String getClinicalFileFormat(List gdcFileMetadatas) { + for (Hits data : gdcFileMetadatas) { + if (data.getType().equals(CommonDataUtil.GDC_TYPE.CLINICAL.toString())) { + return data.getData_format(); + } + } + return null; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/decider/StepDecider.java b/src/main/java/org/cbio/gdcpipeline/decider/StepDecider.java new file mode 100644 index 0000000..935be91 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/decider/StepDecider.java @@ -0,0 +1,27 @@ +package org.cbio.gdcpipeline.decider; + +import org.springframework.batch.core.JobExecution; +import org.springframework.batch.core.StepExecution; +import org.springframework.batch.core.job.flow.FlowExecutionStatus; +import org.springframework.batch.core.job.flow.JobExecutionDecider; + +/** + * @author Dixit Patel + */ +public class StepDecider implements JobExecutionDecider { + public enum STEP { + ALL, CLINICAL, MUTATION + } + + @Override + public FlowExecutionStatus decide(JobExecution jobExecution, StepExecution stepExecution) { + String stepToRun = jobExecution.getJobParameters().getString("datatypes"); + if (stepToRun.contains(STEP.CLINICAL.toString())) { + return new FlowExecutionStatus(STEP.CLINICAL.toString()); + } + if (stepToRun.contains(STEP.MUTATION.toString())) { + return new FlowExecutionStatus(STEP.MUTATION.toString()); + } + return new FlowExecutionStatus(STEP.ALL.toString()); + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/listener/MutationStepListener.java b/src/main/java/org/cbio/gdcpipeline/listener/MutationStepListener.java new file mode 100644 index 0000000..6639742 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/listener/MutationStepListener.java @@ -0,0 +1,93 @@ +package org.cbio.gdcpipeline.listener; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.rest.response.Hits; +import org.cbio.gdcpipeline.util.CommonDataUtil; +import org.springframework.batch.core.ExitStatus; +import org.springframework.batch.core.StepExecution; +import org.springframework.batch.core.StepExecutionListener; +import org.springframework.beans.factory.annotation.Value; + +import java.io.File; +import java.util.ArrayList; +import java.util.List; + +/** + * @author Dixit Patel + **/ +public class MutationStepListener implements StepExecutionListener { + private static Log LOG = LogFactory.getLog(MutationStepListener.class); + + @Value("${mutation.data.file.prefix}") + private String MUTATION_DATA_FILE_PREFIX; + + @Value("${mutation.default.merged.maf.file}") + private String MUTATION_DEFAULT_MERGED_MAF_FILE; + + @Value("#{jobParameters[sourceDirectory]}") + private String sourceDir; + + @Value("#{jobParameters[outputDirectory]}") + private String outputDir; + + @Value("#{jobExecutionContext[gdcFileMetadatas]}") + private List gdcFileMetadatas; + + @Value("#{jobParameters[separate_mafs]}") + private String separate_mafs; + + @Override + public void beforeStep(StepExecution stepExecution) { + List maf_files ; + if (stepExecution.getJobExecution().getExecutionContext().containsKey("maf_files")) { + maf_files = (List)stepExecution.getJobExecution().getExecutionContext().get("maf_files"); + } + else { + maf_files = getMutationFileList(); + } + if (!maf_files.isEmpty()) { + if (!separate_mafs.isEmpty()) { + if (separate_mafs.equalsIgnoreCase("true")) { + //used by metadata step + List maf_filenames = new ArrayList<>(); + for(File file : maf_files){ + maf_filenames.add(MUTATION_DATA_FILE_PREFIX+file.getName()); + } + stepExecution.getJobExecution().getExecutionContext().put("mutation_data_filenames", maf_filenames); + //read individually + List mafToProcess = new ArrayList<>(); + mafToProcess.add(maf_files.remove(0)); + stepExecution.getJobExecution().getExecutionContext().put("maf_files", maf_files); + stepExecution.getExecutionContext().put("mafToProcess", mafToProcess); + } else { + //Read all MAF's together + List mutation_data_filenames = new ArrayList<>(); + mutation_data_filenames.add(MUTATION_DEFAULT_MERGED_MAF_FILE); + stepExecution.getJobExecution().getExecutionContext().put("mutation_data_filenames",mutation_data_filenames ); + stepExecution.getExecutionContext().put("mafToProcess", maf_files); + } + } + } + } + + @Override + public ExitStatus afterStep(StepExecution stepExecution) { + if (!separate_mafs.isEmpty()) { + if (separate_mafs.equalsIgnoreCase("true")) { + List mafList = (List) stepExecution.getJobExecution().getExecutionContext().get("maf_files"); + if (!mafList.isEmpty()) { + return new ExitStatus("CONTINUE"); + } + } + //delete temp directory + CommonDataUtil.deleteTempDir(); + } + return ExitStatus.COMPLETED; + } + + public List getMutationFileList() { + return CommonDataUtil.getFileList(gdcFileMetadatas, CommonDataUtil.GDC_TYPE.MUTATION, sourceDir); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/ClinicalDataSource.java b/src/main/java/org/cbio/gdcpipeline/model/ClinicalDataSource.java new file mode 100644 index 0000000..65e8de2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/ClinicalDataSource.java @@ -0,0 +1,35 @@ +package org.cbio.gdcpipeline.model; + +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ + +public interface ClinicalDataSource { + List> getClinicalData(); + + List getSampleHeader(); + + List getPatientHeader(); + + List getTimelineHeader(); + + List> getTimelineData(); + + String getNextClinicalStudyId(); + + String getNextTimelineStudyId(); + + boolean hasMoreTimelineData(); + + boolean hasMoreClinicalData(); + + Map> getFullPatientHeader(Map> fullHeader); + + Map> getFullSampleHeader(Map> fullHeader); + + String getNormalizedClinicalFieldValue(String field); +} + diff --git a/src/main/java/org/cbio/gdcpipeline/model/ClinicalDataSourceImpl.java b/src/main/java/org/cbio/gdcpipeline/model/ClinicalDataSourceImpl.java new file mode 100644 index 0000000..225d4f9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/ClinicalDataSourceImpl.java @@ -0,0 +1,89 @@ +package org.cbio.gdcpipeline.model; + +import org.cbio.gdcpipeline.util.CommonDataUtil; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ +public class ClinicalDataSourceImpl implements ClinicalDataSource { + private Map clinicalFieldMap = initClinicalFieldValues(); + + public ClinicalDataSourceImpl() { + } + + private Map initClinicalFieldValues() { + Map map = new HashMap<>(); + map.put("alive", CommonDataUtil.CLINICAL_OS_STATUS.LIVING.toString()); + map.put("dead", CommonDataUtil.CLINICAL_OS_STATUS.DECEASED.toString()); + return map; + } + + @Override + public String getNormalizedClinicalFieldValue(String key) { + if (!key.isEmpty()) { + return this.clinicalFieldMap.get(key.toLowerCase()); + } + return null; + } + + @Override + public List> getClinicalData() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public List getSampleHeader() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public List getPatientHeader() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public List getTimelineHeader() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public List> getTimelineData() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public String getNextClinicalStudyId() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public String getNextTimelineStudyId() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public boolean hasMoreTimelineData() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public boolean hasMoreClinicalData() { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public Map> getFullPatientHeader(Map> fullHeader) { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + @Override + public Map> getFullSampleHeader(Map> fullHeader) { + throw new UnsupportedOperationException("Not Supported Yet"); + } + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/ClinicalMetadataImpl.java b/src/main/java/org/cbio/gdcpipeline/model/ClinicalMetadataImpl.java new file mode 100644 index 0000000..1a27a88 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/ClinicalMetadataImpl.java @@ -0,0 +1,79 @@ +package org.cbio.gdcpipeline.model; + +import java.util.*; + +/** + * @author Dixit Patel + */ +public class ClinicalMetadataImpl implements MetadataManager { + private Map displayNames = new HashMap<>(); + private Map description = new HashMap<>(); + private Map datatype = new HashMap<>(); + private Map priority = new HashMap<>(); + + public ClinicalMetadataImpl() { + setDisplayNames(); + setDescription(); + setDatatype(); + setPriority(); + } + + @Override + public Map> getFullHeader(List header) { + Map> headers = new LinkedHashMap<>(); + List displayNames = new ArrayList<>(); + List description = new ArrayList<>(); + List datatype = new ArrayList<>(); + List priority = new ArrayList<>(); + + for (String key : header) { + key = key.toUpperCase(); + displayNames.add(this.displayNames.get(key)); + description.add(this.description.get(key)); + datatype.add(this.datatype.get(key)); + priority.add(this.priority.get(key)); + } + headers.put("displayNames", displayNames); + headers.put("description", description); + headers.put("datatype", datatype); + headers.put("priority", priority); + headers.put("headers", header); + return headers; + } + + private void setDisplayNames() { + this.displayNames.put("PATIENT_ID", "Patient Identifier"); + this.displayNames.put("SAMPLE_ID", "Sample Identifier"); + this.displayNames.put("ONCOTREE_CODE", "Onco Tree Code"); + this.displayNames.put("OS_STATUS", "Overall Survival Status"); + this.displayNames.put("SEX", "Sex"); + this.displayNames.put("AGE", "Age"); + } + + private void setDescription() { + this.description.put("PATIENT_ID", "Patient_Identifier"); + this.description.put("SAMPLE_ID", "Sample Identifier"); + this.description.put("ONCOTREE_CODE", "Onco Tree Code"); + this.description.put("OS_STATUS", "Overall Survival Status"); + this.description.put("SEX", "Sex"); + this.description.put("AGE", "Age"); + } + + private void setDatatype() { + this.datatype.put("PATIENT_ID", "STRING"); + this.datatype.put("SAMPLE_ID", "STRING"); + this.datatype.put("ONCOTREE_CODE", "STRING"); + this.datatype.put("OS_STATUS", "STRING"); + this.datatype.put("SEX", "STRING"); + this.datatype.put("AGE", "NUMBER"); + } + + private void setPriority() { + this.priority.put("PATIENT_ID", "1"); + this.priority.put("SAMPLE_ID", "1"); + this.priority.put("ONCOTREE_CODE", "1"); + this.priority.put("OS_STATUS", "1"); + this.priority.put("SEX", "1"); + this.priority.put("AGE", "1"); + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/ManifestFileData.java b/src/main/java/org/cbio/gdcpipeline/model/ManifestFileData.java new file mode 100644 index 0000000..bd7fd68 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/ManifestFileData.java @@ -0,0 +1,64 @@ +package org.cbio.gdcpipeline.model; + +import java.util.ArrayList; +import java.util.List; + +/** + * @author Dixit Patel + */ +public class ManifestFileData { + private String id; + private String filename; + private String md5; + private String size; + private String state; + + public List getHeader(){ + List header = new ArrayList<>(); + header.add("Id"); + header.add("Filename"); + header.add("Md5"); + header.add("Size"); + header.add("State"); + return header; + } + public String getMd5() { + return md5; + } + + public void setMd5(String md5) { + this.md5 = md5; + } + + public String getSize() { + return size; + } + + public void setSize(String size) { + this.size = size; + } + + public String getState() { + return state; + } + + public void setState(String state) { + this.state = state; + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getFilename() { + return filename; + } + + public void setFilename(String filename) { + this.filename = filename; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/MetadataManager.java b/src/main/java/org/cbio/gdcpipeline/model/MetadataManager.java new file mode 100644 index 0000000..7146a62 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/MetadataManager.java @@ -0,0 +1,11 @@ +package org.cbio.gdcpipeline.model; + +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ +public interface MetadataManager { + Map> getFullHeader(List header); +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/cbio/ClinicalDataModel.java b/src/main/java/org/cbio/gdcpipeline/model/cbio/ClinicalDataModel.java new file mode 100644 index 0000000..74e4d09 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/cbio/ClinicalDataModel.java @@ -0,0 +1,13 @@ +package org.cbio.gdcpipeline.model.cbio; + +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ + +public abstract class ClinicalDataModel { + public abstract List getFields(); + public abstract Map> getHeaders(); +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/cbio/Patient.java b/src/main/java/org/cbio/gdcpipeline/model/cbio/Patient.java new file mode 100644 index 0000000..747a3e1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/cbio/Patient.java @@ -0,0 +1,79 @@ +package org.cbio.gdcpipeline.model.cbio; + +import org.cbio.gdcpipeline.model.ClinicalDataSourceImpl; +import org.cbio.gdcpipeline.model.ClinicalMetadataImpl; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ + +public class Patient extends ClinicalDataModel { + private String patient_id; + private String sex; + private int age; + private String os_status; + private ClinicalDataSourceImpl clinicalDataSource = new ClinicalDataSourceImpl(); + + public Patient() { + } + + public Patient(String patient_id, String os_status, String sex, int age) { + this.patient_id = patient_id; + this.sex = sex; + this.age = age; + this.os_status = os_status; + } + + @Override + public List getFields() { + List fields = new ArrayList<>(); + fields.add("Patient_id"); + fields.add("Os_status"); + fields.add("Age"); + fields.add("Sex"); + return fields; + } + + @Override + public Map> getHeaders() { + ClinicalMetadataImpl headers = new ClinicalMetadataImpl(); + return (headers.getFullHeader(getFields())); + } + + public String getPatient_id() { + return patient_id; + } + + public void setPatient_id(String patient_id) { + this.patient_id = patient_id; + } + + public String getSex() { + return sex; + } + + public void setSex(String sex) { + this.sex = sex; + } + + public int getAge() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public String getOs_status() { + return os_status; + } + + public void setOs_status(String os_status) { + this.os_status = this.clinicalDataSource.getNormalizedClinicalFieldValue(os_status); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/cbio/Sample.java b/src/main/java/org/cbio/gdcpipeline/model/cbio/Sample.java new file mode 100644 index 0000000..8f58f90 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/cbio/Sample.java @@ -0,0 +1,66 @@ +package org.cbio.gdcpipeline.model.cbio; + +import org.cbio.gdcpipeline.model.ClinicalMetadataImpl; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ + +public class Sample extends ClinicalDataModel { + private String patient_id; + private String sample_id; + private String oncotree_code; + + public Sample() { + } + + public Sample(String patient_id, String sample_id, String oncotree_code) { + this.patient_id = patient_id; + this.sample_id = sample_id; + this.oncotree_code = oncotree_code; + } + + @Override + public List getFields() { + List fields = new ArrayList<>(); + fields.add("Patient_id"); + fields.add("Sample_id"); + fields.add("Oncotree_code"); + + return fields; + } + + @Override + public Map> getHeaders() { + ClinicalMetadataImpl headers = new ClinicalMetadataImpl(); + return (headers.getFullHeader(getFields())); + } + + public String getPatient_id() { + return patient_id; + } + + public void setPatient_id(String patient_id) { + this.patient_id = patient_id; + } + + public String getSample_id() { + return sample_id; + } + + public void setSample_id(String sample_id) { + this.sample_id = sample_id; + } + + public String getOncotree_code() { + return oncotree_code; + } + + public void setOncotree_code(String oncotree_code) { + this.oncotree_code = oncotree_code; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdditionalStudies.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdditionalStudies.java new file mode 100644 index 0000000..cf72a06 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdditionalStudies.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}additional_study" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "additionalStudy" +}) +@XmlRootElement(name = "additional_studies") +public class AdditionalStudies { + + @XmlElement(name = "additional_study") + protected List additionalStudy; + + /** + * Gets the value of the additionalStudy 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 additionalStudy property. + * + *

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

+     *    getAdditionalStudy().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AdditionalStudy } + * + * + */ + public List getAdditionalStudy() { + if (additionalStudy == null) { + additionalStudy = new ArrayList(); + } + return this.additionalStudy; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdditionalStudy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdditionalStudy.java new file mode 100644 index 0000000..bf9f442 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdditionalStudy.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}project_code"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}disease_code"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "projectCode", + "diseaseCode" +}) +@XmlRootElement(name = "additional_study") +public class AdditionalStudy { + + @XmlElement(name = "project_code", required = true, nillable = true) + protected ProjectCode projectCode; + @XmlElement(name = "disease_code", required = true) + protected DiseaseCode diseaseCode; + + /** + * Gets the value of the projectCode property. + * + * @return + * possible object is + * {@link ProjectCode } + * + */ + public ProjectCode getProjectCode() { + return projectCode; + } + + /** + * Sets the value of the projectCode property. + * + * @param value + * allowed object is + * {@link ProjectCode } + * + */ + public void setProjectCode(ProjectCode value) { + this.projectCode = value; + } + + /** + * Gets the value of the diseaseCode property. + * + * @return + * possible object is + * {@link DiseaseCode } + * + */ + public DiseaseCode getDiseaseCode() { + return diseaseCode; + } + + /** + * Sets the value of the diseaseCode property. + * + * @param value + * allowed object is + * {@link DiseaseCode } + * + */ + public void setDiseaseCode(DiseaseCode value) { + this.diseaseCode = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Admin.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Admin.java new file mode 100644 index 0000000..29c355c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Admin.java @@ -0,0 +1,410 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}bcr"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}file_uuid" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}batch_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}project_code" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}disease_code"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/administration/2.7}day_of_dcc_upload"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/administration/2.7}month_of_dcc_upload"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/administration/2.7}year_of_dcc_upload"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/administration/2.7}days_to_dcc_upload"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}patient_withdrawal" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}redaction" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}program" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}dbgap_registration_code" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcr", + "fileUuid", + "batchNumber", + "projectCode", + "diseaseCode", + "dayOfDccUpload", + "monthOfDccUpload", + "yearOfDccUpload", + "daysToDccUpload", + "patientWithdrawal", + "redaction", + "program", + "dbgapRegistrationCode" +}) +@XmlRootElement(name = "admin") +public class Admin { + + @XmlElement(required = true) + protected Bcr bcr; + @XmlElement(name = "file_uuid") + protected FileUuid fileUuid; + @XmlElement(name = "batch_number", required = true) + protected BatchNumber batchNumber; + @XmlElement(name = "project_code", nillable = true) + protected ProjectCode projectCode; + @XmlElement(name = "disease_code", required = true) + protected DiseaseCode diseaseCode; + @XmlElement(name = "day_of_dcc_upload") + protected DayOfDccUpload dayOfDccUpload; + @XmlElement(name = "month_of_dcc_upload") + protected MonthOfDccUpload monthOfDccUpload; + @XmlElement(name = "year_of_dcc_upload") + protected YearOfDccUpload yearOfDccUpload; + @XmlElement(name = "days_to_dcc_upload") + protected DaysToDccUpload daysToDccUpload; + @XmlElement(name = "patient_withdrawal") + protected PatientWithdrawal patientWithdrawal; + protected Redaction redaction; + @XmlElement(nillable = true) + protected Program program; + @XmlElement(name = "dbgap_registration_code", nillable = true) + protected DbgapRegistrationCode dbgapRegistrationCode; + + /** + * Gets the value of the bcr property. + * + * @return + * possible object is + * {@link Bcr } + * + */ + public Bcr getBcr() { + return bcr; + } + + /** + * Sets the value of the bcr property. + * + * @param value + * allowed object is + * {@link Bcr } + * + */ + public void setBcr(Bcr value) { + this.bcr = value; + } + + /** + * Gets the value of the fileUuid property. + * + * @return + * possible object is + * {@link FileUuid } + * + */ + public FileUuid getFileUuid() { + return fileUuid; + } + + /** + * Sets the value of the fileUuid property. + * + * @param value + * allowed object is + * {@link FileUuid } + * + */ + public void setFileUuid(FileUuid value) { + this.fileUuid = value; + } + + /** + * Gets the value of the batchNumber property. + * + * @return + * possible object is + * {@link BatchNumber } + * + */ + public BatchNumber getBatchNumber() { + return batchNumber; + } + + /** + * Sets the value of the batchNumber property. + * + * @param value + * allowed object is + * {@link BatchNumber } + * + */ + public void setBatchNumber(BatchNumber value) { + this.batchNumber = value; + } + + /** + * Gets the value of the projectCode property. + * + * @return + * possible object is + * {@link ProjectCode } + * + */ + public ProjectCode getProjectCode() { + return projectCode; + } + + /** + * Sets the value of the projectCode property. + * + * @param value + * allowed object is + * {@link ProjectCode } + * + */ + public void setProjectCode(ProjectCode value) { + this.projectCode = value; + } + + /** + * Gets the value of the diseaseCode property. + * + * @return + * possible object is + * {@link DiseaseCode } + * + */ + public DiseaseCode getDiseaseCode() { + return diseaseCode; + } + + /** + * Sets the value of the diseaseCode property. + * + * @param value + * allowed object is + * {@link DiseaseCode } + * + */ + public void setDiseaseCode(DiseaseCode value) { + this.diseaseCode = value; + } + + /** + * Gets the value of the dayOfDccUpload property. + * + * @return + * possible object is + * {@link DayOfDccUpload } + * + */ + public DayOfDccUpload getDayOfDccUpload() { + return dayOfDccUpload; + } + + /** + * Sets the value of the dayOfDccUpload property. + * + * @param value + * allowed object is + * {@link DayOfDccUpload } + * + */ + public void setDayOfDccUpload(DayOfDccUpload value) { + this.dayOfDccUpload = value; + } + + /** + * Gets the value of the monthOfDccUpload property. + * + * @return + * possible object is + * {@link MonthOfDccUpload } + * + */ + public MonthOfDccUpload getMonthOfDccUpload() { + return monthOfDccUpload; + } + + /** + * Sets the value of the monthOfDccUpload property. + * + * @param value + * allowed object is + * {@link MonthOfDccUpload } + * + */ + public void setMonthOfDccUpload(MonthOfDccUpload value) { + this.monthOfDccUpload = value; + } + + /** + * Gets the value of the yearOfDccUpload property. + * + * @return + * possible object is + * {@link YearOfDccUpload } + * + */ + public YearOfDccUpload getYearOfDccUpload() { + return yearOfDccUpload; + } + + /** + * Sets the value of the yearOfDccUpload property. + * + * @param value + * allowed object is + * {@link YearOfDccUpload } + * + */ + public void setYearOfDccUpload(YearOfDccUpload value) { + this.yearOfDccUpload = value; + } + + /** + * Gets the value of the daysToDccUpload property. + * + * @return + * possible object is + * {@link DaysToDccUpload } + * + */ + public DaysToDccUpload getDaysToDccUpload() { + return daysToDccUpload; + } + + /** + * Sets the value of the daysToDccUpload property. + * + * @param value + * allowed object is + * {@link DaysToDccUpload } + * + */ + public void setDaysToDccUpload(DaysToDccUpload value) { + this.daysToDccUpload = value; + } + + /** + * Gets the value of the patientWithdrawal property. + * + * @return + * possible object is + * {@link PatientWithdrawal } + * + */ + public PatientWithdrawal getPatientWithdrawal() { + return patientWithdrawal; + } + + /** + * Sets the value of the patientWithdrawal property. + * + * @param value + * allowed object is + * {@link PatientWithdrawal } + * + */ + public void setPatientWithdrawal(PatientWithdrawal value) { + this.patientWithdrawal = value; + } + + /** + * Gets the value of the redaction property. + * + * @return + * possible object is + * {@link Redaction } + * + */ + public Redaction getRedaction() { + return redaction; + } + + /** + * Sets the value of the redaction property. + * + * @param value + * allowed object is + * {@link Redaction } + * + */ + public void setRedaction(Redaction value) { + this.redaction = value; + } + + /** + * Gets the value of the program property. + * + * @return + * possible object is + * {@link Program } + * + */ + public Program getProgram() { + return program; + } + + /** + * Sets the value of the program property. + * + * @param value + * allowed object is + * {@link Program } + * + */ + public void setProgram(Program value) { + this.program = value; + } + + /** + * Gets the value of the dbgapRegistrationCode property. + * + * @return + * possible object is + * {@link DbgapRegistrationCode } + * + */ + public DbgapRegistrationCode getDbgapRegistrationCode() { + return dbgapRegistrationCode; + } + + /** + * Sets the value of the dbgapRegistrationCode property. + * + * @param value + * allowed object is + * {@link DbgapRegistrationCode } + * + */ + public void setDbgapRegistrationCode(DbgapRegistrationCode value) { + this.dbgapRegistrationCode = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdminResAttribute.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdminResAttribute.java new file mode 100644 index 0000000..dc7e2f8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AdminResAttribute.java @@ -0,0 +1,109 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlSeeAlso; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for admin_res_attribute complex type. + * + *

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

+ * <complexType name="admin_res_attribute">
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/administration/2.7}admin_res_attribute_group"/>
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "admin_res_attribute", propOrder = { + "value" +}) +@XmlSeeAlso({ + ProjectCode.class, + Program.class, + DbgapRegistrationCode.class, + TypeOfRedaction.class, + BatchNumber.class, + FileUuid.class, + Bcr.class, + DiseaseCode.class +}) +public class AdminResAttribute { + + @XmlValue + protected String value; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + + /** + * 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 xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return ""; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AltId.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AltId.java new file mode 100644 index 0000000..adb6087 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AltId.java @@ -0,0 +1,160 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlRootElement; +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; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.AltIdType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/administration/2.7}admin_res_attribute_group"/>
+ *       <attribute name="alt_id_type" type="{http://tcga.nci/bcr/xml/utility/2.7}alt_id_type" />
+ *       <attribute name="project_code" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "alt_id") +public class AltId { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "alt_id_type") + protected AltIdType altIdType; + @XmlAttribute(name = "project_code") + protected String projectCode; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + + /** + * 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 altIdType property. + * + * @return + * possible object is + * {@link AltIdType } + * + */ + public AltIdType getAltIdType() { + return altIdType; + } + + /** + * Sets the value of the altIdType property. + * + * @param value + * allowed object is + * {@link AltIdType } + * + */ + public void setAltIdType(AltIdType value) { + this.altIdType = value; + } + + /** + * Gets the value of the projectCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProjectCode() { + return projectCode; + } + + /** + * Sets the value of the projectCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProjectCode(String value) { + this.projectCode = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return ""; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AlternateIdentifiers.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AlternateIdentifiers.java new file mode 100644 index 0000000..40a755b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/AlternateIdentifiers.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}alt_id" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "altId" +}) +@XmlRootElement(name = "alternate_identifiers") +public class AlternateIdentifiers { + + @XmlElement(name = "alt_id") + protected List altId; + + /** + * Gets the value of the altId 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 altId property. + * + *

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

+     *    getAltId().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AltId } + * + * + */ + public List getAltId() { + if (altId == null) { + altId = new ArrayList(); + } + return this.altId; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/BatchNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/BatchNumber.java new file mode 100644 index 0000000..09e487f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/BatchNumber.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/administration/2.7>admin_res_attribute">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.17" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "batch_number") +public class BatchNumber + extends AdminResAttribute +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Bcr.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Bcr.java new file mode 100644 index 0000000..1522831 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Bcr.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/administration/2.7>admin_res_attribute">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.17" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "bcr") +public class Bcr + extends AdminResAttribute +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DayOfDccUpload.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DayOfDccUpload.java new file mode 100644 index 0000000..8c33c4b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DayOfDccUpload.java @@ -0,0 +1,100 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.17" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_dcc_upload") +public class DayOfDccUpload { + + @XmlValue + protected String value; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + + /** + * 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 xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.17"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DaysToDccUpload.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DaysToDccUpload.java new file mode 100644 index 0000000..aa65b1c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DaysToDccUpload.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>integer">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="precision" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "days_to_dcc_upload") +public class DaysToDccUpload { + + @XmlValue + protected BigInteger value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return ""; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DbgapRegistrationCode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DbgapRegistrationCode.java new file mode 100644 index 0000000..edd6602 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DbgapRegistrationCode.java @@ -0,0 +1,40 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/administration/2.7>admin_res_attribute">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class DbgapRegistrationCode + extends AdminResAttribute +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DiseaseCode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DiseaseCode.java new file mode 100644 index 0000000..d20395e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/DiseaseCode.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/administration/2.7>admin_res_attribute">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "disease_code") +public class DiseaseCode + extends AdminResAttribute +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/FileUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/FileUuid.java new file mode 100644 index 0000000..263c2bc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/FileUuid.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/administration/2.7>admin_res_attribute">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "file_uuid") +public class FileUuid + extends AdminResAttribute +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/MonthOfDccUpload.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/MonthOfDccUpload.java new file mode 100644 index 0000000..d6c68d0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/MonthOfDccUpload.java @@ -0,0 +1,100 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.17" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_dcc_upload") +public class MonthOfDccUpload { + + @XmlValue + protected String value; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + + /** + * 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 xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.17"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/ObjectFactory.java new file mode 100644 index 0000000..74fd1a3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/ObjectFactory.java @@ -0,0 +1,232 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2 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 _ProjectCode_QNAME = new QName("http://tcga.nci/bcr/xml/administration/2.7", "project_code"); + private final static QName _DbgapRegistrationCode_QNAME = new QName("http://tcga.nci/bcr/xml/administration/2.7", "dbgap_registration_code"); + private final static QName _Program_QNAME = new QName("http://tcga.nci/bcr/xml/administration/2.7", "program"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link AdditionalStudies } + * + */ + public AdditionalStudies createAdditionalStudies() { + return new AdditionalStudies(); + } + + /** + * Create an instance of {@link AdditionalStudy } + * + */ + public AdditionalStudy createAdditionalStudy() { + return new AdditionalStudy(); + } + + /** + * Create an instance of {@link ProjectCode } + * + */ + public ProjectCode createProjectCode() { + return new ProjectCode(); + } + + /** + * Create an instance of {@link DiseaseCode } + * + */ + public DiseaseCode createDiseaseCode() { + return new DiseaseCode(); + } + + /** + * Create an instance of {@link AdminResAttribute } + * + */ + public AdminResAttribute createAdminResAttribute() { + return new AdminResAttribute(); + } + + /** + * Create an instance of {@link Admin } + * + */ + public Admin createAdmin() { + return new Admin(); + } + + /** + * Create an instance of {@link Bcr } + * + */ + public Bcr createBcr() { + return new Bcr(); + } + + /** + * Create an instance of {@link FileUuid } + * + */ + public FileUuid createFileUuid() { + return new FileUuid(); + } + + /** + * Create an instance of {@link BatchNumber } + * + */ + public BatchNumber createBatchNumber() { + return new BatchNumber(); + } + + /** + * Create an instance of {@link DayOfDccUpload } + * + */ + public DayOfDccUpload createDayOfDccUpload() { + return new DayOfDccUpload(); + } + + /** + * Create an instance of {@link MonthOfDccUpload } + * + */ + public MonthOfDccUpload createMonthOfDccUpload() { + return new MonthOfDccUpload(); + } + + /** + * Create an instance of {@link YearOfDccUpload } + * + */ + public YearOfDccUpload createYearOfDccUpload() { + return new YearOfDccUpload(); + } + + /** + * Create an instance of {@link DaysToDccUpload } + * + */ + public DaysToDccUpload createDaysToDccUpload() { + return new DaysToDccUpload(); + } + + /** + * Create an instance of {@link PatientWithdrawal } + * + */ + public PatientWithdrawal createPatientWithdrawal() { + return new PatientWithdrawal(); + } + + /** + * Create an instance of {@link Redaction } + * + */ + public Redaction createRedaction() { + return new Redaction(); + } + + /** + * Create an instance of {@link TypeOfRedaction } + * + */ + public TypeOfRedaction createTypeOfRedaction() { + return new TypeOfRedaction(); + } + + /** + * Create an instance of {@link Program } + * + */ + public Program createProgram() { + return new Program(); + } + + /** + * Create an instance of {@link DbgapRegistrationCode } + * + */ + public DbgapRegistrationCode createDbgapRegistrationCode() { + return new DbgapRegistrationCode(); + } + + /** + * Create an instance of {@link AlternateIdentifiers } + * + */ + public AlternateIdentifiers createAlternateIdentifiers() { + return new AlternateIdentifiers(); + } + + /** + * Create an instance of {@link AltId } + * + */ + public AltId createAltId() { + return new AltId(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ProjectCode }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/administration/2.7", name = "project_code") + public JAXBElement createProjectCode(ProjectCode value) { + return new JAXBElement(_ProjectCode_QNAME, ProjectCode.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DbgapRegistrationCode }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/administration/2.7", name = "dbgap_registration_code") + public JAXBElement createDbgapRegistrationCode(DbgapRegistrationCode value) { + return new JAXBElement(_DbgapRegistrationCode_QNAME, DbgapRegistrationCode.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Program }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/administration/2.7", name = "program") + public JAXBElement createProgram(Program value) { + return new JAXBElement(_Program_QNAME, Program.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/PatientWithdrawal.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/PatientWithdrawal.java new file mode 100644 index 0000000..80d8784 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/PatientWithdrawal.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

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 name="withdrawn" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="date_of_withdraw" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="reason_for_withdraw" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "withdrawn", + "dateOfWithdraw", + "reasonForWithdraw" +}) +@XmlRootElement(name = "patient_withdrawal") +public class PatientWithdrawal { + + @XmlElement(defaultValue = "false") + protected boolean withdrawn; + @XmlElement(name = "date_of_withdraw") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfWithdraw; + @XmlElement(name = "reason_for_withdraw") + protected String reasonForWithdraw; + + /** + * Gets the value of the withdrawn property. + * + */ + public boolean isWithdrawn() { + return withdrawn; + } + + /** + * Sets the value of the withdrawn property. + * + */ + public void setWithdrawn(boolean value) { + this.withdrawn = value; + } + + /** + * Gets the value of the dateOfWithdraw property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfWithdraw() { + return dateOfWithdraw; + } + + /** + * Sets the value of the dateOfWithdraw property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfWithdraw(XMLGregorianCalendar value) { + this.dateOfWithdraw = value; + } + + /** + * Gets the value of the reasonForWithdraw property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReasonForWithdraw() { + return reasonForWithdraw; + } + + /** + * Sets the value of the reasonForWithdraw property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReasonForWithdraw(String value) { + this.reasonForWithdraw = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Program.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Program.java new file mode 100644 index 0000000..2d74b75 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Program.java @@ -0,0 +1,40 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/administration/2.7>admin_res_attribute">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Program + extends AdminResAttribute +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/ProjectCode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/ProjectCode.java new file mode 100644 index 0000000..3b8278a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/ProjectCode.java @@ -0,0 +1,40 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/administration/2.7>admin_res_attribute">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ProjectCode + extends AdminResAttribute +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Redaction.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Redaction.java new file mode 100644 index 0000000..4ad0ef9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/Redaction.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

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 name="redacted" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="date_of_redaction" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}type_of_redaction" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "redacted", + "dateOfRedaction", + "typeOfRedaction" +}) +@XmlRootElement(name = "redaction") +public class Redaction { + + @XmlElement(defaultValue = "false") + protected boolean redacted; + @XmlElement(name = "date_of_redaction") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfRedaction; + @XmlElement(name = "type_of_redaction") + protected TypeOfRedaction typeOfRedaction; + + /** + * Gets the value of the redacted property. + * + */ + public boolean isRedacted() { + return redacted; + } + + /** + * Sets the value of the redacted property. + * + */ + public void setRedacted(boolean value) { + this.redacted = value; + } + + /** + * Gets the value of the dateOfRedaction property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfRedaction() { + return dateOfRedaction; + } + + /** + * Sets the value of the dateOfRedaction property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfRedaction(XMLGregorianCalendar value) { + this.dateOfRedaction = value; + } + + /** + * Gets the value of the typeOfRedaction property. + * + * @return + * possible object is + * {@link TypeOfRedaction } + * + */ + public TypeOfRedaction getTypeOfRedaction() { + return typeOfRedaction; + } + + /** + * Sets the value of the typeOfRedaction property. + * + * @param value + * allowed object is + * {@link TypeOfRedaction } + * + */ + public void setTypeOfRedaction(TypeOfRedaction value) { + this.typeOfRedaction = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/TypeOfRedaction.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/TypeOfRedaction.java new file mode 100644 index 0000000..c7607a0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/TypeOfRedaction.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/administration/2.7>admin_res_attribute">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "type_of_redaction") +public class TypeOfRedaction + extends AdminResAttribute +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/YearOfDccUpload.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/YearOfDccUpload.java new file mode 100644 index 0000000..3f54cdd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/YearOfDccUpload.java @@ -0,0 +1,100 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.17" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_dcc_upload") +public class YearOfDccUpload { + + @XmlValue + protected String value; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + + /** + * 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 xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.17"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/package-info.java new file mode 100644 index 0000000..95478a7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/administration/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/administration/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/A260A280Ratio.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/A260A280Ratio.java new file mode 100644 index 0000000..b292165 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/A260A280Ratio.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "a260_a280_ratio") +public class A260A280Ratio + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Aliquot.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Aliquot.java new file mode 100644 index 0000000..a25cfbf --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Aliquot.java @@ -0,0 +1,634 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AlternateIdentifiers; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Notes; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}notes" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}alternate_identifiers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}plate_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}center_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}day_of_shipment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}month_of_shipment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}year_of_shipment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_aliquot_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_aliquot_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_biospecimen_canonical_reasons" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}concentration"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}quantity" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}volume" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}plate_row"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}plate_column"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}biospecimen_barcode_bottom" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}source_center" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}is_derived_from_ffpe" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}msi_mono_di_nucleotide_assay_status" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}msi_mono_nucleotide_assay_status" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "notes", + "additionalStudies", + "alternateIdentifiers", + "plateId", + "centerId", + "dayOfShipment", + "monthOfShipment", + "yearOfShipment", + "bcrAliquotBarcode", + "bcrAliquotUuid", + "bcrBiospecimenCanonicalReasons", + "concentration", + "quantity", + "volume", + "plateRow", + "plateColumn", + "biospecimenBarcodeBottom", + "sourceCenter", + "isDerivedFromFfpe", + "msiMonoDiNucleotideAssayStatus", + "msiMonoNucleotideAssayStatus" +}) +@XmlRootElement(name = "aliquot") +public class Aliquot { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Notes notes; + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "alternate_identifiers", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AlternateIdentifiers alternateIdentifiers; + @XmlElement(name = "plate_id", required = true) + protected PlateId plateId; + @XmlElement(name = "center_id", required = true) + protected CenterId centerId; + @XmlElement(name = "day_of_shipment", required = true) + protected DayOfShipment dayOfShipment; + @XmlElement(name = "month_of_shipment", required = true) + protected MonthOfShipment monthOfShipment; + @XmlElement(name = "year_of_shipment", required = true) + protected YearOfShipment yearOfShipment; + @XmlElement(name = "bcr_aliquot_barcode", required = true) + protected BcrAliquotBarcode bcrAliquotBarcode; + @XmlElement(name = "bcr_aliquot_uuid", required = true) + protected BcrAliquotUuid bcrAliquotUuid; + @XmlElement(name = "bcr_biospecimen_canonical_reasons") + protected BcrBiospecimenCanonicalReasons bcrBiospecimenCanonicalReasons; + @XmlElement(required = true) + protected Concentration concentration; + @XmlElement(nillable = true) + protected Quantity quantity; + @XmlElement(nillable = true) + protected Volume volume; + @XmlElement(name = "plate_row", required = true) + protected PlateRow plateRow; + @XmlElement(name = "plate_column", required = true) + protected PlateColumn plateColumn; + @XmlElement(name = "biospecimen_barcode_bottom") + protected BiospecimenBarcodeBottom biospecimenBarcodeBottom; + @XmlElement(name = "source_center") + protected SourceCenter sourceCenter; + @XmlElement(name = "is_derived_from_ffpe") + protected IsDerivedFromFfpe isDerivedFromFfpe; + @XmlElement(name = "msi_mono_di_nucleotide_assay_status") + protected MsiMonoDiNucleotideAssayStatus msiMonoDiNucleotideAssayStatus; + @XmlElement(name = "msi_mono_nucleotide_assay_status") + protected MsiMonoNucleotideAssayStatus msiMonoNucleotideAssayStatus; + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link Notes } + * + */ + public Notes getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link Notes } + * + */ + public void setNotes(Notes value) { + this.notes = value; + } + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the alternateIdentifiers property. + * + * @return + * possible object is + * {@link AlternateIdentifiers } + * + */ + public AlternateIdentifiers getAlternateIdentifiers() { + return alternateIdentifiers; + } + + /** + * Sets the value of the alternateIdentifiers property. + * + * @param value + * allowed object is + * {@link AlternateIdentifiers } + * + */ + public void setAlternateIdentifiers(AlternateIdentifiers value) { + this.alternateIdentifiers = value; + } + + /** + * Gets the value of the plateId property. + * + * @return + * possible object is + * {@link PlateId } + * + */ + public PlateId getPlateId() { + return plateId; + } + + /** + * Sets the value of the plateId property. + * + * @param value + * allowed object is + * {@link PlateId } + * + */ + public void setPlateId(PlateId value) { + this.plateId = value; + } + + /** + * Gets the value of the centerId property. + * + * @return + * possible object is + * {@link CenterId } + * + */ + public CenterId getCenterId() { + return centerId; + } + + /** + * Sets the value of the centerId property. + * + * @param value + * allowed object is + * {@link CenterId } + * + */ + public void setCenterId(CenterId value) { + this.centerId = value; + } + + /** + * Gets the value of the dayOfShipment property. + * + * @return + * possible object is + * {@link DayOfShipment } + * + */ + public DayOfShipment getDayOfShipment() { + return dayOfShipment; + } + + /** + * Sets the value of the dayOfShipment property. + * + * @param value + * allowed object is + * {@link DayOfShipment } + * + */ + public void setDayOfShipment(DayOfShipment value) { + this.dayOfShipment = value; + } + + /** + * Gets the value of the monthOfShipment property. + * + * @return + * possible object is + * {@link MonthOfShipment } + * + */ + public MonthOfShipment getMonthOfShipment() { + return monthOfShipment; + } + + /** + * Sets the value of the monthOfShipment property. + * + * @param value + * allowed object is + * {@link MonthOfShipment } + * + */ + public void setMonthOfShipment(MonthOfShipment value) { + this.monthOfShipment = value; + } + + /** + * Gets the value of the yearOfShipment property. + * + * @return + * possible object is + * {@link YearOfShipment } + * + */ + public YearOfShipment getYearOfShipment() { + return yearOfShipment; + } + + /** + * Sets the value of the yearOfShipment property. + * + * @param value + * allowed object is + * {@link YearOfShipment } + * + */ + public void setYearOfShipment(YearOfShipment value) { + this.yearOfShipment = value; + } + + /** + * Gets the value of the bcrAliquotBarcode property. + * + * @return + * possible object is + * {@link BcrAliquotBarcode } + * + */ + public BcrAliquotBarcode getBcrAliquotBarcode() { + return bcrAliquotBarcode; + } + + /** + * Sets the value of the bcrAliquotBarcode property. + * + * @param value + * allowed object is + * {@link BcrAliquotBarcode } + * + */ + public void setBcrAliquotBarcode(BcrAliquotBarcode value) { + this.bcrAliquotBarcode = value; + } + + /** + * Gets the value of the bcrAliquotUuid property. + * + * @return + * possible object is + * {@link BcrAliquotUuid } + * + */ + public BcrAliquotUuid getBcrAliquotUuid() { + return bcrAliquotUuid; + } + + /** + * Sets the value of the bcrAliquotUuid property. + * + * @param value + * allowed object is + * {@link BcrAliquotUuid } + * + */ + public void setBcrAliquotUuid(BcrAliquotUuid value) { + this.bcrAliquotUuid = value; + } + + /** + * Gets the value of the bcrBiospecimenCanonicalReasons property. + * + * @return + * possible object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public BcrBiospecimenCanonicalReasons getBcrBiospecimenCanonicalReasons() { + return bcrBiospecimenCanonicalReasons; + } + + /** + * Sets the value of the bcrBiospecimenCanonicalReasons property. + * + * @param value + * allowed object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public void setBcrBiospecimenCanonicalReasons(BcrBiospecimenCanonicalReasons value) { + this.bcrBiospecimenCanonicalReasons = value; + } + + /** + * Gets the value of the concentration property. + * + * @return + * possible object is + * {@link Concentration } + * + */ + public Concentration getConcentration() { + return concentration; + } + + /** + * Sets the value of the concentration property. + * + * @param value + * allowed object is + * {@link Concentration } + * + */ + public void setConcentration(Concentration value) { + this.concentration = value; + } + + /** + * Gets the value of the quantity property. + * + * @return + * possible object is + * {@link Quantity } + * + */ + public Quantity getQuantity() { + return quantity; + } + + /** + * Sets the value of the quantity property. + * + * @param value + * allowed object is + * {@link Quantity } + * + */ + public void setQuantity(Quantity value) { + this.quantity = value; + } + + /** + * Gets the value of the volume property. + * + * @return + * possible object is + * {@link Volume } + * + */ + public Volume getVolume() { + return volume; + } + + /** + * Sets the value of the volume property. + * + * @param value + * allowed object is + * {@link Volume } + * + */ + public void setVolume(Volume value) { + this.volume = value; + } + + /** + * Gets the value of the plateRow property. + * + * @return + * possible object is + * {@link PlateRow } + * + */ + public PlateRow getPlateRow() { + return plateRow; + } + + /** + * Sets the value of the plateRow property. + * + * @param value + * allowed object is + * {@link PlateRow } + * + */ + public void setPlateRow(PlateRow value) { + this.plateRow = value; + } + + /** + * Gets the value of the plateColumn property. + * + * @return + * possible object is + * {@link PlateColumn } + * + */ + public PlateColumn getPlateColumn() { + return plateColumn; + } + + /** + * Sets the value of the plateColumn property. + * + * @param value + * allowed object is + * {@link PlateColumn } + * + */ + public void setPlateColumn(PlateColumn value) { + this.plateColumn = value; + } + + /** + * Gets the value of the biospecimenBarcodeBottom property. + * + * @return + * possible object is + * {@link BiospecimenBarcodeBottom } + * + */ + public BiospecimenBarcodeBottom getBiospecimenBarcodeBottom() { + return biospecimenBarcodeBottom; + } + + /** + * Sets the value of the biospecimenBarcodeBottom property. + * + * @param value + * allowed object is + * {@link BiospecimenBarcodeBottom } + * + */ + public void setBiospecimenBarcodeBottom(BiospecimenBarcodeBottom value) { + this.biospecimenBarcodeBottom = value; + } + + /** + * Gets the value of the sourceCenter property. + * + * @return + * possible object is + * {@link SourceCenter } + * + */ + public SourceCenter getSourceCenter() { + return sourceCenter; + } + + /** + * Sets the value of the sourceCenter property. + * + * @param value + * allowed object is + * {@link SourceCenter } + * + */ + public void setSourceCenter(SourceCenter value) { + this.sourceCenter = value; + } + + /** + * Gets the value of the isDerivedFromFfpe property. + * + * @return + * possible object is + * {@link IsDerivedFromFfpe } + * + */ + public IsDerivedFromFfpe getIsDerivedFromFfpe() { + return isDerivedFromFfpe; + } + + /** + * Sets the value of the isDerivedFromFfpe property. + * + * @param value + * allowed object is + * {@link IsDerivedFromFfpe } + * + */ + public void setIsDerivedFromFfpe(IsDerivedFromFfpe value) { + this.isDerivedFromFfpe = value; + } + + /** + * Gets the value of the msiMonoDiNucleotideAssayStatus property. + * + * @return + * possible object is + * {@link MsiMonoDiNucleotideAssayStatus } + * + */ + public MsiMonoDiNucleotideAssayStatus getMsiMonoDiNucleotideAssayStatus() { + return msiMonoDiNucleotideAssayStatus; + } + + /** + * Sets the value of the msiMonoDiNucleotideAssayStatus property. + * + * @param value + * allowed object is + * {@link MsiMonoDiNucleotideAssayStatus } + * + */ + public void setMsiMonoDiNucleotideAssayStatus(MsiMonoDiNucleotideAssayStatus value) { + this.msiMonoDiNucleotideAssayStatus = value; + } + + /** + * Gets the value of the msiMonoNucleotideAssayStatus property. + * + * @return + * possible object is + * {@link MsiMonoNucleotideAssayStatus } + * + */ + public MsiMonoNucleotideAssayStatus getMsiMonoNucleotideAssayStatus() { + return msiMonoNucleotideAssayStatus; + } + + /** + * Sets the value of the msiMonoNucleotideAssayStatus property. + * + * @param value + * allowed object is + * {@link MsiMonoNucleotideAssayStatus } + * + */ + public void setMsiMonoNucleotideAssayStatus(MsiMonoNucleotideAssayStatus value) { + this.msiMonoNucleotideAssayStatus = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Aliquots.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Aliquots.java new file mode 100644 index 0000000..4bc3dc7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Aliquots.java @@ -0,0 +1,76 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}aliquot" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "aliquot" +}) +@XmlRootElement(name = "aliquots") +public class Aliquots { + + protected List aliquot; + + /** + * Gets the value of the aliquot 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 aliquot property. + * + *

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

+     *    getAliquot().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Aliquot } + * + * + */ + public List getAliquot() { + if (aliquot == null) { + aliquot = new ArrayList(); + } + return this.aliquot; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Analyte.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Analyte.java new file mode 100644 index 0000000..cf598f8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Analyte.java @@ -0,0 +1,578 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AlternateIdentifiers; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Notes; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}notes" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}alternate_identifiers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}subportion_sequence" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}analyte_type_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}analyte_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}concentration"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}a260_a280_ratio"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}gel_image_file"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}well_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_analyte_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_analyte_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}is_derived_from_ffpe" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_biospecimen_canonical_reasons" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}aliquots"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}protocols"/>
+ *         <choice minOccurs="0">
+ *           <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}dna"/>
+ *           <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}rna"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}spectrophotometer_method"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "notes", + "additionalStudies", + "alternateIdentifiers", + "subportionSequence", + "analyteTypeId", + "analyteType", + "concentration", + "a260A280Ratio", + "gelImageFile", + "wellNumber", + "bcrAnalyteBarcode", + "bcrAnalyteUuid", + "isDerivedFromFfpe", + "bcrBiospecimenCanonicalReasons", + "aliquots", + "protocols", + "dna", + "rna", + "spectrophotometerMethod" +}) +@XmlRootElement(name = "analyte") +public class Analyte { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Notes notes; + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "alternate_identifiers", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AlternateIdentifiers alternateIdentifiers; + @XmlElement(name = "subportion_sequence", nillable = true) + protected SubportionSequence subportionSequence; + @XmlElement(name = "analyte_type_id", required = true) + protected AnalyteTypeId analyteTypeId; + @XmlElement(name = "analyte_type", required = true) + protected AnalyteType analyteType; + @XmlElement(required = true) + protected Concentration concentration; + @XmlElement(name = "a260_a280_ratio", required = true) + protected A260A280Ratio a260A280Ratio; + @XmlElement(name = "gel_image_file", required = true) + protected GelImageFile gelImageFile; + @XmlElement(name = "well_number", required = true) + protected WellNumber wellNumber; + @XmlElement(name = "bcr_analyte_barcode", required = true) + protected BcrAnalyteBarcode bcrAnalyteBarcode; + @XmlElement(name = "bcr_analyte_uuid", required = true) + protected BcrAnalyteUuid bcrAnalyteUuid; + @XmlElement(name = "is_derived_from_ffpe") + protected IsDerivedFromFfpe isDerivedFromFfpe; + @XmlElement(name = "bcr_biospecimen_canonical_reasons") + protected BcrBiospecimenCanonicalReasons bcrBiospecimenCanonicalReasons; + @XmlElement(required = true) + protected Aliquots aliquots; + @XmlElement(required = true) + protected Protocols protocols; + protected Dna dna; + protected Rna rna; + @XmlElement(name = "spectrophotometer_method", required = true) + protected SpectrophotometerMethod spectrophotometerMethod; + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link Notes } + * + */ + public Notes getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link Notes } + * + */ + public void setNotes(Notes value) { + this.notes = value; + } + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the alternateIdentifiers property. + * + * @return + * possible object is + * {@link AlternateIdentifiers } + * + */ + public AlternateIdentifiers getAlternateIdentifiers() { + return alternateIdentifiers; + } + + /** + * Sets the value of the alternateIdentifiers property. + * + * @param value + * allowed object is + * {@link AlternateIdentifiers } + * + */ + public void setAlternateIdentifiers(AlternateIdentifiers value) { + this.alternateIdentifiers = value; + } + + /** + * Gets the value of the subportionSequence property. + * + * @return + * possible object is + * {@link SubportionSequence } + * + */ + public SubportionSequence getSubportionSequence() { + return subportionSequence; + } + + /** + * Sets the value of the subportionSequence property. + * + * @param value + * allowed object is + * {@link SubportionSequence } + * + */ + public void setSubportionSequence(SubportionSequence value) { + this.subportionSequence = value; + } + + /** + * Gets the value of the analyteTypeId property. + * + * @return + * possible object is + * {@link AnalyteTypeId } + * + */ + public AnalyteTypeId getAnalyteTypeId() { + return analyteTypeId; + } + + /** + * Sets the value of the analyteTypeId property. + * + * @param value + * allowed object is + * {@link AnalyteTypeId } + * + */ + public void setAnalyteTypeId(AnalyteTypeId value) { + this.analyteTypeId = value; + } + + /** + * Gets the value of the analyteType property. + * + * @return + * possible object is + * {@link AnalyteType } + * + */ + public AnalyteType getAnalyteType() { + return analyteType; + } + + /** + * Sets the value of the analyteType property. + * + * @param value + * allowed object is + * {@link AnalyteType } + * + */ + public void setAnalyteType(AnalyteType value) { + this.analyteType = value; + } + + /** + * Gets the value of the concentration property. + * + * @return + * possible object is + * {@link Concentration } + * + */ + public Concentration getConcentration() { + return concentration; + } + + /** + * Sets the value of the concentration property. + * + * @param value + * allowed object is + * {@link Concentration } + * + */ + public void setConcentration(Concentration value) { + this.concentration = value; + } + + /** + * Gets the value of the a260A280Ratio property. + * + * @return + * possible object is + * {@link A260A280Ratio } + * + */ + public A260A280Ratio getA260A280Ratio() { + return a260A280Ratio; + } + + /** + * Sets the value of the a260A280Ratio property. + * + * @param value + * allowed object is + * {@link A260A280Ratio } + * + */ + public void setA260A280Ratio(A260A280Ratio value) { + this.a260A280Ratio = value; + } + + /** + * Gets the value of the gelImageFile property. + * + * @return + * possible object is + * {@link GelImageFile } + * + */ + public GelImageFile getGelImageFile() { + return gelImageFile; + } + + /** + * Sets the value of the gelImageFile property. + * + * @param value + * allowed object is + * {@link GelImageFile } + * + */ + public void setGelImageFile(GelImageFile value) { + this.gelImageFile = value; + } + + /** + * Gets the value of the wellNumber property. + * + * @return + * possible object is + * {@link WellNumber } + * + */ + public WellNumber getWellNumber() { + return wellNumber; + } + + /** + * Sets the value of the wellNumber property. + * + * @param value + * allowed object is + * {@link WellNumber } + * + */ + public void setWellNumber(WellNumber value) { + this.wellNumber = value; + } + + /** + * Gets the value of the bcrAnalyteBarcode property. + * + * @return + * possible object is + * {@link BcrAnalyteBarcode } + * + */ + public BcrAnalyteBarcode getBcrAnalyteBarcode() { + return bcrAnalyteBarcode; + } + + /** + * Sets the value of the bcrAnalyteBarcode property. + * + * @param value + * allowed object is + * {@link BcrAnalyteBarcode } + * + */ + public void setBcrAnalyteBarcode(BcrAnalyteBarcode value) { + this.bcrAnalyteBarcode = value; + } + + /** + * Gets the value of the bcrAnalyteUuid property. + * + * @return + * possible object is + * {@link BcrAnalyteUuid } + * + */ + public BcrAnalyteUuid getBcrAnalyteUuid() { + return bcrAnalyteUuid; + } + + /** + * Sets the value of the bcrAnalyteUuid property. + * + * @param value + * allowed object is + * {@link BcrAnalyteUuid } + * + */ + public void setBcrAnalyteUuid(BcrAnalyteUuid value) { + this.bcrAnalyteUuid = value; + } + + /** + * Gets the value of the isDerivedFromFfpe property. + * + * @return + * possible object is + * {@link IsDerivedFromFfpe } + * + */ + public IsDerivedFromFfpe getIsDerivedFromFfpe() { + return isDerivedFromFfpe; + } + + /** + * Sets the value of the isDerivedFromFfpe property. + * + * @param value + * allowed object is + * {@link IsDerivedFromFfpe } + * + */ + public void setIsDerivedFromFfpe(IsDerivedFromFfpe value) { + this.isDerivedFromFfpe = value; + } + + /** + * Gets the value of the bcrBiospecimenCanonicalReasons property. + * + * @return + * possible object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public BcrBiospecimenCanonicalReasons getBcrBiospecimenCanonicalReasons() { + return bcrBiospecimenCanonicalReasons; + } + + /** + * Sets the value of the bcrBiospecimenCanonicalReasons property. + * + * @param value + * allowed object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public void setBcrBiospecimenCanonicalReasons(BcrBiospecimenCanonicalReasons value) { + this.bcrBiospecimenCanonicalReasons = value; + } + + /** + * Gets the value of the aliquots property. + * + * @return + * possible object is + * {@link Aliquots } + * + */ + public Aliquots getAliquots() { + return aliquots; + } + + /** + * Sets the value of the aliquots property. + * + * @param value + * allowed object is + * {@link Aliquots } + * + */ + public void setAliquots(Aliquots value) { + this.aliquots = value; + } + + /** + * Gets the value of the protocols property. + * + * @return + * possible object is + * {@link Protocols } + * + */ + public Protocols getProtocols() { + return protocols; + } + + /** + * Sets the value of the protocols property. + * + * @param value + * allowed object is + * {@link Protocols } + * + */ + public void setProtocols(Protocols value) { + this.protocols = value; + } + + /** + * Gets the value of the dna property. + * + * @return + * possible object is + * {@link Dna } + * + */ + public Dna getDna() { + return dna; + } + + /** + * Sets the value of the dna property. + * + * @param value + * allowed object is + * {@link Dna } + * + */ + public void setDna(Dna value) { + this.dna = value; + } + + /** + * Gets the value of the rna property. + * + * @return + * possible object is + * {@link Rna } + * + */ + public Rna getRna() { + return rna; + } + + /** + * Sets the value of the rna property. + * + * @param value + * allowed object is + * {@link Rna } + * + */ + public void setRna(Rna value) { + this.rna = value; + } + + /** + * Gets the value of the spectrophotometerMethod property. + * + * @return + * possible object is + * {@link SpectrophotometerMethod } + * + */ + public SpectrophotometerMethod getSpectrophotometerMethod() { + return spectrophotometerMethod; + } + + /** + * Sets the value of the spectrophotometerMethod property. + * + * @param value + * allowed object is + * {@link SpectrophotometerMethod } + * + */ + public void setSpectrophotometerMethod(SpectrophotometerMethod value) { + this.spectrophotometerMethod = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/AnalyteType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/AnalyteType.java new file mode 100644 index 0000000..f48fbd9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/AnalyteType.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.10" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "analyte_type") +public class AnalyteType + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/AnalyteTypeId.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/AnalyteTypeId.java new file mode 100644 index 0000000..9d39f87 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/AnalyteTypeId.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "analyte_type_id") +public class AnalyteTypeId + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Analytes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Analytes.java new file mode 100644 index 0000000..e0c2aed --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Analytes.java @@ -0,0 +1,76 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}analyte" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "analyte" +}) +@XmlRootElement(name = "analytes") +public class Analytes { + + protected List analyte; + + /** + * Gets the value of the analyte 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 analyte property. + * + *

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

+     *    getAnalyte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Analyte } + * + * + */ + public List getAnalyte() { + if (analyte == null) { + analyte = new ArrayList(); + } + return this.analyte; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAliquotBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAliquotBarcode.java new file mode 100644 index 0000000..bf954a9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAliquotBarcode.java @@ -0,0 +1,362 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_aliquot_barcode") +public class BcrAliquotBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAliquotUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAliquotUuid.java new file mode 100644 index 0000000..84aacd4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAliquotUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_aliquot_uuid") +public class BcrAliquotUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAnalyteBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAnalyteBarcode.java new file mode 100644 index 0000000..eacffd5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAnalyteBarcode.java @@ -0,0 +1,362 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_analyte_barcode") +public class BcrAnalyteBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAnalyteUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAnalyteUuid.java new file mode 100644 index 0000000..4de90fb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrAnalyteUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_analyte_uuid") +public class BcrAnalyteUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrBiospecimenCanonicalReasons.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrBiospecimenCanonicalReasons.java new file mode 100644 index 0000000..aa7de7d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrBiospecimenCanonicalReasons.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}bcr_canonical_reason" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcrCanonicalReason" +}) +@XmlRootElement(name = "bcr_biospecimen_canonical_reasons") +public class BcrBiospecimenCanonicalReasons { + + @XmlElement(name = "bcr_canonical_reason", required = true) + protected List bcrCanonicalReason; + + /** + * Gets the value of the bcrCanonicalReason 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 bcrCanonicalReason property. + * + *

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

+     *    getBcrCanonicalReason().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BcrCanonicalReason } + * + * + */ + public List getBcrCanonicalReason() { + if (bcrCanonicalReason == null) { + bcrCanonicalReason = new ArrayList(); + } + return this.bcrCanonicalReason; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrCanonicalCheck.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrCanonicalCheck.java new file mode 100644 index 0000000..a36fba3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrCanonicalCheck.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}bcr_patient_canonical_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_patient_canonical_reasons" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcrPatientCanonicalStatus", + "bcrPatientCanonicalReasons" +}) +@XmlRootElement(name = "bcr_canonical_check") +public class BcrCanonicalCheck { + + @XmlElement(name = "bcr_patient_canonical_status", required = true) + protected BcrPatientCanonicalStatus bcrPatientCanonicalStatus; + @XmlElement(name = "bcr_patient_canonical_reasons") + protected BcrPatientCanonicalReasons bcrPatientCanonicalReasons; + + /** + * Gets the value of the bcrPatientCanonicalStatus property. + * + * @return + * possible object is + * {@link BcrPatientCanonicalStatus } + * + */ + public BcrPatientCanonicalStatus getBcrPatientCanonicalStatus() { + return bcrPatientCanonicalStatus; + } + + /** + * Sets the value of the bcrPatientCanonicalStatus property. + * + * @param value + * allowed object is + * {@link BcrPatientCanonicalStatus } + * + */ + public void setBcrPatientCanonicalStatus(BcrPatientCanonicalStatus value) { + this.bcrPatientCanonicalStatus = value; + } + + /** + * Gets the value of the bcrPatientCanonicalReasons property. + * + * @return + * possible object is + * {@link BcrPatientCanonicalReasons } + * + */ + public BcrPatientCanonicalReasons getBcrPatientCanonicalReasons() { + return bcrPatientCanonicalReasons; + } + + /** + * Sets the value of the bcrPatientCanonicalReasons property. + * + * @param value + * allowed object is + * {@link BcrPatientCanonicalReasons } + * + */ + public void setBcrPatientCanonicalReasons(BcrPatientCanonicalReasons value) { + this.bcrPatientCanonicalReasons = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrCanonicalReason.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrCanonicalReason.java new file mode 100644 index 0000000..60edcc9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrCanonicalReason.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "bcr_canonical_reason") +public class BcrCanonicalReason + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPatientCanonicalReasons.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPatientCanonicalReasons.java new file mode 100644 index 0000000..d25add0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPatientCanonicalReasons.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}bcr_canonical_reason" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcrCanonicalReason" +}) +@XmlRootElement(name = "bcr_patient_canonical_reasons") +public class BcrPatientCanonicalReasons { + + @XmlElement(name = "bcr_canonical_reason", required = true) + protected List bcrCanonicalReason; + + /** + * Gets the value of the bcrCanonicalReason 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 bcrCanonicalReason property. + * + *

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

+     *    getBcrCanonicalReason().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BcrCanonicalReason } + * + * + */ + public List getBcrCanonicalReason() { + if (bcrCanonicalReason == null) { + bcrCanonicalReason = new ArrayList(); + } + return this.bcrCanonicalReason; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPatientCanonicalStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPatientCanonicalStatus.java new file mode 100644 index 0000000..be18c2c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPatientCanonicalStatus.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "bcr_patient_canonical_status") +public class BcrPatientCanonicalStatus + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPortionBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPortionBarcode.java new file mode 100644 index 0000000..f8e65c2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPortionBarcode.java @@ -0,0 +1,362 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_portion_barcode") +public class BcrPortionBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPortionUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPortionUuid.java new file mode 100644 index 0000000..e78d32c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrPortionUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_portion_uuid") +public class BcrPortionUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrSampleBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrSampleBarcode.java new file mode 100644 index 0000000..928f1b6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrSampleBarcode.java @@ -0,0 +1,362 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_sample_barcode") +public class BcrSampleBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrSampleUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrSampleUuid.java new file mode 100644 index 0000000..f34a5ca --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrSampleUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_sample_uuid") +public class BcrSampleUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrShipmentPortionUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrShipmentPortionUuid.java new file mode 100644 index 0000000..fecdba8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BcrShipmentPortionUuid.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class BcrShipmentPortionUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BiospecimenBarcodeBottom.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BiospecimenBarcodeBottom.java new file mode 100644 index 0000000..15e8117 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BiospecimenBarcodeBottom.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "biospecimen_barcode_bottom") +public class BiospecimenBarcodeBottom + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BiospecimenSequence.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BiospecimenSequence.java new file mode 100644 index 0000000..1137a2d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/BiospecimenSequence.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class BiospecimenSequence { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Cellularity.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Cellularity.java new file mode 100644 index 0000000..760f73a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Cellularity.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "cellularity") +public class Cellularity + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/CenterId.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/CenterId.java new file mode 100644 index 0000000..755490e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/CenterId.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>integer">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "center_id") +public class CenterId { + + @XmlValue + protected BigInteger value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Composition.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Composition.java new file mode 100644 index 0000000..b0b0537 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Composition.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Composition + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Concentration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Concentration.java new file mode 100644 index 0000000..86e8d3a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Concentration.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "concentration") +public class Concentration + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/CurrentWeight.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/CurrentWeight.java new file mode 100644 index 0000000..6b8558e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/CurrentWeight.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "current_weight") +public class CurrentWeight + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfCollection.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfCollection.java new file mode 100644 index 0000000..70cadb0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfCollection.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_collection") +public class DayOfCollection { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfCreation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfCreation.java new file mode 100644 index 0000000..f501a95 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfCreation.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "day_of_creation") +public class DayOfCreation + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfIndex.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfIndex.java new file mode 100644 index 0000000..f62a4c6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfIndex.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896958" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfIndex { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896958"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfShipment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfShipment.java new file mode 100644 index 0000000..9ccb8db --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DayOfShipment.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "day_of_shipment") +public class DayOfShipment + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DaysToCollection.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DaysToCollection.java new file mode 100644 index 0000000..9dd63ee --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DaysToCollection.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_collection") +public class DaysToCollection + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DaysToIndex.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DaysToIndex.java new file mode 100644 index 0000000..8abde39 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DaysToIndex.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_index") +public class DaysToIndex + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DiagnosticSlides.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DiagnosticSlides.java new file mode 100644 index 0000000..04992b7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/DiagnosticSlides.java @@ -0,0 +1,136 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Notes; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}notes" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}ffpe_slide_uuid" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "notes", + "additionalStudies", + "ffpeSlideUuid" +}) +@XmlRootElement(name = "diagnostic_slides") +public class DiagnosticSlides { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Notes notes; + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "ffpe_slide_uuid", nillable = true) + protected List ffpeSlideUuid; + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link Notes } + * + */ + public Notes getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link Notes } + * + */ + public void setNotes(Notes value) { + this.notes = value; + } + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the ffpeSlideUuid 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 ffpeSlideUuid property. + * + *

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

+     *    getFfpeSlideUuid().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link FfpeSlideUuid } + * + * + */ + public List getFfpeSlideUuid() { + if (ffpeSlideUuid == null) { + ffpeSlideUuid = new ArrayList(); + } + return this.ffpeSlideUuid; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Dna.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Dna.java new file mode 100644 index 0000000..b786c73 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Dna.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}normal_tumor_genotype_match"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}pcr_amplification_successful"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "normalTumorGenotypeMatch", + "pcrAmplificationSuccessful" +}) +@XmlRootElement(name = "dna") +public class Dna { + + @XmlElement(name = "normal_tumor_genotype_match", required = true) + protected NormalTumorGenotypeMatch normalTumorGenotypeMatch; + @XmlElement(name = "pcr_amplification_successful", required = true) + protected PcrAmplificationSuccessful pcrAmplificationSuccessful; + + /** + * Gets the value of the normalTumorGenotypeMatch property. + * + * @return + * possible object is + * {@link NormalTumorGenotypeMatch } + * + */ + public NormalTumorGenotypeMatch getNormalTumorGenotypeMatch() { + return normalTumorGenotypeMatch; + } + + /** + * Sets the value of the normalTumorGenotypeMatch property. + * + * @param value + * allowed object is + * {@link NormalTumorGenotypeMatch } + * + */ + public void setNormalTumorGenotypeMatch(NormalTumorGenotypeMatch value) { + this.normalTumorGenotypeMatch = value; + } + + /** + * Gets the value of the pcrAmplificationSuccessful property. + * + * @return + * possible object is + * {@link PcrAmplificationSuccessful } + * + */ + public PcrAmplificationSuccessful getPcrAmplificationSuccessful() { + return pcrAmplificationSuccessful; + } + + /** + * Sets the value of the pcrAmplificationSuccessful property. + * + * @param value + * allowed object is + * {@link PcrAmplificationSuccessful } + * + */ + public void setPcrAmplificationSuccessful(PcrAmplificationSuccessful value) { + this.pcrAmplificationSuccessful = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/EndothelialProliferation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/EndothelialProliferation.java new file mode 100644 index 0000000..ffd86ee --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/EndothelialProliferation.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2841309" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "endothelial_proliferation") +public class EndothelialProliferation { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2841309"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ExperimentalProtocolType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ExperimentalProtocolType.java new file mode 100644 index 0000000..5fc48d4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ExperimentalProtocolType.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ExperimentalProtocolType + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/FfpeSlideUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/FfpeSlideUuid.java new file mode 100644 index 0000000..e46d1ff --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/FfpeSlideUuid.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class FfpeSlideUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/FreezingMethod.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/FreezingMethod.java new file mode 100644 index 0000000..e45fb8a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/FreezingMethod.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "freezing_method") +public class FreezingMethod + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GbmPathology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GbmPathology.java new file mode 100644 index 0000000..4abea26 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GbmPathology.java @@ -0,0 +1,267 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}histologic_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}histologic_nuclear_grade"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tumor_sample_anatomic_location"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}gemistocytes_present"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}oligodendroglial_component"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}leptomeningeal_involement"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}gfap_positive"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}mib1_positive"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "histologicType", + "histologicNuclearGrade", + "tumorSampleAnatomicLocation", + "gemistocytesPresent", + "oligodendroglialComponent", + "leptomeningealInvolement", + "gfapPositive", + "mib1Positive" +}) +@XmlRootElement(name = "gbm_pathology") +public class GbmPathology { + + @XmlElement(name = "histologic_type", required = true) + protected HistologicType histologicType; + @XmlElement(name = "histologic_nuclear_grade", required = true) + protected HistologicNuclearGrade histologicNuclearGrade; + @XmlElement(name = "tumor_sample_anatomic_location", required = true) + protected TumorSampleAnatomicLocation tumorSampleAnatomicLocation; + @XmlElement(name = "gemistocytes_present", required = true) + protected GemistocytesPresent gemistocytesPresent; + @XmlElement(name = "oligodendroglial_component", required = true) + protected OligodendroglialComponent oligodendroglialComponent; + @XmlElement(name = "leptomeningeal_involement", required = true) + protected LeptomeningealInvolement leptomeningealInvolement; + @XmlElement(name = "gfap_positive", required = true) + protected GfapPositive gfapPositive; + @XmlElement(name = "mib1_positive", required = true) + protected Mib1Positive mib1Positive; + + /** + * Gets the value of the histologicType property. + * + * @return + * possible object is + * {@link HistologicType } + * + */ + public HistologicType getHistologicType() { + return histologicType; + } + + /** + * Sets the value of the histologicType property. + * + * @param value + * allowed object is + * {@link HistologicType } + * + */ + public void setHistologicType(HistologicType value) { + this.histologicType = value; + } + + /** + * Gets the value of the histologicNuclearGrade property. + * + * @return + * possible object is + * {@link HistologicNuclearGrade } + * + */ + public HistologicNuclearGrade getHistologicNuclearGrade() { + return histologicNuclearGrade; + } + + /** + * Sets the value of the histologicNuclearGrade property. + * + * @param value + * allowed object is + * {@link HistologicNuclearGrade } + * + */ + public void setHistologicNuclearGrade(HistologicNuclearGrade value) { + this.histologicNuclearGrade = value; + } + + /** + * Gets the value of the tumorSampleAnatomicLocation property. + * + * @return + * possible object is + * {@link TumorSampleAnatomicLocation } + * + */ + public TumorSampleAnatomicLocation getTumorSampleAnatomicLocation() { + return tumorSampleAnatomicLocation; + } + + /** + * Sets the value of the tumorSampleAnatomicLocation property. + * + * @param value + * allowed object is + * {@link TumorSampleAnatomicLocation } + * + */ + public void setTumorSampleAnatomicLocation(TumorSampleAnatomicLocation value) { + this.tumorSampleAnatomicLocation = value; + } + + /** + * Gets the value of the gemistocytesPresent property. + * + * @return + * possible object is + * {@link GemistocytesPresent } + * + */ + public GemistocytesPresent getGemistocytesPresent() { + return gemistocytesPresent; + } + + /** + * Sets the value of the gemistocytesPresent property. + * + * @param value + * allowed object is + * {@link GemistocytesPresent } + * + */ + public void setGemistocytesPresent(GemistocytesPresent value) { + this.gemistocytesPresent = value; + } + + /** + * Gets the value of the oligodendroglialComponent property. + * + * @return + * possible object is + * {@link OligodendroglialComponent } + * + */ + public OligodendroglialComponent getOligodendroglialComponent() { + return oligodendroglialComponent; + } + + /** + * Sets the value of the oligodendroglialComponent property. + * + * @param value + * allowed object is + * {@link OligodendroglialComponent } + * + */ + public void setOligodendroglialComponent(OligodendroglialComponent value) { + this.oligodendroglialComponent = value; + } + + /** + * Gets the value of the leptomeningealInvolement property. + * + * @return + * possible object is + * {@link LeptomeningealInvolement } + * + */ + public LeptomeningealInvolement getLeptomeningealInvolement() { + return leptomeningealInvolement; + } + + /** + * Sets the value of the leptomeningealInvolement property. + * + * @param value + * allowed object is + * {@link LeptomeningealInvolement } + * + */ + public void setLeptomeningealInvolement(LeptomeningealInvolement value) { + this.leptomeningealInvolement = value; + } + + /** + * Gets the value of the gfapPositive property. + * + * @return + * possible object is + * {@link GfapPositive } + * + */ + public GfapPositive getGfapPositive() { + return gfapPositive; + } + + /** + * Sets the value of the gfapPositive property. + * + * @param value + * allowed object is + * {@link GfapPositive } + * + */ + public void setGfapPositive(GfapPositive value) { + this.gfapPositive = value; + } + + /** + * Gets the value of the mib1Positive property. + * + * @return + * possible object is + * {@link Mib1Positive } + * + */ + public Mib1Positive getMib1Positive() { + return mib1Positive; + } + + /** + * Sets the value of the mib1Positive property. + * + * @param value + * allowed object is + * {@link Mib1Positive } + * + */ + public void setMib1Positive(Mib1Positive value) { + this.mib1Positive = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GbmSlide.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GbmSlide.java new file mode 100644 index 0000000..31d1e9f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GbmSlide.java @@ -0,0 +1,155 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}endothelial_proliferation"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}nuclear_pleomorphism"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}palisading_necrosis"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}cellularity"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "endothelialProliferation", + "nuclearPleomorphism", + "palisadingNecrosis", + "cellularity" +}) +@XmlRootElement(name = "gbm_slide") +public class GbmSlide { + + @XmlElement(name = "endothelial_proliferation", required = true) + protected EndothelialProliferation endothelialProliferation; + @XmlElement(name = "nuclear_pleomorphism", required = true) + protected NuclearPleomorphism nuclearPleomorphism; + @XmlElement(name = "palisading_necrosis", required = true) + protected PalisadingNecrosis palisadingNecrosis; + @XmlElement(required = true) + protected Cellularity cellularity; + + /** + * Gets the value of the endothelialProliferation property. + * + * @return + * possible object is + * {@link EndothelialProliferation } + * + */ + public EndothelialProliferation getEndothelialProliferation() { + return endothelialProliferation; + } + + /** + * Sets the value of the endothelialProliferation property. + * + * @param value + * allowed object is + * {@link EndothelialProliferation } + * + */ + public void setEndothelialProliferation(EndothelialProliferation value) { + this.endothelialProliferation = value; + } + + /** + * Gets the value of the nuclearPleomorphism property. + * + * @return + * possible object is + * {@link NuclearPleomorphism } + * + */ + public NuclearPleomorphism getNuclearPleomorphism() { + return nuclearPleomorphism; + } + + /** + * Sets the value of the nuclearPleomorphism property. + * + * @param value + * allowed object is + * {@link NuclearPleomorphism } + * + */ + public void setNuclearPleomorphism(NuclearPleomorphism value) { + this.nuclearPleomorphism = value; + } + + /** + * Gets the value of the palisadingNecrosis property. + * + * @return + * possible object is + * {@link PalisadingNecrosis } + * + */ + public PalisadingNecrosis getPalisadingNecrosis() { + return palisadingNecrosis; + } + + /** + * Sets the value of the palisadingNecrosis property. + * + * @param value + * allowed object is + * {@link PalisadingNecrosis } + * + */ + public void setPalisadingNecrosis(PalisadingNecrosis value) { + this.palisadingNecrosis = value; + } + + /** + * Gets the value of the cellularity property. + * + * @return + * possible object is + * {@link Cellularity } + * + */ + public Cellularity getCellularity() { + return cellularity; + } + + /** + * Sets the value of the cellularity property. + * + * @param value + * allowed object is + * {@link Cellularity } + * + */ + public void setCellularity(Cellularity value) { + this.cellularity = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GelImageFile.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GelImageFile.java new file mode 100644 index 0000000..6d698b3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GelImageFile.java @@ -0,0 +1,359 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>anyURI">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "gel_image_file") +public class GelImageFile { + + @XmlValue + @XmlSchemaType(name = "anyURI") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GemistocytesPresent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GemistocytesPresent.java new file mode 100644 index 0000000..d426c81 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GemistocytesPresent.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "gemistocytes_present") +public class GemistocytesPresent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GfapPositive.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GfapPositive.java new file mode 100644 index 0000000..b9b20c5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/GfapPositive.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "gfap_positive") +public class GfapPositive { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HistologicNuclearGrade.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HistologicNuclearGrade.java new file mode 100644 index 0000000..2cc3d83 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HistologicNuclearGrade.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2673857" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "histologic_nuclear_grade") +public class HistologicNuclearGrade + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HistologicType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HistologicType.java new file mode 100644 index 0000000..2180b9b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HistologicType.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "histologic_type") +public class HistologicType + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvCall.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvCall.java new file mode 100644 index 0000000..8dd8413 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvCall.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "hpv_call") +public class HpvCall + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvStatus.java new file mode 100644 index 0000000..c352af9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvStatus.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "hpv_status") +public class HpvStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvTestResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvTestResult.java new file mode 100644 index 0000000..dfebb4e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvTestResult.java @@ -0,0 +1,106 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}hpv_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}hpv_call" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "hpvStatus", + "hpvCall" +}) +@XmlRootElement(name = "hpv_test_result") +public class HpvTestResult { + + @XmlElement(name = "hpv_status", required = true) + protected HpvStatus hpvStatus; + @XmlElement(name = "hpv_call") + protected List hpvCall; + + /** + * Gets the value of the hpvStatus property. + * + * @return + * possible object is + * {@link HpvStatus } + * + */ + public HpvStatus getHpvStatus() { + return hpvStatus; + } + + /** + * Sets the value of the hpvStatus property. + * + * @param value + * allowed object is + * {@link HpvStatus } + * + */ + public void setHpvStatus(HpvStatus value) { + this.hpvStatus = value; + } + + /** + * Gets the value of the hpvCall 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 hpvCall property. + * + *

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

+     *    getHpvCall().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link HpvCall } + * + * + */ + public List getHpvCall() { + if (hpvCall == null) { + hpvCall = new ArrayList(); + } + return this.hpvCall; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvTestResults.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvTestResults.java new file mode 100644 index 0000000..eeed8fa --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/HpvTestResults.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}hpv_test_result" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "hpvTestResult" +}) +@XmlRootElement(name = "hpv_test_results") +public class HpvTestResults { + + @XmlElement(name = "hpv_test_result", required = true) + protected List hpvTestResult; + + /** + * Gets the value of the hpvTestResult 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 hpvTestResult property. + * + *

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

+     *    getHpvTestResult().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link HpvTestResult } + * + * + */ + public List getHpvTestResult() { + if (hpvTestResult == null) { + hpvTestResult = new ArrayList(); + } + return this.hpvTestResult; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/InitialWeight.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/InitialWeight.java new file mode 100644 index 0000000..ff15c52 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/InitialWeight.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "initial_weight") +public class InitialWeight + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IntermediateDimension.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IntermediateDimension.java new file mode 100644 index 0000000..02a0c46 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IntermediateDimension.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "intermediate_dimension") +public class IntermediateDimension + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IsDerivedFromFfpe.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IsDerivedFromFfpe.java new file mode 100644 index 0000000..3e62ced --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IsDerivedFromFfpe.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4170571" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "is_derived_from_ffpe") +public class IsDerivedFromFfpe { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4170571"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IsFfpe.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IsFfpe.java new file mode 100644 index 0000000..df60032 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/IsFfpe.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4170557" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "is_ffpe") +public class IsFfpe { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4170557"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LCE.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LCE.java new file mode 100644 index 0000000..d767435 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LCE.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3251491" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "LCE") +public class LCE + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LeptomeningealInvolement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LeptomeningealInvolement.java new file mode 100644 index 0000000..42f8a09 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LeptomeningealInvolement.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "leptomeningeal_involement") +public class LeptomeningealInvolement { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LongestDimension.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LongestDimension.java new file mode 100644 index 0000000..878824d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LongestDimension.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "longest_dimension") +public class LongestDimension + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LungPathology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LungPathology.java new file mode 100644 index 0000000..ca06fd6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LungPathology.java @@ -0,0 +1,108 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlElementRef; +import javax.xml.bind.annotation.XmlElementRefs; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}histologic_nuclear_grade"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tumor_sample_anatomic_location"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tumor_sample_anatomic_location"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tnm_pathology_stage_grouping"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tnm_pathology_tumor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tnm_pathology_lymphnode_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tnm_pathology_metastatic_status"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "content" +}) +@XmlRootElement(name = "lung_pathology") +public class LungPathology { + + @XmlElementRefs({ + @XmlElementRef(name = "tnm_pathology_metastatic_status", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = TnmPathologyMetastaticStatus.class, required = false), + @XmlElementRef(name = "tumor_sample_anatomic_location", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = TumorSampleAnatomicLocation.class, required = false), + @XmlElementRef(name = "tnm_pathology_lymphnode_status", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = TnmPathologyLymphnodeStatus.class, required = false), + @XmlElementRef(name = "tnm_pathology_stage_grouping", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = TnmPathologyStageGrouping.class, required = false), + @XmlElementRef(name = "histologic_nuclear_grade", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = HistologicNuclearGrade.class, required = false), + @XmlElementRef(name = "tnm_pathology_tumor_status", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = TnmPathologyTumorStatus.class, required = false) + }) + 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 "TumorSampleAnatomicLocation" is used by two different parts of a schema. See: + * line 1489 of file:/Users/Dixit/Documents/github/gsoc/data/biospecimen_xsd/tcga_bcr_biospecimen.xml + * line 1488 of file:/Users/Dixit/Documents/github/gsoc/data/biospecimen_xsd/tcga_bcr_biospecimen.xml + *

+ * 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 TnmPathologyLymphnodeStatus } + * {@link TnmPathologyStageGrouping } + * {@link TnmPathologyMetastaticStatus } + * {@link HistologicNuclearGrade } + * {@link TnmPathologyTumorStatus } + * {@link TumorSampleAnatomicLocation } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LungSlide.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LungSlide.java new file mode 100644 index 0000000..340047f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LungSlide.java @@ -0,0 +1,39 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "lung_slide") +public class LungSlide { + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LymphaticInvasion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LymphaticInvasion.java new file mode 100644 index 0000000..e3b5764 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/LymphaticInvasion.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="64171" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "lymphatic_invasion") +public class LymphaticInvasion { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "64171"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MarginsInvolved.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MarginsInvolved.java new file mode 100644 index 0000000..cb9a588 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MarginsInvolved.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2608099" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "margins_involved") +public class MarginsInvolved { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2608099"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MethodOfSampleProcurement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MethodOfSampleProcurement.java new file mode 100644 index 0000000..509a671 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MethodOfSampleProcurement.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103514" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "method_of_sample_procurement") +public class MethodOfSampleProcurement + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Mib1Positive.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Mib1Positive.java new file mode 100644 index 0000000..f28d64d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Mib1Positive.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "mib1_positive") +public class Mib1Positive { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfCollection.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfCollection.java new file mode 100644 index 0000000..70d4015 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfCollection.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_collection") +public class MonthOfCollection { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfCreation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfCreation.java new file mode 100644 index 0000000..021aa98 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfCreation.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "month_of_creation") +public class MonthOfCreation + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfIndex.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfIndex.java new file mode 100644 index 0000000..fd03363 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfIndex.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896956" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfIndex { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896956"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfShipment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfShipment.java new file mode 100644 index 0000000..7755b9b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MonthOfShipment.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "month_of_shipment") +public class MonthOfShipment + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MsiMonoDiNucleotideAssayStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MsiMonoDiNucleotideAssayStatus.java new file mode 100644 index 0000000..edc0b82 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MsiMonoDiNucleotideAssayStatus.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3226963" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "msi_mono_di_nucleotide_assay_status") +public class MsiMonoDiNucleotideAssayStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MsiMonoNucleotideAssayStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MsiMonoNucleotideAssayStatus.java new file mode 100644 index 0000000..cc40d8d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/MsiMonoNucleotideAssayStatus.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3226962" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "msi_mono_nucleotide_assay_status") +public class MsiMonoNucleotideAssayStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NormalTumorGenotypeMatch.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NormalTumorGenotypeMatch.java new file mode 100644 index 0000000..734597d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NormalTumorGenotypeMatch.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "normal_tumor_genotype_match") +public class NormalTumorGenotypeMatch + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NuclearPleomorphism.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NuclearPleomorphism.java new file mode 100644 index 0000000..ee949af --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NuclearPleomorphism.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "nuclear_pleomorphism") +public class NuclearPleomorphism { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberProliferatingCells.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberProliferatingCells.java new file mode 100644 index 0000000..f853d68 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberProliferatingCells.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "number_proliferating_cells") +public class NumberProliferatingCells + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberRegionalLymphnodesExam.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberRegionalLymphnodesExam.java new file mode 100644 index 0000000..e7e74fc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberRegionalLymphnodesExam.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2673768" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "number_regional_lymphnodes_exam") +public class NumberRegionalLymphnodesExam + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberRegionalLymphnodesPos.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberRegionalLymphnodesPos.java new file mode 100644 index 0000000..bd93531 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/NumberRegionalLymphnodesPos.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2673770" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "number_regional_lymphnodes_pos") +public class NumberRegionalLymphnodesPos + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ObjectFactory.java new file mode 100644 index 0000000..600ec6a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ObjectFactory.java @@ -0,0 +1,1488 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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 nci.tcga.bcr.xml.biospecimen._2 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 _PathologyReportFileName_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "pathology_report_file_name"); + private final static QName _PortionSequence_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "portion_sequence"); + private final static QName _PreservationMethod_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "preservation_method"); + private final static QName _BiospecimenSequence_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "biospecimen_sequence"); + private final static QName _Protocol_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "protocol"); + private final static QName _YearOfIndex_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "year_of_index"); + private final static QName _FfpeSlideUuid_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "ffpe_slide_uuid"); + private final static QName _Composition_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "composition"); + private final static QName _PortionNumber_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "portion_number"); + private final static QName _ProtocolFileName_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "protocol_file_name"); + private final static QName _TumorDescriptor_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "tumor_descriptor"); + private final static QName _BcrShipmentPortionUuid_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "bcr_shipment_portion_uuid"); + private final static QName _PercentMonocyteInfiltration_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "percent_monocyte_infiltration"); + private final static QName _SpecimenFractionOrdinal_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "specimen_fraction_ordinal"); + private final static QName _ProtocolName_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "protocol_name"); + private final static QName _TissueType_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "tissue_type"); + private final static QName _Volume_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "volume"); + private final static QName _DayOfIndex_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "day_of_index"); + private final static QName _PathologyReportUuid_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "pathology_report_uuid"); + private final static QName _MonthOfIndex_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "month_of_index"); + private final static QName _Quantity_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "quantity"); + private final static QName _ExperimentalProtocolType_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "experimental_protocol_type"); + private final static QName _SubportionSequence_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/2.7", "subportion_sequence"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: nci.tcga.bcr.xml.biospecimen._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link SampleTypeId } + * + */ + public SampleTypeId createSampleTypeId() { + return new SampleTypeId(); + } + + /** + * Create an instance of {@link ShipmentPortionDayOfShipment } + * + */ + public ShipmentPortionDayOfShipment createShipmentPortionDayOfShipment() { + return new ShipmentPortionDayOfShipment(); + } + + /** + * Create an instance of {@link BcrShipmentPortionUuid } + * + */ + public BcrShipmentPortionUuid createBcrShipmentPortionUuid() { + return new BcrShipmentPortionUuid(); + } + + /** + * Create an instance of {@link VenousInvasion } + * + */ + public VenousInvasion createVenousInvasion() { + return new VenousInvasion(); + } + + /** + * Create an instance of {@link Ratio28S18S } + * + */ + public Ratio28S18S createRatio28S18S() { + return new Ratio28S18S(); + } + + /** + * Create an instance of {@link Type } + * + */ + public Type createType() { + return new Type(); + } + + /** + * Create an instance of {@link GbmPathology } + * + */ + public GbmPathology createGbmPathology() { + return new GbmPathology(); + } + + /** + * Create an instance of {@link HistologicType } + * + */ + public HistologicType createHistologicType() { + return new HistologicType(); + } + + /** + * Create an instance of {@link HistologicNuclearGrade } + * + */ + public HistologicNuclearGrade createHistologicNuclearGrade() { + return new HistologicNuclearGrade(); + } + + /** + * Create an instance of {@link TumorSampleAnatomicLocation } + * + */ + public TumorSampleAnatomicLocation createTumorSampleAnatomicLocation() { + return new TumorSampleAnatomicLocation(); + } + + /** + * Create an instance of {@link GemistocytesPresent } + * + */ + public GemistocytesPresent createGemistocytesPresent() { + return new GemistocytesPresent(); + } + + /** + * Create an instance of {@link OligodendroglialComponent } + * + */ + public OligodendroglialComponent createOligodendroglialComponent() { + return new OligodendroglialComponent(); + } + + /** + * Create an instance of {@link LeptomeningealInvolement } + * + */ + public LeptomeningealInvolement createLeptomeningealInvolement() { + return new LeptomeningealInvolement(); + } + + /** + * Create an instance of {@link GfapPositive } + * + */ + public GfapPositive createGfapPositive() { + return new GfapPositive(); + } + + /** + * Create an instance of {@link Mib1Positive } + * + */ + public Mib1Positive createMib1Positive() { + return new Mib1Positive(); + } + + /** + * Create an instance of {@link LungPathology } + * + */ + public LungPathology createLungPathology() { + return new LungPathology(); + } + + /** + * Create an instance of {@link TnmPathologyStageGrouping } + * + */ + public TnmPathologyStageGrouping createTnmPathologyStageGrouping() { + return new TnmPathologyStageGrouping(); + } + + /** + * Create an instance of {@link TnmPathologyTumorStatus } + * + */ + public TnmPathologyTumorStatus createTnmPathologyTumorStatus() { + return new TnmPathologyTumorStatus(); + } + + /** + * Create an instance of {@link TnmPathologyLymphnodeStatus } + * + */ + public TnmPathologyLymphnodeStatus createTnmPathologyLymphnodeStatus() { + return new TnmPathologyLymphnodeStatus(); + } + + /** + * Create an instance of {@link TnmPathologyMetastaticStatus } + * + */ + public TnmPathologyMetastaticStatus createTnmPathologyMetastaticStatus() { + return new TnmPathologyMetastaticStatus(); + } + + /** + * Create an instance of {@link OvarianPathology } + * + */ + public OvarianPathology createOvarianPathology() { + return new OvarianPathology(); + } + + /** + * Create an instance of {@link GbmSlide } + * + */ + public GbmSlide createGbmSlide() { + return new GbmSlide(); + } + + /** + * Create an instance of {@link EndothelialProliferation } + * + */ + public EndothelialProliferation createEndothelialProliferation() { + return new EndothelialProliferation(); + } + + /** + * Create an instance of {@link NuclearPleomorphism } + * + */ + public NuclearPleomorphism createNuclearPleomorphism() { + return new NuclearPleomorphism(); + } + + /** + * Create an instance of {@link PalisadingNecrosis } + * + */ + public PalisadingNecrosis createPalisadingNecrosis() { + return new PalisadingNecrosis(); + } + + /** + * Create an instance of {@link Cellularity } + * + */ + public Cellularity createCellularity() { + return new Cellularity(); + } + + /** + * Create an instance of {@link LungSlide } + * + */ + public LungSlide createLungSlide() { + return new LungSlide(); + } + + /** + * Create an instance of {@link OvarianSlide } + * + */ + public OvarianSlide createOvarianSlide() { + return new OvarianSlide(); + } + + /** + * Create an instance of {@link RadiationType } + * + */ + public RadiationType createRadiationType() { + return new RadiationType(); + } + + /** + * Create an instance of {@link AnalyteType } + * + */ + public AnalyteType createAnalyteType() { + return new AnalyteType(); + } + + /** + * Create an instance of {@link PlateColumn } + * + */ + public PlateColumn createPlateColumn() { + return new PlateColumn(); + } + + /** + * Create an instance of {@link BcrSampleBarcode } + * + */ + public BcrSampleBarcode createBcrSampleBarcode() { + return new BcrSampleBarcode(); + } + + /** + * Create an instance of {@link ShipmentPortionMonthOfShipment } + * + */ + public ShipmentPortionMonthOfShipment createShipmentPortionMonthOfShipment() { + return new ShipmentPortionMonthOfShipment(); + } + + /** + * Create an instance of {@link Dna } + * + */ + public Dna createDna() { + return new Dna(); + } + + /** + * Create an instance of {@link NormalTumorGenotypeMatch } + * + */ + public NormalTumorGenotypeMatch createNormalTumorGenotypeMatch() { + return new NormalTumorGenotypeMatch(); + } + + /** + * Create an instance of {@link PcrAmplificationSuccessful } + * + */ + public PcrAmplificationSuccessful createPcrAmplificationSuccessful() { + return new PcrAmplificationSuccessful(); + } + + /** + * Create an instance of {@link YearOfIndex } + * + */ + public YearOfIndex createYearOfIndex() { + return new YearOfIndex(); + } + + /** + * Create an instance of {@link DaysToIndex } + * + */ + public DaysToIndex createDaysToIndex() { + return new DaysToIndex(); + } + + /** + * Create an instance of {@link NumberRegionalLymphnodesExam } + * + */ + public NumberRegionalLymphnodesExam createNumberRegionalLymphnodesExam() { + return new NumberRegionalLymphnodesExam(); + } + + /** + * Create an instance of {@link BcrPatientCanonicalReasons } + * + */ + public BcrPatientCanonicalReasons createBcrPatientCanonicalReasons() { + return new BcrPatientCanonicalReasons(); + } + + /** + * Create an instance of {@link BcrCanonicalReason } + * + */ + public BcrCanonicalReason createBcrCanonicalReason() { + return new BcrCanonicalReason(); + } + + /** + * Create an instance of {@link Portions } + * + */ + public Portions createPortions() { + return new Portions(); + } + + /** + * Create an instance of {@link ShipmentPortion } + * + */ + public ShipmentPortion createShipmentPortion() { + return new ShipmentPortion(); + } + + /** + * Create an instance of {@link PortionNumber } + * + */ + public PortionNumber createPortionNumber() { + return new PortionNumber(); + } + + /** + * Create an instance of {@link PortionSequence } + * + */ + public PortionSequence createPortionSequence() { + return new PortionSequence(); + } + + /** + * Create an instance of {@link PlateId } + * + */ + public PlateId createPlateId() { + return new PlateId(); + } + + /** + * Create an instance of {@link CenterId } + * + */ + public CenterId createCenterId() { + return new CenterId(); + } + + /** + * Create an instance of {@link ShipmentPortionYearOfShipment } + * + */ + public ShipmentPortionYearOfShipment createShipmentPortionYearOfShipment() { + return new ShipmentPortionYearOfShipment(); + } + + /** + * Create an instance of {@link ShipmentPortionBcrAliquotBarcode } + * + */ + public ShipmentPortionBcrAliquotBarcode createShipmentPortionBcrAliquotBarcode() { + return new ShipmentPortionBcrAliquotBarcode(); + } + + /** + * Create an instance of {@link IsFfpe } + * + */ + public IsFfpe createIsFfpe() { + return new IsFfpe(); + } + + /** + * Create an instance of {@link BcrBiospecimenCanonicalReasons } + * + */ + public BcrBiospecimenCanonicalReasons createBcrBiospecimenCanonicalReasons() { + return new BcrBiospecimenCanonicalReasons(); + } + + /** + * Create an instance of {@link Portion } + * + */ + public Portion createPortion() { + return new Portion(); + } + + /** + * Create an instance of {@link DayOfCreation } + * + */ + public DayOfCreation createDayOfCreation() { + return new DayOfCreation(); + } + + /** + * Create an instance of {@link MonthOfCreation } + * + */ + public MonthOfCreation createMonthOfCreation() { + return new MonthOfCreation(); + } + + /** + * Create an instance of {@link YearOfCreation } + * + */ + public YearOfCreation createYearOfCreation() { + return new YearOfCreation(); + } + + /** + * Create an instance of {@link Weight } + * + */ + public Weight createWeight() { + return new Weight(); + } + + /** + * Create an instance of {@link BcrPortionBarcode } + * + */ + public BcrPortionBarcode createBcrPortionBarcode() { + return new BcrPortionBarcode(); + } + + /** + * Create an instance of {@link BcrPortionUuid } + * + */ + public BcrPortionUuid createBcrPortionUuid() { + return new BcrPortionUuid(); + } + + /** + * Create an instance of {@link Analytes } + * + */ + public Analytes createAnalytes() { + return new Analytes(); + } + + /** + * Create an instance of {@link Analyte } + * + */ + public Analyte createAnalyte() { + return new Analyte(); + } + + /** + * Create an instance of {@link SubportionSequence } + * + */ + public SubportionSequence createSubportionSequence() { + return new SubportionSequence(); + } + + /** + * Create an instance of {@link AnalyteTypeId } + * + */ + public AnalyteTypeId createAnalyteTypeId() { + return new AnalyteTypeId(); + } + + /** + * Create an instance of {@link Concentration } + * + */ + public Concentration createConcentration() { + return new Concentration(); + } + + /** + * Create an instance of {@link A260A280Ratio } + * + */ + public A260A280Ratio createA260A280Ratio() { + return new A260A280Ratio(); + } + + /** + * Create an instance of {@link GelImageFile } + * + */ + public GelImageFile createGelImageFile() { + return new GelImageFile(); + } + + /** + * Create an instance of {@link WellNumber } + * + */ + public WellNumber createWellNumber() { + return new WellNumber(); + } + + /** + * Create an instance of {@link BcrAnalyteBarcode } + * + */ + public BcrAnalyteBarcode createBcrAnalyteBarcode() { + return new BcrAnalyteBarcode(); + } + + /** + * Create an instance of {@link BcrAnalyteUuid } + * + */ + public BcrAnalyteUuid createBcrAnalyteUuid() { + return new BcrAnalyteUuid(); + } + + /** + * Create an instance of {@link IsDerivedFromFfpe } + * + */ + public IsDerivedFromFfpe createIsDerivedFromFfpe() { + return new IsDerivedFromFfpe(); + } + + /** + * Create an instance of {@link Aliquots } + * + */ + public Aliquots createAliquots() { + return new Aliquots(); + } + + /** + * Create an instance of {@link Aliquot } + * + */ + public Aliquot createAliquot() { + return new Aliquot(); + } + + /** + * Create an instance of {@link DayOfShipment } + * + */ + public DayOfShipment createDayOfShipment() { + return new DayOfShipment(); + } + + /** + * Create an instance of {@link MonthOfShipment } + * + */ + public MonthOfShipment createMonthOfShipment() { + return new MonthOfShipment(); + } + + /** + * Create an instance of {@link YearOfShipment } + * + */ + public YearOfShipment createYearOfShipment() { + return new YearOfShipment(); + } + + /** + * Create an instance of {@link BcrAliquotBarcode } + * + */ + public BcrAliquotBarcode createBcrAliquotBarcode() { + return new BcrAliquotBarcode(); + } + + /** + * Create an instance of {@link BcrAliquotUuid } + * + */ + public BcrAliquotUuid createBcrAliquotUuid() { + return new BcrAliquotUuid(); + } + + /** + * Create an instance of {@link Quantity } + * + */ + public Quantity createQuantity() { + return new Quantity(); + } + + /** + * Create an instance of {@link Volume } + * + */ + public Volume createVolume() { + return new Volume(); + } + + /** + * Create an instance of {@link PlateRow } + * + */ + public PlateRow createPlateRow() { + return new PlateRow(); + } + + /** + * Create an instance of {@link BiospecimenBarcodeBottom } + * + */ + public BiospecimenBarcodeBottom createBiospecimenBarcodeBottom() { + return new BiospecimenBarcodeBottom(); + } + + /** + * Create an instance of {@link SourceCenter } + * + */ + public SourceCenter createSourceCenter() { + return new SourceCenter(); + } + + /** + * Create an instance of {@link MsiMonoDiNucleotideAssayStatus } + * + */ + public MsiMonoDiNucleotideAssayStatus createMsiMonoDiNucleotideAssayStatus() { + return new MsiMonoDiNucleotideAssayStatus(); + } + + /** + * Create an instance of {@link MsiMonoNucleotideAssayStatus } + * + */ + public MsiMonoNucleotideAssayStatus createMsiMonoNucleotideAssayStatus() { + return new MsiMonoNucleotideAssayStatus(); + } + + /** + * Create an instance of {@link Protocols } + * + */ + public Protocols createProtocols() { + return new Protocols(); + } + + /** + * Create an instance of {@link Protocol } + * + */ + public Protocol createProtocol() { + return new Protocol(); + } + + /** + * Create an instance of {@link Rna } + * + */ + public Rna createRna() { + return new Rna(); + } + + /** + * Create an instance of {@link Rinvalue } + * + */ + public Rinvalue createRinvalue() { + return new Rinvalue(); + } + + /** + * Create an instance of {@link SpectrophotometerMethod } + * + */ + public SpectrophotometerMethod createSpectrophotometerMethod() { + return new SpectrophotometerMethod(); + } + + /** + * Create an instance of {@link Slides } + * + */ + public Slides createSlides() { + return new Slides(); + } + + /** + * Create an instance of {@link Slide } + * + */ + public Slide createSlide() { + return new Slide(); + } + + /** + * Create an instance of {@link SectionLocation } + * + */ + public SectionLocation createSectionLocation() { + return new SectionLocation(); + } + + /** + * Create an instance of {@link NumberProliferatingCells } + * + */ + public NumberProliferatingCells createNumberProliferatingCells() { + return new NumberProliferatingCells(); + } + + /** + * Create an instance of {@link PercentTumorCells } + * + */ + public PercentTumorCells createPercentTumorCells() { + return new PercentTumorCells(); + } + + /** + * Create an instance of {@link PercentTumorNuclei } + * + */ + public PercentTumorNuclei createPercentTumorNuclei() { + return new PercentTumorNuclei(); + } + + /** + * Create an instance of {@link PercentNormalCells } + * + */ + public PercentNormalCells createPercentNormalCells() { + return new PercentNormalCells(); + } + + /** + * Create an instance of {@link PercentNecrosis } + * + */ + public PercentNecrosis createPercentNecrosis() { + return new PercentNecrosis(); + } + + /** + * Create an instance of {@link PercentStromalCells } + * + */ + public PercentStromalCells createPercentStromalCells() { + return new PercentStromalCells(); + } + + /** + * Create an instance of {@link PercentInflamInfiltration } + * + */ + public PercentInflamInfiltration createPercentInflamInfiltration() { + return new PercentInflamInfiltration(); + } + + /** + * Create an instance of {@link PercentLymphocyteInfiltration } + * + */ + public PercentLymphocyteInfiltration createPercentLymphocyteInfiltration() { + return new PercentLymphocyteInfiltration(); + } + + /** + * Create an instance of {@link PercentMonocyteInfiltration } + * + */ + public PercentMonocyteInfiltration createPercentMonocyteInfiltration() { + return new PercentMonocyteInfiltration(); + } + + /** + * Create an instance of {@link PercentGranulocyteInfiltration } + * + */ + public PercentGranulocyteInfiltration createPercentGranulocyteInfiltration() { + return new PercentGranulocyteInfiltration(); + } + + /** + * Create an instance of {@link PercentNeutrophilInfiltration } + * + */ + public PercentNeutrophilInfiltration createPercentNeutrophilInfiltration() { + return new PercentNeutrophilInfiltration(); + } + + /** + * Create an instance of {@link PercentEosinophilInfiltration } + * + */ + public PercentEosinophilInfiltration createPercentEosinophilInfiltration() { + return new PercentEosinophilInfiltration(); + } + + /** + * Create an instance of {@link LCE } + * + */ + public LCE createLCE() { + return new LCE(); + } + + /** + * Create an instance of {@link TimeBetweenClampingAndFreezing } + * + */ + public TimeBetweenClampingAndFreezing createTimeBetweenClampingAndFreezing() { + return new TimeBetweenClampingAndFreezing(); + } + + /** + * Create an instance of {@link PathologyReportUuid } + * + */ + public PathologyReportUuid createPathologyReportUuid() { + return new PathologyReportUuid(); + } + + /** + * Create an instance of {@link HpvStatus } + * + */ + public HpvStatus createHpvStatus() { + return new HpvStatus(); + } + + /** + * Create an instance of {@link Samples } + * + */ + public Samples createSamples() { + return new Samples(); + } + + /** + * Create an instance of {@link Sample } + * + */ + public Sample createSample() { + return new Sample(); + } + + /** + * Create an instance of {@link SpecimenFractionOrdinal } + * + */ + public SpecimenFractionOrdinal createSpecimenFractionOrdinal() { + return new SpecimenFractionOrdinal(); + } + + /** + * Create an instance of {@link VialNumber } + * + */ + public VialNumber createVialNumber() { + return new VialNumber(); + } + + /** + * Create an instance of {@link BiospecimenSequence } + * + */ + public BiospecimenSequence createBiospecimenSequence() { + return new BiospecimenSequence(); + } + + /** + * Create an instance of {@link SampleType } + * + */ + public SampleType createSampleType() { + return new SampleType(); + } + + /** + * Create an instance of {@link LongestDimension } + * + */ + public LongestDimension createLongestDimension() { + return new LongestDimension(); + } + + /** + * Create an instance of {@link IntermediateDimension } + * + */ + public IntermediateDimension createIntermediateDimension() { + return new IntermediateDimension(); + } + + /** + * Create an instance of {@link ShortestDimension } + * + */ + public ShortestDimension createShortestDimension() { + return new ShortestDimension(); + } + + /** + * Create an instance of {@link InitialWeight } + * + */ + public InitialWeight createInitialWeight() { + return new InitialWeight(); + } + + /** + * Create an instance of {@link CurrentWeight } + * + */ + public CurrentWeight createCurrentWeight() { + return new CurrentWeight(); + } + + /** + * Create an instance of {@link FreezingMethod } + * + */ + public FreezingMethod createFreezingMethod() { + return new FreezingMethod(); + } + + /** + * Create an instance of {@link OctEmbedded } + * + */ + public OctEmbedded createOctEmbedded() { + return new OctEmbedded(); + } + + /** + * Create an instance of {@link PreservationMethod } + * + */ + public PreservationMethod createPreservationMethod() { + return new PreservationMethod(); + } + + /** + * Create an instance of {@link TissueType } + * + */ + public TissueType createTissueType() { + return new TissueType(); + } + + /** + * Create an instance of {@link Composition } + * + */ + public Composition createComposition() { + return new Composition(); + } + + /** + * Create an instance of {@link TumorDescriptor } + * + */ + public TumorDescriptor createTumorDescriptor() { + return new TumorDescriptor(); + } + + /** + * Create an instance of {@link DayOfCollection } + * + */ + public DayOfCollection createDayOfCollection() { + return new DayOfCollection(); + } + + /** + * Create an instance of {@link MonthOfCollection } + * + */ + public MonthOfCollection createMonthOfCollection() { + return new MonthOfCollection(); + } + + /** + * Create an instance of {@link YearOfCollection } + * + */ + public YearOfCollection createYearOfCollection() { + return new YearOfCollection(); + } + + /** + * Create an instance of {@link DaysToCollection } + * + */ + public DaysToCollection createDaysToCollection() { + return new DaysToCollection(); + } + + /** + * Create an instance of {@link TimeBetweenExcisionAndFreezing } + * + */ + public TimeBetweenExcisionAndFreezing createTimeBetweenExcisionAndFreezing() { + return new TimeBetweenExcisionAndFreezing(); + } + + /** + * Create an instance of {@link BcrSampleUuid } + * + */ + public BcrSampleUuid createBcrSampleUuid() { + return new BcrSampleUuid(); + } + + /** + * Create an instance of {@link TumorPathology } + * + */ + public TumorPathology createTumorPathology() { + return new TumorPathology(); + } + + /** + * Create an instance of {@link PrimaryOrMetastaticStatus } + * + */ + public PrimaryOrMetastaticStatus createPrimaryOrMetastaticStatus() { + return new PrimaryOrMetastaticStatus(); + } + + /** + * Create an instance of {@link MarginsInvolved } + * + */ + public MarginsInvolved createMarginsInvolved() { + return new MarginsInvolved(); + } + + /** + * Create an instance of {@link LymphaticInvasion } + * + */ + public LymphaticInvasion createLymphaticInvasion() { + return new LymphaticInvasion(); + } + + /** + * Create an instance of {@link NumberRegionalLymphnodesPos } + * + */ + public NumberRegionalLymphnodesPos createNumberRegionalLymphnodesPos() { + return new NumberRegionalLymphnodesPos(); + } + + /** + * Create an instance of {@link VerificationByBcr } + * + */ + public VerificationByBcr createVerificationByBcr() { + return new VerificationByBcr(); + } + + /** + * Create an instance of {@link MethodOfSampleProcurement } + * + */ + public MethodOfSampleProcurement createMethodOfSampleProcurement() { + return new MethodOfSampleProcurement(); + } + + /** + * Create an instance of {@link PathologyReportFileName } + * + */ + public PathologyReportFileName createPathologyReportFileName() { + return new PathologyReportFileName(); + } + + /** + * Create an instance of {@link DiagnosticSlides } + * + */ + public DiagnosticSlides createDiagnosticSlides() { + return new DiagnosticSlides(); + } + + /** + * Create an instance of {@link FfpeSlideUuid } + * + */ + public FfpeSlideUuid createFfpeSlideUuid() { + return new FfpeSlideUuid(); + } + + /** + * Create an instance of {@link DayOfIndex } + * + */ + public DayOfIndex createDayOfIndex() { + return new DayOfIndex(); + } + + /** + * Create an instance of {@link ExperimentalProtocolType } + * + */ + public ExperimentalProtocolType createExperimentalProtocolType() { + return new ExperimentalProtocolType(); + } + + /** + * Create an instance of {@link HpvCall } + * + */ + public HpvCall createHpvCall() { + return new HpvCall(); + } + + /** + * Create an instance of {@link HpvTestResult } + * + */ + public HpvTestResult createHpvTestResult() { + return new HpvTestResult(); + } + + /** + * Create an instance of {@link BcrCanonicalCheck } + * + */ + public BcrCanonicalCheck createBcrCanonicalCheck() { + return new BcrCanonicalCheck(); + } + + /** + * Create an instance of {@link BcrPatientCanonicalStatus } + * + */ + public BcrPatientCanonicalStatus createBcrPatientCanonicalStatus() { + return new BcrPatientCanonicalStatus(); + } + + /** + * Create an instance of {@link MonthOfIndex } + * + */ + public MonthOfIndex createMonthOfIndex() { + return new MonthOfIndex(); + } + + /** + * Create an instance of {@link HpvTestResults } + * + */ + public HpvTestResults createHpvTestResults() { + return new HpvTestResults(); + } + + /** + * Create an instance of {@link ProtocolFileName } + * + */ + public ProtocolFileName createProtocolFileName() { + return new ProtocolFileName(); + } + + /** + * Create an instance of {@link TcgaBcr } + * + */ + public TcgaBcr createTcgaBcr() { + return new TcgaBcr(); + } + + /** + * Create an instance of {@link Patient } + * + */ + public Patient createPatient() { + return new Patient(); + } + + /** + * Create an instance of {@link ProtocolName } + * + */ + public ProtocolName createProtocolName() { + return new ProtocolName(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PathologyReportFileName }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "pathology_report_file_name") + public JAXBElement createPathologyReportFileName(PathologyReportFileName value) { + return new JAXBElement(_PathologyReportFileName_QNAME, PathologyReportFileName.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PortionSequence }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "portion_sequence") + public JAXBElement createPortionSequence(PortionSequence value) { + return new JAXBElement(_PortionSequence_QNAME, PortionSequence.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PreservationMethod }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "preservation_method") + public JAXBElement createPreservationMethod(PreservationMethod value) { + return new JAXBElement(_PreservationMethod_QNAME, PreservationMethod.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BiospecimenSequence }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "biospecimen_sequence") + public JAXBElement createBiospecimenSequence(BiospecimenSequence value) { + return new JAXBElement(_BiospecimenSequence_QNAME, BiospecimenSequence.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Protocol }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "protocol") + public JAXBElement createProtocol(Protocol value) { + return new JAXBElement(_Protocol_QNAME, Protocol.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfIndex }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "year_of_index") + public JAXBElement createYearOfIndex(YearOfIndex value) { + return new JAXBElement(_YearOfIndex_QNAME, YearOfIndex.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link FfpeSlideUuid }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "ffpe_slide_uuid") + public JAXBElement createFfpeSlideUuid(FfpeSlideUuid value) { + return new JAXBElement(_FfpeSlideUuid_QNAME, FfpeSlideUuid.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Composition }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "composition") + public JAXBElement createComposition(Composition value) { + return new JAXBElement(_Composition_QNAME, Composition.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PortionNumber }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "portion_number") + public JAXBElement createPortionNumber(PortionNumber value) { + return new JAXBElement(_PortionNumber_QNAME, PortionNumber.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ProtocolFileName }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "protocol_file_name") + public JAXBElement createProtocolFileName(ProtocolFileName value) { + return new JAXBElement(_ProtocolFileName_QNAME, ProtocolFileName.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TumorDescriptor }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "tumor_descriptor") + public JAXBElement createTumorDescriptor(TumorDescriptor value) { + return new JAXBElement(_TumorDescriptor_QNAME, TumorDescriptor.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BcrShipmentPortionUuid }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "bcr_shipment_portion_uuid") + public JAXBElement createBcrShipmentPortionUuid(BcrShipmentPortionUuid value) { + return new JAXBElement(_BcrShipmentPortionUuid_QNAME, BcrShipmentPortionUuid.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PercentMonocyteInfiltration }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "percent_monocyte_infiltration") + public JAXBElement createPercentMonocyteInfiltration(PercentMonocyteInfiltration value) { + return new JAXBElement(_PercentMonocyteInfiltration_QNAME, PercentMonocyteInfiltration.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SpecimenFractionOrdinal }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "specimen_fraction_ordinal") + public JAXBElement createSpecimenFractionOrdinal(SpecimenFractionOrdinal value) { + return new JAXBElement(_SpecimenFractionOrdinal_QNAME, SpecimenFractionOrdinal.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ProtocolName }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "protocol_name") + public JAXBElement createProtocolName(ProtocolName value) { + return new JAXBElement(_ProtocolName_QNAME, ProtocolName.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TissueType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "tissue_type") + public JAXBElement createTissueType(TissueType value) { + return new JAXBElement(_TissueType_QNAME, TissueType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Volume }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "volume") + public JAXBElement createVolume(Volume value) { + return new JAXBElement(_Volume_QNAME, Volume.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfIndex }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "day_of_index") + public JAXBElement createDayOfIndex(DayOfIndex value) { + return new JAXBElement(_DayOfIndex_QNAME, DayOfIndex.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PathologyReportUuid }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "pathology_report_uuid") + public JAXBElement createPathologyReportUuid(PathologyReportUuid value) { + return new JAXBElement(_PathologyReportUuid_QNAME, PathologyReportUuid.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfIndex }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "month_of_index") + public JAXBElement createMonthOfIndex(MonthOfIndex value) { + return new JAXBElement(_MonthOfIndex_QNAME, MonthOfIndex.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Quantity }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "quantity") + public JAXBElement createQuantity(Quantity value) { + return new JAXBElement(_Quantity_QNAME, Quantity.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ExperimentalProtocolType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "experimental_protocol_type") + public JAXBElement createExperimentalProtocolType(ExperimentalProtocolType value) { + return new JAXBElement(_ExperimentalProtocolType_QNAME, ExperimentalProtocolType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubportionSequence }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", name = "subportion_sequence") + public JAXBElement createSubportionSequence(SubportionSequence value) { + return new JAXBElement(_SubportionSequence_QNAME, SubportionSequence.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OctEmbedded.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OctEmbedded.java new file mode 100644 index 0000000..a37b3e8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OctEmbedded.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "oct_embedded") +public class OctEmbedded + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OligodendroglialComponent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OligodendroglialComponent.java new file mode 100644 index 0000000..29aff39 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OligodendroglialComponent.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "oligodendroglial_component") +public class OligodendroglialComponent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OvarianPathology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OvarianPathology.java new file mode 100644 index 0000000..7f33f6c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OvarianPathology.java @@ -0,0 +1,211 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}histologic_nuclear_grade"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tumor_sample_anatomic_location"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tnm_pathology_stage_grouping"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tnm_pathology_tumor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tnm_pathology_lymphnode_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tnm_pathology_metastatic_status"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "histologicNuclearGrade", + "tumorSampleAnatomicLocation", + "tnmPathologyStageGrouping", + "tnmPathologyTumorStatus", + "tnmPathologyLymphnodeStatus", + "tnmPathologyMetastaticStatus" +}) +@XmlRootElement(name = "ovarian_pathology") +public class OvarianPathology { + + @XmlElement(name = "histologic_nuclear_grade", required = true) + protected HistologicNuclearGrade histologicNuclearGrade; + @XmlElement(name = "tumor_sample_anatomic_location", required = true) + protected TumorSampleAnatomicLocation tumorSampleAnatomicLocation; + @XmlElement(name = "tnm_pathology_stage_grouping", required = true) + protected TnmPathologyStageGrouping tnmPathologyStageGrouping; + @XmlElement(name = "tnm_pathology_tumor_status", required = true) + protected TnmPathologyTumorStatus tnmPathologyTumorStatus; + @XmlElement(name = "tnm_pathology_lymphnode_status", required = true) + protected TnmPathologyLymphnodeStatus tnmPathologyLymphnodeStatus; + @XmlElement(name = "tnm_pathology_metastatic_status", required = true) + protected TnmPathologyMetastaticStatus tnmPathologyMetastaticStatus; + + /** + * Gets the value of the histologicNuclearGrade property. + * + * @return + * possible object is + * {@link HistologicNuclearGrade } + * + */ + public HistologicNuclearGrade getHistologicNuclearGrade() { + return histologicNuclearGrade; + } + + /** + * Sets the value of the histologicNuclearGrade property. + * + * @param value + * allowed object is + * {@link HistologicNuclearGrade } + * + */ + public void setHistologicNuclearGrade(HistologicNuclearGrade value) { + this.histologicNuclearGrade = value; + } + + /** + * Gets the value of the tumorSampleAnatomicLocation property. + * + * @return + * possible object is + * {@link TumorSampleAnatomicLocation } + * + */ + public TumorSampleAnatomicLocation getTumorSampleAnatomicLocation() { + return tumorSampleAnatomicLocation; + } + + /** + * Sets the value of the tumorSampleAnatomicLocation property. + * + * @param value + * allowed object is + * {@link TumorSampleAnatomicLocation } + * + */ + public void setTumorSampleAnatomicLocation(TumorSampleAnatomicLocation value) { + this.tumorSampleAnatomicLocation = value; + } + + /** + * Gets the value of the tnmPathologyStageGrouping property. + * + * @return + * possible object is + * {@link TnmPathologyStageGrouping } + * + */ + public TnmPathologyStageGrouping getTnmPathologyStageGrouping() { + return tnmPathologyStageGrouping; + } + + /** + * Sets the value of the tnmPathologyStageGrouping property. + * + * @param value + * allowed object is + * {@link TnmPathologyStageGrouping } + * + */ + public void setTnmPathologyStageGrouping(TnmPathologyStageGrouping value) { + this.tnmPathologyStageGrouping = value; + } + + /** + * Gets the value of the tnmPathologyTumorStatus property. + * + * @return + * possible object is + * {@link TnmPathologyTumorStatus } + * + */ + public TnmPathologyTumorStatus getTnmPathologyTumorStatus() { + return tnmPathologyTumorStatus; + } + + /** + * Sets the value of the tnmPathologyTumorStatus property. + * + * @param value + * allowed object is + * {@link TnmPathologyTumorStatus } + * + */ + public void setTnmPathologyTumorStatus(TnmPathologyTumorStatus value) { + this.tnmPathologyTumorStatus = value; + } + + /** + * Gets the value of the tnmPathologyLymphnodeStatus property. + * + * @return + * possible object is + * {@link TnmPathologyLymphnodeStatus } + * + */ + public TnmPathologyLymphnodeStatus getTnmPathologyLymphnodeStatus() { + return tnmPathologyLymphnodeStatus; + } + + /** + * Sets the value of the tnmPathologyLymphnodeStatus property. + * + * @param value + * allowed object is + * {@link TnmPathologyLymphnodeStatus } + * + */ + public void setTnmPathologyLymphnodeStatus(TnmPathologyLymphnodeStatus value) { + this.tnmPathologyLymphnodeStatus = value; + } + + /** + * Gets the value of the tnmPathologyMetastaticStatus property. + * + * @return + * possible object is + * {@link TnmPathologyMetastaticStatus } + * + */ + public TnmPathologyMetastaticStatus getTnmPathologyMetastaticStatus() { + return tnmPathologyMetastaticStatus; + } + + /** + * Sets the value of the tnmPathologyMetastaticStatus property. + * + * @param value + * allowed object is + * {@link TnmPathologyMetastaticStatus } + * + */ + public void setTnmPathologyMetastaticStatus(TnmPathologyMetastaticStatus value) { + this.tnmPathologyMetastaticStatus = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OvarianSlide.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OvarianSlide.java new file mode 100644 index 0000000..81db9a0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/OvarianSlide.java @@ -0,0 +1,39 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "ovarian_slide") +public class OvarianSlide { + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PalisadingNecrosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PalisadingNecrosis.java new file mode 100644 index 0000000..3ada2b9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PalisadingNecrosis.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2841321" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "palisading_necrosis") +public class PalisadingNecrosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2841321"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PathologyReportFileName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PathologyReportFileName.java new file mode 100644 index 0000000..f4208e8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PathologyReportFileName.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PathologyReportFileName { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PathologyReportUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PathologyReportUuid.java new file mode 100644 index 0000000..6926aad --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PathologyReportUuid.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PathologyReportUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Patient.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Patient.java new file mode 100644 index 0000000..69b62f2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Patient.java @@ -0,0 +1,475 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AlternateIdentifiers; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.BcrPatientBarcode; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.BcrPatientUuid; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Gender; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Notes; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.PatientId; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.TissueSourceSite; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}notes" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}alternate_identifiers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}bcr_patient_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}bcr_patient_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}tissue_source_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}patient_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}gender" minOccurs="0"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}day_of_index"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}month_of_index"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}year_of_index"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}days_to_index"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_canonical_check"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}samples"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}hpv_test_results" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "notes", + "additionalStudies", + "alternateIdentifiers", + "bcrPatientBarcode", + "bcrPatientUuid", + "tissueSourceSite", + "patientId", + "gender", + "dayOfIndex", + "monthOfIndex", + "yearOfIndex", + "daysToIndex", + "bcrCanonicalCheck", + "samples", + "hpvTestResults" +}) +@XmlRootElement(name = "patient") +public class Patient { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Notes notes; + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "alternate_identifiers", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AlternateIdentifiers alternateIdentifiers; + @XmlElement(name = "bcr_patient_barcode", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected BcrPatientBarcode bcrPatientBarcode; + @XmlElement(name = "bcr_patient_uuid", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected BcrPatientUuid bcrPatientUuid; + @XmlElement(name = "tissue_source_site", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected TissueSourceSite tissueSourceSite; + @XmlElement(name = "patient_id", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected PatientId patientId; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Gender gender; + @XmlElement(name = "day_of_index", nillable = true) + protected DayOfIndex dayOfIndex; + @XmlElement(name = "month_of_index", nillable = true) + protected MonthOfIndex monthOfIndex; + @XmlElement(name = "year_of_index", nillable = true) + protected YearOfIndex yearOfIndex; + @XmlElement(name = "days_to_index") + protected DaysToIndex daysToIndex; + @XmlElement(name = "bcr_canonical_check", required = true) + protected BcrCanonicalCheck bcrCanonicalCheck; + @XmlElement(required = true) + protected Samples samples; + @XmlElement(name = "hpv_test_results") + protected HpvTestResults hpvTestResults; + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link Notes } + * + */ + public Notes getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link Notes } + * + */ + public void setNotes(Notes value) { + this.notes = value; + } + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the alternateIdentifiers property. + * + * @return + * possible object is + * {@link AlternateIdentifiers } + * + */ + public AlternateIdentifiers getAlternateIdentifiers() { + return alternateIdentifiers; + } + + /** + * Sets the value of the alternateIdentifiers property. + * + * @param value + * allowed object is + * {@link AlternateIdentifiers } + * + */ + public void setAlternateIdentifiers(AlternateIdentifiers value) { + this.alternateIdentifiers = value; + } + + /** + * Gets the value of the bcrPatientBarcode property. + * + * @return + * possible object is + * {@link BcrPatientBarcode } + * + */ + public BcrPatientBarcode getBcrPatientBarcode() { + return bcrPatientBarcode; + } + + /** + * Sets the value of the bcrPatientBarcode property. + * + * @param value + * allowed object is + * {@link BcrPatientBarcode } + * + */ + public void setBcrPatientBarcode(BcrPatientBarcode value) { + this.bcrPatientBarcode = value; + } + + /** + * Gets the value of the bcrPatientUuid property. + * + * @return + * possible object is + * {@link BcrPatientUuid } + * + */ + public BcrPatientUuid getBcrPatientUuid() { + return bcrPatientUuid; + } + + /** + * Sets the value of the bcrPatientUuid property. + * + * @param value + * allowed object is + * {@link BcrPatientUuid } + * + */ + public void setBcrPatientUuid(BcrPatientUuid value) { + this.bcrPatientUuid = value; + } + + /** + * Gets the value of the tissueSourceSite property. + * + * @return + * possible object is + * {@link TissueSourceSite } + * + */ + public TissueSourceSite getTissueSourceSite() { + return tissueSourceSite; + } + + /** + * Sets the value of the tissueSourceSite property. + * + * @param value + * allowed object is + * {@link TissueSourceSite } + * + */ + public void setTissueSourceSite(TissueSourceSite value) { + this.tissueSourceSite = value; + } + + /** + * Gets the value of the patientId property. + * + * @return + * possible object is + * {@link PatientId } + * + */ + public PatientId getPatientId() { + return patientId; + } + + /** + * Sets the value of the patientId property. + * + * @param value + * allowed object is + * {@link PatientId } + * + */ + public void setPatientId(PatientId value) { + this.patientId = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link Gender } + * + */ + public Gender getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link Gender } + * + */ + public void setGender(Gender value) { + this.gender = value; + } + + /** + * Gets the value of the dayOfIndex property. + * + * @return + * possible object is + * {@link DayOfIndex } + * + */ + public DayOfIndex getDayOfIndex() { + return dayOfIndex; + } + + /** + * Sets the value of the dayOfIndex property. + * + * @param value + * allowed object is + * {@link DayOfIndex } + * + */ + public void setDayOfIndex(DayOfIndex value) { + this.dayOfIndex = value; + } + + /** + * Gets the value of the monthOfIndex property. + * + * @return + * possible object is + * {@link MonthOfIndex } + * + */ + public MonthOfIndex getMonthOfIndex() { + return monthOfIndex; + } + + /** + * Sets the value of the monthOfIndex property. + * + * @param value + * allowed object is + * {@link MonthOfIndex } + * + */ + public void setMonthOfIndex(MonthOfIndex value) { + this.monthOfIndex = value; + } + + /** + * Gets the value of the yearOfIndex property. + * + * @return + * possible object is + * {@link YearOfIndex } + * + */ + public YearOfIndex getYearOfIndex() { + return yearOfIndex; + } + + /** + * Sets the value of the yearOfIndex property. + * + * @param value + * allowed object is + * {@link YearOfIndex } + * + */ + public void setYearOfIndex(YearOfIndex value) { + this.yearOfIndex = value; + } + + /** + * Gets the value of the daysToIndex property. + * + * @return + * possible object is + * {@link DaysToIndex } + * + */ + public DaysToIndex getDaysToIndex() { + return daysToIndex; + } + + /** + * Sets the value of the daysToIndex property. + * + * @param value + * allowed object is + * {@link DaysToIndex } + * + */ + public void setDaysToIndex(DaysToIndex value) { + this.daysToIndex = value; + } + + /** + * Gets the value of the bcrCanonicalCheck property. + * + * @return + * possible object is + * {@link BcrCanonicalCheck } + * + */ + public BcrCanonicalCheck getBcrCanonicalCheck() { + return bcrCanonicalCheck; + } + + /** + * Sets the value of the bcrCanonicalCheck property. + * + * @param value + * allowed object is + * {@link BcrCanonicalCheck } + * + */ + public void setBcrCanonicalCheck(BcrCanonicalCheck value) { + this.bcrCanonicalCheck = value; + } + + /** + * Gets the value of the samples property. + * + * @return + * possible object is + * {@link Samples } + * + */ + public Samples getSamples() { + return samples; + } + + /** + * Sets the value of the samples property. + * + * @param value + * allowed object is + * {@link Samples } + * + */ + public void setSamples(Samples value) { + this.samples = value; + } + + /** + * Gets the value of the hpvTestResults property. + * + * @return + * possible object is + * {@link HpvTestResults } + * + */ + public HpvTestResults getHpvTestResults() { + return hpvTestResults; + } + + /** + * Sets the value of the hpvTestResults property. + * + * @param value + * allowed object is + * {@link HpvTestResults } + * + */ + public void setHpvTestResults(HpvTestResults value) { + this.hpvTestResults = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PcrAmplificationSuccessful.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PcrAmplificationSuccessful.java new file mode 100644 index 0000000..9af106e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PcrAmplificationSuccessful.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "pcr_amplification_successful") +public class PcrAmplificationSuccessful + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentEosinophilInfiltration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentEosinophilInfiltration.java new file mode 100644 index 0000000..5d7f3ca --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentEosinophilInfiltration.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_eosinophil_infiltration") +public class PercentEosinophilInfiltration + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentGranulocyteInfiltration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentGranulocyteInfiltration.java new file mode 100644 index 0000000..ce13458 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentGranulocyteInfiltration.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_granulocyte_infiltration") +public class PercentGranulocyteInfiltration + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentInflamInfiltration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentInflamInfiltration.java new file mode 100644 index 0000000..5b2fb08 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentInflamInfiltration.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_inflam_infiltration") +public class PercentInflamInfiltration + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentLymphocyteInfiltration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentLymphocyteInfiltration.java new file mode 100644 index 0000000..406f425 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentLymphocyteInfiltration.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_lymphocyte_infiltration") +public class PercentLymphocyteInfiltration + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentMonocyteInfiltration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentMonocyteInfiltration.java new file mode 100644 index 0000000..ed815c8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentMonocyteInfiltration.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PercentMonocyteInfiltration + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNecrosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNecrosis.java new file mode 100644 index 0000000..334c8c1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNecrosis.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2841237" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_necrosis") +public class PercentNecrosis + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNeutrophilInfiltration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNeutrophilInfiltration.java new file mode 100644 index 0000000..822d871 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNeutrophilInfiltration.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_neutrophil_infiltration") +public class PercentNeutrophilInfiltration + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNormalCells.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNormalCells.java new file mode 100644 index 0000000..68991d3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentNormalCells.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_normal_cells") +public class PercentNormalCells + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentStromalCells.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentStromalCells.java new file mode 100644 index 0000000..f246b84 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentStromalCells.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_stromal_cells") +public class PercentStromalCells + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentTumorCells.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentTumorCells.java new file mode 100644 index 0000000..20978c6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentTumorCells.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_tumor_cells") +public class PercentTumorCells + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentTumorNuclei.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentTumorNuclei.java new file mode 100644 index 0000000..2e26e07 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PercentTumorNuclei.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2841225" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "percent_tumor_nuclei") +public class PercentTumorNuclei + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateColumn.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateColumn.java new file mode 100644 index 0000000..837ae83 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateColumn.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "plate_column") +public class PlateColumn + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateId.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateId.java new file mode 100644 index 0000000..f9d577b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateId.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "plate_id") +public class PlateId + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateRow.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateRow.java new file mode 100644 index 0000000..e421f07 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PlateRow.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "plate_row") +public class PlateRow + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Portion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Portion.java new file mode 100644 index 0000000..d62af91 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Portion.java @@ -0,0 +1,494 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AlternateIdentifiers; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Notes; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}notes" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}alternate_identifiers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}portion_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}portion_sequence" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}day_of_creation"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}month_of_creation"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}year_of_creation"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}weight"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_portion_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_portion_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}is_ffpe" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_biospecimen_canonical_reasons" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}analytes"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}slides"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}LCE"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "notes", + "additionalStudies", + "alternateIdentifiers", + "portionNumber", + "portionSequence", + "dayOfCreation", + "monthOfCreation", + "yearOfCreation", + "weight", + "bcrPortionBarcode", + "bcrPortionUuid", + "isFfpe", + "bcrBiospecimenCanonicalReasons", + "analytes", + "slides", + "lce" +}) +@XmlRootElement(name = "portion") +public class Portion { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Notes notes; + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "alternate_identifiers", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AlternateIdentifiers alternateIdentifiers; + @XmlElement(name = "portion_number", required = true, nillable = true) + protected PortionNumber portionNumber; + @XmlElement(name = "portion_sequence", nillable = true) + protected PortionSequence portionSequence; + @XmlElement(name = "day_of_creation", required = true) + protected DayOfCreation dayOfCreation; + @XmlElement(name = "month_of_creation", required = true) + protected MonthOfCreation monthOfCreation; + @XmlElement(name = "year_of_creation", required = true) + protected YearOfCreation yearOfCreation; + @XmlElement(required = true) + protected Weight weight; + @XmlElement(name = "bcr_portion_barcode", required = true) + protected BcrPortionBarcode bcrPortionBarcode; + @XmlElement(name = "bcr_portion_uuid", required = true) + protected BcrPortionUuid bcrPortionUuid; + @XmlElement(name = "is_ffpe") + protected IsFfpe isFfpe; + @XmlElement(name = "bcr_biospecimen_canonical_reasons") + protected BcrBiospecimenCanonicalReasons bcrBiospecimenCanonicalReasons; + @XmlElement(required = true) + protected Analytes analytes; + @XmlElement(required = true) + protected Slides slides; + @XmlElement(name = "LCE", required = true) + protected LCE lce; + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link Notes } + * + */ + public Notes getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link Notes } + * + */ + public void setNotes(Notes value) { + this.notes = value; + } + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the alternateIdentifiers property. + * + * @return + * possible object is + * {@link AlternateIdentifiers } + * + */ + public AlternateIdentifiers getAlternateIdentifiers() { + return alternateIdentifiers; + } + + /** + * Sets the value of the alternateIdentifiers property. + * + * @param value + * allowed object is + * {@link AlternateIdentifiers } + * + */ + public void setAlternateIdentifiers(AlternateIdentifiers value) { + this.alternateIdentifiers = value; + } + + /** + * Gets the value of the portionNumber property. + * + * @return + * possible object is + * {@link PortionNumber } + * + */ + public PortionNumber getPortionNumber() { + return portionNumber; + } + + /** + * Sets the value of the portionNumber property. + * + * @param value + * allowed object is + * {@link PortionNumber } + * + */ + public void setPortionNumber(PortionNumber value) { + this.portionNumber = value; + } + + /** + * Gets the value of the portionSequence property. + * + * @return + * possible object is + * {@link PortionSequence } + * + */ + public PortionSequence getPortionSequence() { + return portionSequence; + } + + /** + * Sets the value of the portionSequence property. + * + * @param value + * allowed object is + * {@link PortionSequence } + * + */ + public void setPortionSequence(PortionSequence value) { + this.portionSequence = value; + } + + /** + * Gets the value of the dayOfCreation property. + * + * @return + * possible object is + * {@link DayOfCreation } + * + */ + public DayOfCreation getDayOfCreation() { + return dayOfCreation; + } + + /** + * Sets the value of the dayOfCreation property. + * + * @param value + * allowed object is + * {@link DayOfCreation } + * + */ + public void setDayOfCreation(DayOfCreation value) { + this.dayOfCreation = value; + } + + /** + * Gets the value of the monthOfCreation property. + * + * @return + * possible object is + * {@link MonthOfCreation } + * + */ + public MonthOfCreation getMonthOfCreation() { + return monthOfCreation; + } + + /** + * Sets the value of the monthOfCreation property. + * + * @param value + * allowed object is + * {@link MonthOfCreation } + * + */ + public void setMonthOfCreation(MonthOfCreation value) { + this.monthOfCreation = value; + } + + /** + * Gets the value of the yearOfCreation property. + * + * @return + * possible object is + * {@link YearOfCreation } + * + */ + public YearOfCreation getYearOfCreation() { + return yearOfCreation; + } + + /** + * Sets the value of the yearOfCreation property. + * + * @param value + * allowed object is + * {@link YearOfCreation } + * + */ + public void setYearOfCreation(YearOfCreation value) { + this.yearOfCreation = value; + } + + /** + * Gets the value of the weight property. + * + * @return + * possible object is + * {@link Weight } + * + */ + public Weight getWeight() { + return weight; + } + + /** + * Sets the value of the weight property. + * + * @param value + * allowed object is + * {@link Weight } + * + */ + public void setWeight(Weight value) { + this.weight = value; + } + + /** + * Gets the value of the bcrPortionBarcode property. + * + * @return + * possible object is + * {@link BcrPortionBarcode } + * + */ + public BcrPortionBarcode getBcrPortionBarcode() { + return bcrPortionBarcode; + } + + /** + * Sets the value of the bcrPortionBarcode property. + * + * @param value + * allowed object is + * {@link BcrPortionBarcode } + * + */ + public void setBcrPortionBarcode(BcrPortionBarcode value) { + this.bcrPortionBarcode = value; + } + + /** + * Gets the value of the bcrPortionUuid property. + * + * @return + * possible object is + * {@link BcrPortionUuid } + * + */ + public BcrPortionUuid getBcrPortionUuid() { + return bcrPortionUuid; + } + + /** + * Sets the value of the bcrPortionUuid property. + * + * @param value + * allowed object is + * {@link BcrPortionUuid } + * + */ + public void setBcrPortionUuid(BcrPortionUuid value) { + this.bcrPortionUuid = value; + } + + /** + * Gets the value of the isFfpe property. + * + * @return + * possible object is + * {@link IsFfpe } + * + */ + public IsFfpe getIsFfpe() { + return isFfpe; + } + + /** + * Sets the value of the isFfpe property. + * + * @param value + * allowed object is + * {@link IsFfpe } + * + */ + public void setIsFfpe(IsFfpe value) { + this.isFfpe = value; + } + + /** + * Gets the value of the bcrBiospecimenCanonicalReasons property. + * + * @return + * possible object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public BcrBiospecimenCanonicalReasons getBcrBiospecimenCanonicalReasons() { + return bcrBiospecimenCanonicalReasons; + } + + /** + * Sets the value of the bcrBiospecimenCanonicalReasons property. + * + * @param value + * allowed object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public void setBcrBiospecimenCanonicalReasons(BcrBiospecimenCanonicalReasons value) { + this.bcrBiospecimenCanonicalReasons = value; + } + + /** + * Gets the value of the analytes property. + * + * @return + * possible object is + * {@link Analytes } + * + */ + public Analytes getAnalytes() { + return analytes; + } + + /** + * Sets the value of the analytes property. + * + * @param value + * allowed object is + * {@link Analytes } + * + */ + public void setAnalytes(Analytes value) { + this.analytes = value; + } + + /** + * Gets the value of the slides property. + * + * @return + * possible object is + * {@link Slides } + * + */ + public Slides getSlides() { + return slides; + } + + /** + * Sets the value of the slides property. + * + * @param value + * allowed object is + * {@link Slides } + * + */ + public void setSlides(Slides value) { + this.slides = value; + } + + /** + * Gets the value of the lce property. + * + * @return + * possible object is + * {@link LCE } + * + */ + public LCE getLCE() { + return lce; + } + + /** + * Sets the value of the lce property. + * + * @param value + * allowed object is + * {@link LCE } + * + */ + public void setLCE(LCE value) { + this.lce = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PortionNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PortionNumber.java new file mode 100644 index 0000000..5c47511 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PortionNumber.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PortionNumber { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PortionSequence.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PortionSequence.java new file mode 100644 index 0000000..e3fa01f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PortionSequence.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PortionSequence { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Portions.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Portions.java new file mode 100644 index 0000000..521c118 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Portions.java @@ -0,0 +1,110 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}shipment_portion" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}portion" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "shipmentPortion", + "portion" +}) +@XmlRootElement(name = "portions") +public class Portions { + + @XmlElement(name = "shipment_portion") + protected List shipmentPortion; + protected List portion; + + /** + * Gets the value of the shipmentPortion 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 shipmentPortion property. + * + *

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

+     *    getShipmentPortion().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ShipmentPortion } + * + * + */ + public List getShipmentPortion() { + if (shipmentPortion == null) { + shipmentPortion = new ArrayList(); + } + return this.shipmentPortion; + } + + /** + * Gets the value of the portion 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 portion property. + * + *

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

+     *    getPortion().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Portion } + * + * + */ + public List getPortion() { + if (portion == null) { + portion = new ArrayList(); + } + return this.portion; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PreservationMethod.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PreservationMethod.java new file mode 100644 index 0000000..b98bf89 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PreservationMethod.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PreservationMethod + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PrimaryOrMetastaticStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PrimaryOrMetastaticStatus.java new file mode 100644 index 0000000..72d830d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/PrimaryOrMetastaticStatus.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2673765" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "primary_or_metastatic_status") +public class PrimaryOrMetastaticStatus + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Protocol.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Protocol.java new file mode 100644 index 0000000..129b0fa --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Protocol.java @@ -0,0 +1,90 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import java.io.Serializable; +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.XmlElementRef; +import javax.xml.bind.annotation.XmlElementRefs; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}experimental_protocol_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}protocol_name"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}protocol_file_name"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "content" +}) +public class Protocol { + + @XmlElementRefs({ + @XmlElementRef(name = "experimental_protocol_type", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = JAXBElement.class), + @XmlElementRef(name = "protocol_file_name", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = JAXBElement.class), + @XmlElementRef(name = "protocol_name", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = JAXBElement.class) + }) + @XmlMixed + 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 ExperimentalProtocolType }{@code >} + * {@link JAXBElement }{@code <}{@link ProtocolName }{@code >} + * {@link JAXBElement }{@code <}{@link ProtocolFileName }{@code >} + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ProtocolFileName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ProtocolFileName.java new file mode 100644 index 0000000..d47d40c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ProtocolFileName.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ProtocolFileName + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ProtocolName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ProtocolName.java new file mode 100644 index 0000000..a357ff1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ProtocolName.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ProtocolName + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Protocols.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Protocols.java new file mode 100644 index 0000000..178a732 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Protocols.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}protocol" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "protocol" +}) +@XmlRootElement(name = "protocols") +public class Protocols { + + @XmlElement(nillable = true) + protected List protocol; + + /** + * Gets the value of the protocol 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 protocol property. + * + *

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

+     *    getProtocol().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Protocol } + * + * + */ + public List getProtocol() { + if (protocol == null) { + protocol = new ArrayList(); + } + return this.protocol; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Quantity.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Quantity.java new file mode 100644 index 0000000..ab66a9d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Quantity.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" default="ug" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Quantity { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "ug"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/RadiationType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/RadiationType.java new file mode 100644 index 0000000..621c825 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/RadiationType.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2842944" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "radiation_type") +public class RadiationType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Ratio28S18S.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Ratio28S18S.java new file mode 100644 index 0000000..7129925 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Ratio28S18S.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "ratio_28s_18s") +public class Ratio28S18S { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Rinvalue.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Rinvalue.java new file mode 100644 index 0000000..a12708d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Rinvalue.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "rinvalue") +public class Rinvalue { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Rna.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Rna.java new file mode 100644 index 0000000..fcc8304 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Rna.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}ratio_28s_18s"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}rinvalue"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ratio28S18S", + "rinvalue" +}) +@XmlRootElement(name = "rna") +public class Rna { + + @XmlElement(name = "ratio_28s_18s", required = true) + protected Ratio28S18S ratio28S18S; + @XmlElement(required = true) + protected Rinvalue rinvalue; + + /** + * Gets the value of the ratio28S18S property. + * + * @return + * possible object is + * {@link Ratio28S18S } + * + */ + public Ratio28S18S getRatio28S18S() { + return ratio28S18S; + } + + /** + * Sets the value of the ratio28S18S property. + * + * @param value + * allowed object is + * {@link Ratio28S18S } + * + */ + public void setRatio28S18S(Ratio28S18S value) { + this.ratio28S18S = value; + } + + /** + * Gets the value of the rinvalue property. + * + * @return + * possible object is + * {@link Rinvalue } + * + */ + public Rinvalue getRinvalue() { + return rinvalue; + } + + /** + * Sets the value of the rinvalue property. + * + * @param value + * allowed object is + * {@link Rinvalue } + * + */ + public void setRinvalue(Rinvalue value) { + this.rinvalue = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Sample.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Sample.java new file mode 100644 index 0000000..fd6198b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Sample.java @@ -0,0 +1,1179 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AlternateIdentifiers; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen.shared._2.OtherMethodOfSampleProcurement; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.DayOfSampleProcurement; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.DaysToSampleProcurement; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.MonthOfSampleProcurement; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Notes; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.YearOfSampleProcurement; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}notes" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}alternate_identifiers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}specimen_fraction_ordinal" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}sample_type_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}vial_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}biospecimen_sequence" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}sample_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}longest_dimension"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}intermediate_dimension"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}shortest_dimension"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}initial_weight"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}current_weight"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}freezing_method"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}oct_embedded"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}preservation_method" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tissue_type" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}composition" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tumor_descriptor" minOccurs="0"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}day_of_collection"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}month_of_collection"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}year_of_collection"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}days_to_collection"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}time_between_clamping_and_freezing"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}time_between_excision_and_freezing"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_sample_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_sample_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}is_ffpe" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_biospecimen_canonical_reasons" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}portions"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}tumor_pathology"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}method_of_sample_procurement"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/shared/2.7}other_method_of_sample_procurement" minOccurs="0"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/shared/2.7}day_of_sample_procurement"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/shared/2.7}month_of_sample_procurement"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/shared/2.7}year_of_sample_procurement"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/shared/2.7}days_to_sample_procurement"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}pathology_report_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}pathology_report_file_name" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}diagnostic_slides"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "notes", + "additionalStudies", + "alternateIdentifiers", + "specimenFractionOrdinal", + "sampleTypeId", + "vialNumber", + "biospecimenSequence", + "sampleType", + "longestDimension", + "intermediateDimension", + "shortestDimension", + "initialWeight", + "currentWeight", + "freezingMethod", + "octEmbedded", + "preservationMethod", + "tissueType", + "composition", + "tumorDescriptor", + "dayOfCollection", + "monthOfCollection", + "yearOfCollection", + "daysToCollection", + "timeBetweenClampingAndFreezing", + "timeBetweenExcisionAndFreezing", + "bcrSampleBarcode", + "bcrSampleUuid", + "isFfpe", + "bcrBiospecimenCanonicalReasons", + "portions", + "tumorPathology", + "methodOfSampleProcurement", + "otherMethodOfSampleProcurement", + "dayOfSampleProcurement", + "monthOfSampleProcurement", + "yearOfSampleProcurement", + "daysToSampleProcurement", + "pathologyReportUuid", + "pathologyReportFileName", + "diagnosticSlides" +}) +@XmlRootElement(name = "sample") +public class Sample { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Notes notes; + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "alternate_identifiers", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AlternateIdentifiers alternateIdentifiers; + @XmlElement(name = "specimen_fraction_ordinal", nillable = true) + protected SpecimenFractionOrdinal specimenFractionOrdinal; + @XmlElement(name = "sample_type_id", required = true) + protected SampleTypeId sampleTypeId; + @XmlElement(name = "vial_number", required = true) + protected VialNumber vialNumber; + @XmlElement(name = "biospecimen_sequence", nillable = true) + protected BiospecimenSequence biospecimenSequence; + @XmlElement(name = "sample_type", required = true) + protected SampleType sampleType; + @XmlElement(name = "longest_dimension", required = true) + protected LongestDimension longestDimension; + @XmlElement(name = "intermediate_dimension", required = true) + protected IntermediateDimension intermediateDimension; + @XmlElement(name = "shortest_dimension", required = true) + protected ShortestDimension shortestDimension; + @XmlElement(name = "initial_weight", required = true) + protected InitialWeight initialWeight; + @XmlElement(name = "current_weight", required = true) + protected CurrentWeight currentWeight; + @XmlElement(name = "freezing_method", required = true) + protected FreezingMethod freezingMethod; + @XmlElement(name = "oct_embedded", required = true) + protected OctEmbedded octEmbedded; + @XmlElement(name = "preservation_method", nillable = true) + protected PreservationMethod preservationMethod; + @XmlElement(name = "tissue_type", nillable = true) + protected TissueType tissueType; + @XmlElement(nillable = true) + protected Composition composition; + @XmlElement(name = "tumor_descriptor", nillable = true) + protected TumorDescriptor tumorDescriptor; + @XmlElement(name = "day_of_collection") + protected DayOfCollection dayOfCollection; + @XmlElement(name = "month_of_collection") + protected MonthOfCollection monthOfCollection; + @XmlElement(name = "year_of_collection") + protected YearOfCollection yearOfCollection; + @XmlElement(name = "days_to_collection") + protected DaysToCollection daysToCollection; + @XmlElement(name = "time_between_clamping_and_freezing", required = true) + protected TimeBetweenClampingAndFreezing timeBetweenClampingAndFreezing; + @XmlElement(name = "time_between_excision_and_freezing", required = true) + protected TimeBetweenExcisionAndFreezing timeBetweenExcisionAndFreezing; + @XmlElement(name = "bcr_sample_barcode", required = true) + protected BcrSampleBarcode bcrSampleBarcode; + @XmlElement(name = "bcr_sample_uuid", required = true) + protected BcrSampleUuid bcrSampleUuid; + @XmlElement(name = "is_ffpe") + protected IsFfpe isFfpe; + @XmlElement(name = "bcr_biospecimen_canonical_reasons") + protected BcrBiospecimenCanonicalReasons bcrBiospecimenCanonicalReasons; + @XmlElement(required = true) + protected Portions portions; + @XmlElement(name = "tumor_pathology", required = true) + protected TumorPathology tumorPathology; + @XmlElement(name = "method_of_sample_procurement", required = true) + protected MethodOfSampleProcurement methodOfSampleProcurement; + @XmlElement(name = "other_method_of_sample_procurement", namespace = "http://tcga.nci/bcr/xml/biospecimen/shared/2.7", defaultValue = "", nillable = true) + protected OtherMethodOfSampleProcurement otherMethodOfSampleProcurement; + @XmlElement(name = "day_of_sample_procurement", namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected DayOfSampleProcurement dayOfSampleProcurement; + @XmlElement(name = "month_of_sample_procurement", namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected MonthOfSampleProcurement monthOfSampleProcurement; + @XmlElement(name = "year_of_sample_procurement", namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected YearOfSampleProcurement yearOfSampleProcurement; + @XmlElement(name = "days_to_sample_procurement", namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected DaysToSampleProcurement daysToSampleProcurement; + @XmlElement(name = "pathology_report_uuid", required = true, nillable = true) + protected PathologyReportUuid pathologyReportUuid; + @XmlElement(name = "pathology_report_file_name", nillable = true) + protected PathologyReportFileName pathologyReportFileName; + @XmlElement(name = "diagnostic_slides", required = true) + protected DiagnosticSlides diagnosticSlides; + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link Notes } + * + */ + public Notes getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link Notes } + * + */ + public void setNotes(Notes value) { + this.notes = value; + } + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the alternateIdentifiers property. + * + * @return + * possible object is + * {@link AlternateIdentifiers } + * + */ + public AlternateIdentifiers getAlternateIdentifiers() { + return alternateIdentifiers; + } + + /** + * Sets the value of the alternateIdentifiers property. + * + * @param value + * allowed object is + * {@link AlternateIdentifiers } + * + */ + public void setAlternateIdentifiers(AlternateIdentifiers value) { + this.alternateIdentifiers = value; + } + + /** + * Gets the value of the specimenFractionOrdinal property. + * + * @return + * possible object is + * {@link SpecimenFractionOrdinal } + * + */ + public SpecimenFractionOrdinal getSpecimenFractionOrdinal() { + return specimenFractionOrdinal; + } + + /** + * Sets the value of the specimenFractionOrdinal property. + * + * @param value + * allowed object is + * {@link SpecimenFractionOrdinal } + * + */ + public void setSpecimenFractionOrdinal(SpecimenFractionOrdinal value) { + this.specimenFractionOrdinal = value; + } + + /** + * Gets the value of the sampleTypeId property. + * + * @return + * possible object is + * {@link SampleTypeId } + * + */ + public SampleTypeId getSampleTypeId() { + return sampleTypeId; + } + + /** + * Sets the value of the sampleTypeId property. + * + * @param value + * allowed object is + * {@link SampleTypeId } + * + */ + public void setSampleTypeId(SampleTypeId value) { + this.sampleTypeId = value; + } + + /** + * Gets the value of the vialNumber property. + * + * @return + * possible object is + * {@link VialNumber } + * + */ + public VialNumber getVialNumber() { + return vialNumber; + } + + /** + * Sets the value of the vialNumber property. + * + * @param value + * allowed object is + * {@link VialNumber } + * + */ + public void setVialNumber(VialNumber value) { + this.vialNumber = value; + } + + /** + * Gets the value of the biospecimenSequence property. + * + * @return + * possible object is + * {@link BiospecimenSequence } + * + */ + public BiospecimenSequence getBiospecimenSequence() { + return biospecimenSequence; + } + + /** + * Sets the value of the biospecimenSequence property. + * + * @param value + * allowed object is + * {@link BiospecimenSequence } + * + */ + public void setBiospecimenSequence(BiospecimenSequence value) { + this.biospecimenSequence = value; + } + + /** + * Gets the value of the sampleType property. + * + * @return + * possible object is + * {@link SampleType } + * + */ + public SampleType getSampleType() { + return sampleType; + } + + /** + * Sets the value of the sampleType property. + * + * @param value + * allowed object is + * {@link SampleType } + * + */ + public void setSampleType(SampleType value) { + this.sampleType = value; + } + + /** + * Gets the value of the longestDimension property. + * + * @return + * possible object is + * {@link LongestDimension } + * + */ + public LongestDimension getLongestDimension() { + return longestDimension; + } + + /** + * Sets the value of the longestDimension property. + * + * @param value + * allowed object is + * {@link LongestDimension } + * + */ + public void setLongestDimension(LongestDimension value) { + this.longestDimension = value; + } + + /** + * Gets the value of the intermediateDimension property. + * + * @return + * possible object is + * {@link IntermediateDimension } + * + */ + public IntermediateDimension getIntermediateDimension() { + return intermediateDimension; + } + + /** + * Sets the value of the intermediateDimension property. + * + * @param value + * allowed object is + * {@link IntermediateDimension } + * + */ + public void setIntermediateDimension(IntermediateDimension value) { + this.intermediateDimension = value; + } + + /** + * Gets the value of the shortestDimension property. + * + * @return + * possible object is + * {@link ShortestDimension } + * + */ + public ShortestDimension getShortestDimension() { + return shortestDimension; + } + + /** + * Sets the value of the shortestDimension property. + * + * @param value + * allowed object is + * {@link ShortestDimension } + * + */ + public void setShortestDimension(ShortestDimension value) { + this.shortestDimension = value; + } + + /** + * Gets the value of the initialWeight property. + * + * @return + * possible object is + * {@link InitialWeight } + * + */ + public InitialWeight getInitialWeight() { + return initialWeight; + } + + /** + * Sets the value of the initialWeight property. + * + * @param value + * allowed object is + * {@link InitialWeight } + * + */ + public void setInitialWeight(InitialWeight value) { + this.initialWeight = value; + } + + /** + * Gets the value of the currentWeight property. + * + * @return + * possible object is + * {@link CurrentWeight } + * + */ + public CurrentWeight getCurrentWeight() { + return currentWeight; + } + + /** + * Sets the value of the currentWeight property. + * + * @param value + * allowed object is + * {@link CurrentWeight } + * + */ + public void setCurrentWeight(CurrentWeight value) { + this.currentWeight = value; + } + + /** + * Gets the value of the freezingMethod property. + * + * @return + * possible object is + * {@link FreezingMethod } + * + */ + public FreezingMethod getFreezingMethod() { + return freezingMethod; + } + + /** + * Sets the value of the freezingMethod property. + * + * @param value + * allowed object is + * {@link FreezingMethod } + * + */ + public void setFreezingMethod(FreezingMethod value) { + this.freezingMethod = value; + } + + /** + * Gets the value of the octEmbedded property. + * + * @return + * possible object is + * {@link OctEmbedded } + * + */ + public OctEmbedded getOctEmbedded() { + return octEmbedded; + } + + /** + * Sets the value of the octEmbedded property. + * + * @param value + * allowed object is + * {@link OctEmbedded } + * + */ + public void setOctEmbedded(OctEmbedded value) { + this.octEmbedded = value; + } + + /** + * Gets the value of the preservationMethod property. + * + * @return + * possible object is + * {@link PreservationMethod } + * + */ + public PreservationMethod getPreservationMethod() { + return preservationMethod; + } + + /** + * Sets the value of the preservationMethod property. + * + * @param value + * allowed object is + * {@link PreservationMethod } + * + */ + public void setPreservationMethod(PreservationMethod value) { + this.preservationMethod = value; + } + + /** + * Gets the value of the tissueType property. + * + * @return + * possible object is + * {@link TissueType } + * + */ + public TissueType getTissueType() { + return tissueType; + } + + /** + * Sets the value of the tissueType property. + * + * @param value + * allowed object is + * {@link TissueType } + * + */ + public void setTissueType(TissueType value) { + this.tissueType = value; + } + + /** + * Gets the value of the composition property. + * + * @return + * possible object is + * {@link Composition } + * + */ + public Composition getComposition() { + return composition; + } + + /** + * Sets the value of the composition property. + * + * @param value + * allowed object is + * {@link Composition } + * + */ + public void setComposition(Composition value) { + this.composition = value; + } + + /** + * Gets the value of the tumorDescriptor property. + * + * @return + * possible object is + * {@link TumorDescriptor } + * + */ + public TumorDescriptor getTumorDescriptor() { + return tumorDescriptor; + } + + /** + * Sets the value of the tumorDescriptor property. + * + * @param value + * allowed object is + * {@link TumorDescriptor } + * + */ + public void setTumorDescriptor(TumorDescriptor value) { + this.tumorDescriptor = value; + } + + /** + * Gets the value of the dayOfCollection property. + * + * @return + * possible object is + * {@link DayOfCollection } + * + */ + public DayOfCollection getDayOfCollection() { + return dayOfCollection; + } + + /** + * Sets the value of the dayOfCollection property. + * + * @param value + * allowed object is + * {@link DayOfCollection } + * + */ + public void setDayOfCollection(DayOfCollection value) { + this.dayOfCollection = value; + } + + /** + * Gets the value of the monthOfCollection property. + * + * @return + * possible object is + * {@link MonthOfCollection } + * + */ + public MonthOfCollection getMonthOfCollection() { + return monthOfCollection; + } + + /** + * Sets the value of the monthOfCollection property. + * + * @param value + * allowed object is + * {@link MonthOfCollection } + * + */ + public void setMonthOfCollection(MonthOfCollection value) { + this.monthOfCollection = value; + } + + /** + * Gets the value of the yearOfCollection property. + * + * @return + * possible object is + * {@link YearOfCollection } + * + */ + public YearOfCollection getYearOfCollection() { + return yearOfCollection; + } + + /** + * Sets the value of the yearOfCollection property. + * + * @param value + * allowed object is + * {@link YearOfCollection } + * + */ + public void setYearOfCollection(YearOfCollection value) { + this.yearOfCollection = value; + } + + /** + * Gets the value of the daysToCollection property. + * + * @return + * possible object is + * {@link DaysToCollection } + * + */ + public DaysToCollection getDaysToCollection() { + return daysToCollection; + } + + /** + * Sets the value of the daysToCollection property. + * + * @param value + * allowed object is + * {@link DaysToCollection } + * + */ + public void setDaysToCollection(DaysToCollection value) { + this.daysToCollection = value; + } + + /** + * Gets the value of the timeBetweenClampingAndFreezing property. + * + * @return + * possible object is + * {@link TimeBetweenClampingAndFreezing } + * + */ + public TimeBetweenClampingAndFreezing getTimeBetweenClampingAndFreezing() { + return timeBetweenClampingAndFreezing; + } + + /** + * Sets the value of the timeBetweenClampingAndFreezing property. + * + * @param value + * allowed object is + * {@link TimeBetweenClampingAndFreezing } + * + */ + public void setTimeBetweenClampingAndFreezing(TimeBetweenClampingAndFreezing value) { + this.timeBetweenClampingAndFreezing = value; + } + + /** + * Gets the value of the timeBetweenExcisionAndFreezing property. + * + * @return + * possible object is + * {@link TimeBetweenExcisionAndFreezing } + * + */ + public TimeBetweenExcisionAndFreezing getTimeBetweenExcisionAndFreezing() { + return timeBetweenExcisionAndFreezing; + } + + /** + * Sets the value of the timeBetweenExcisionAndFreezing property. + * + * @param value + * allowed object is + * {@link TimeBetweenExcisionAndFreezing } + * + */ + public void setTimeBetweenExcisionAndFreezing(TimeBetweenExcisionAndFreezing value) { + this.timeBetweenExcisionAndFreezing = value; + } + + /** + * Gets the value of the bcrSampleBarcode property. + * + * @return + * possible object is + * {@link BcrSampleBarcode } + * + */ + public BcrSampleBarcode getBcrSampleBarcode() { + return bcrSampleBarcode; + } + + /** + * Sets the value of the bcrSampleBarcode property. + * + * @param value + * allowed object is + * {@link BcrSampleBarcode } + * + */ + public void setBcrSampleBarcode(BcrSampleBarcode value) { + this.bcrSampleBarcode = value; + } + + /** + * Gets the value of the bcrSampleUuid property. + * + * @return + * possible object is + * {@link BcrSampleUuid } + * + */ + public BcrSampleUuid getBcrSampleUuid() { + return bcrSampleUuid; + } + + /** + * Sets the value of the bcrSampleUuid property. + * + * @param value + * allowed object is + * {@link BcrSampleUuid } + * + */ + public void setBcrSampleUuid(BcrSampleUuid value) { + this.bcrSampleUuid = value; + } + + /** + * Gets the value of the isFfpe property. + * + * @return + * possible object is + * {@link IsFfpe } + * + */ + public IsFfpe getIsFfpe() { + return isFfpe; + } + + /** + * Sets the value of the isFfpe property. + * + * @param value + * allowed object is + * {@link IsFfpe } + * + */ + public void setIsFfpe(IsFfpe value) { + this.isFfpe = value; + } + + /** + * Gets the value of the bcrBiospecimenCanonicalReasons property. + * + * @return + * possible object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public BcrBiospecimenCanonicalReasons getBcrBiospecimenCanonicalReasons() { + return bcrBiospecimenCanonicalReasons; + } + + /** + * Sets the value of the bcrBiospecimenCanonicalReasons property. + * + * @param value + * allowed object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public void setBcrBiospecimenCanonicalReasons(BcrBiospecimenCanonicalReasons value) { + this.bcrBiospecimenCanonicalReasons = value; + } + + /** + * Gets the value of the portions property. + * + * @return + * possible object is + * {@link Portions } + * + */ + public Portions getPortions() { + return portions; + } + + /** + * Sets the value of the portions property. + * + * @param value + * allowed object is + * {@link Portions } + * + */ + public void setPortions(Portions value) { + this.portions = value; + } + + /** + * Gets the value of the tumorPathology property. + * + * @return + * possible object is + * {@link TumorPathology } + * + */ + public TumorPathology getTumorPathology() { + return tumorPathology; + } + + /** + * Sets the value of the tumorPathology property. + * + * @param value + * allowed object is + * {@link TumorPathology } + * + */ + public void setTumorPathology(TumorPathology value) { + this.tumorPathology = value; + } + + /** + * Gets the value of the methodOfSampleProcurement property. + * + * @return + * possible object is + * {@link MethodOfSampleProcurement } + * + */ + public MethodOfSampleProcurement getMethodOfSampleProcurement() { + return methodOfSampleProcurement; + } + + /** + * Sets the value of the methodOfSampleProcurement property. + * + * @param value + * allowed object is + * {@link MethodOfSampleProcurement } + * + */ + public void setMethodOfSampleProcurement(MethodOfSampleProcurement value) { + this.methodOfSampleProcurement = value; + } + + /** + * Gets the value of the otherMethodOfSampleProcurement property. + * + * @return + * possible object is + * {@link OtherMethodOfSampleProcurement } + * + */ + public OtherMethodOfSampleProcurement getOtherMethodOfSampleProcurement() { + return otherMethodOfSampleProcurement; + } + + /** + * Sets the value of the otherMethodOfSampleProcurement property. + * + * @param value + * allowed object is + * {@link OtherMethodOfSampleProcurement } + * + */ + public void setOtherMethodOfSampleProcurement(OtherMethodOfSampleProcurement value) { + this.otherMethodOfSampleProcurement = value; + } + + /** + * Gets the value of the dayOfSampleProcurement property. + * + * @return + * possible object is + * {@link DayOfSampleProcurement } + * + */ + public DayOfSampleProcurement getDayOfSampleProcurement() { + return dayOfSampleProcurement; + } + + /** + * Sets the value of the dayOfSampleProcurement property. + * + * @param value + * allowed object is + * {@link DayOfSampleProcurement } + * + */ + public void setDayOfSampleProcurement(DayOfSampleProcurement value) { + this.dayOfSampleProcurement = value; + } + + /** + * Gets the value of the monthOfSampleProcurement property. + * + * @return + * possible object is + * {@link MonthOfSampleProcurement } + * + */ + public MonthOfSampleProcurement getMonthOfSampleProcurement() { + return monthOfSampleProcurement; + } + + /** + * Sets the value of the monthOfSampleProcurement property. + * + * @param value + * allowed object is + * {@link MonthOfSampleProcurement } + * + */ + public void setMonthOfSampleProcurement(MonthOfSampleProcurement value) { + this.monthOfSampleProcurement = value; + } + + /** + * Gets the value of the yearOfSampleProcurement property. + * + * @return + * possible object is + * {@link YearOfSampleProcurement } + * + */ + public YearOfSampleProcurement getYearOfSampleProcurement() { + return yearOfSampleProcurement; + } + + /** + * Sets the value of the yearOfSampleProcurement property. + * + * @param value + * allowed object is + * {@link YearOfSampleProcurement } + * + */ + public void setYearOfSampleProcurement(YearOfSampleProcurement value) { + this.yearOfSampleProcurement = value; + } + + /** + * Gets the value of the daysToSampleProcurement property. + * + * @return + * possible object is + * {@link DaysToSampleProcurement } + * + */ + public DaysToSampleProcurement getDaysToSampleProcurement() { + return daysToSampleProcurement; + } + + /** + * Sets the value of the daysToSampleProcurement property. + * + * @param value + * allowed object is + * {@link DaysToSampleProcurement } + * + */ + public void setDaysToSampleProcurement(DaysToSampleProcurement value) { + this.daysToSampleProcurement = value; + } + + /** + * Gets the value of the pathologyReportUuid property. + * + * @return + * possible object is + * {@link PathologyReportUuid } + * + */ + public PathologyReportUuid getPathologyReportUuid() { + return pathologyReportUuid; + } + + /** + * Sets the value of the pathologyReportUuid property. + * + * @param value + * allowed object is + * {@link PathologyReportUuid } + * + */ + public void setPathologyReportUuid(PathologyReportUuid value) { + this.pathologyReportUuid = value; + } + + /** + * Gets the value of the pathologyReportFileName property. + * + * @return + * possible object is + * {@link PathologyReportFileName } + * + */ + public PathologyReportFileName getPathologyReportFileName() { + return pathologyReportFileName; + } + + /** + * Sets the value of the pathologyReportFileName property. + * + * @param value + * allowed object is + * {@link PathologyReportFileName } + * + */ + public void setPathologyReportFileName(PathologyReportFileName value) { + this.pathologyReportFileName = value; + } + + /** + * Gets the value of the diagnosticSlides property. + * + * @return + * possible object is + * {@link DiagnosticSlides } + * + */ + public DiagnosticSlides getDiagnosticSlides() { + return diagnosticSlides; + } + + /** + * Sets the value of the diagnosticSlides property. + * + * @param value + * allowed object is + * {@link DiagnosticSlides } + * + */ + public void setDiagnosticSlides(DiagnosticSlides value) { + this.diagnosticSlides = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SampleType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SampleType.java new file mode 100644 index 0000000..a1e4dc9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SampleType.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "sample_type") +public class SampleType + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SampleTypeId.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SampleTypeId.java new file mode 100644 index 0000000..db8833e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SampleTypeId.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "sample_type_id") +public class SampleTypeId + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Samples.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Samples.java new file mode 100644 index 0000000..1c90fe3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Samples.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}sample" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "sample" +}) +@XmlRootElement(name = "samples") +public class Samples { + + @XmlElement(required = true) + protected List sample; + + /** + * Gets the value of the sample 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 sample property. + * + *

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

+     *    getSample().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Sample } + * + * + */ + public List getSample() { + if (sample == null) { + sample = new ArrayList(); + } + return this.sample; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SectionLocation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SectionLocation.java new file mode 100644 index 0000000..400b7f2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SectionLocation.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "section_location") +public class SectionLocation + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortion.java new file mode 100644 index 0000000..ae36595 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortion.java @@ -0,0 +1,438 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AlternateIdentifiers; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Notes; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}notes" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}alternate_identifiers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}portion_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}portion_sequence" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}plate_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}center_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}shipment_portion_day_of_shipment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}shipment_portion_month_of_shipment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}shipment_portion_year_of_shipment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}shipment_portion_bcr_aliquot_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_shipment_portion_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}is_ffpe" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_biospecimen_canonical_reasons" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "notes", + "additionalStudies", + "alternateIdentifiers", + "portionNumber", + "portionSequence", + "plateId", + "centerId", + "shipmentPortionDayOfShipment", + "shipmentPortionMonthOfShipment", + "shipmentPortionYearOfShipment", + "shipmentPortionBcrAliquotBarcode", + "bcrShipmentPortionUuid", + "isFfpe", + "bcrBiospecimenCanonicalReasons" +}) +@XmlRootElement(name = "shipment_portion") +public class ShipmentPortion { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Notes notes; + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "alternate_identifiers", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AlternateIdentifiers alternateIdentifiers; + @XmlElement(name = "portion_number", required = true, nillable = true) + protected PortionNumber portionNumber; + @XmlElement(name = "portion_sequence", nillable = true) + protected PortionSequence portionSequence; + @XmlElement(name = "plate_id", required = true) + protected PlateId plateId; + @XmlElement(name = "center_id", required = true) + protected CenterId centerId; + @XmlElement(name = "shipment_portion_day_of_shipment", required = true) + protected ShipmentPortionDayOfShipment shipmentPortionDayOfShipment; + @XmlElement(name = "shipment_portion_month_of_shipment", required = true) + protected ShipmentPortionMonthOfShipment shipmentPortionMonthOfShipment; + @XmlElement(name = "shipment_portion_year_of_shipment", required = true) + protected ShipmentPortionYearOfShipment shipmentPortionYearOfShipment; + @XmlElement(name = "shipment_portion_bcr_aliquot_barcode", required = true) + protected ShipmentPortionBcrAliquotBarcode shipmentPortionBcrAliquotBarcode; + @XmlElement(name = "bcr_shipment_portion_uuid", required = true, nillable = true) + protected BcrShipmentPortionUuid bcrShipmentPortionUuid; + @XmlElement(name = "is_ffpe") + protected IsFfpe isFfpe; + @XmlElement(name = "bcr_biospecimen_canonical_reasons") + protected BcrBiospecimenCanonicalReasons bcrBiospecimenCanonicalReasons; + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link Notes } + * + */ + public Notes getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link Notes } + * + */ + public void setNotes(Notes value) { + this.notes = value; + } + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the alternateIdentifiers property. + * + * @return + * possible object is + * {@link AlternateIdentifiers } + * + */ + public AlternateIdentifiers getAlternateIdentifiers() { + return alternateIdentifiers; + } + + /** + * Sets the value of the alternateIdentifiers property. + * + * @param value + * allowed object is + * {@link AlternateIdentifiers } + * + */ + public void setAlternateIdentifiers(AlternateIdentifiers value) { + this.alternateIdentifiers = value; + } + + /** + * Gets the value of the portionNumber property. + * + * @return + * possible object is + * {@link PortionNumber } + * + */ + public PortionNumber getPortionNumber() { + return portionNumber; + } + + /** + * Sets the value of the portionNumber property. + * + * @param value + * allowed object is + * {@link PortionNumber } + * + */ + public void setPortionNumber(PortionNumber value) { + this.portionNumber = value; + } + + /** + * Gets the value of the portionSequence property. + * + * @return + * possible object is + * {@link PortionSequence } + * + */ + public PortionSequence getPortionSequence() { + return portionSequence; + } + + /** + * Sets the value of the portionSequence property. + * + * @param value + * allowed object is + * {@link PortionSequence } + * + */ + public void setPortionSequence(PortionSequence value) { + this.portionSequence = value; + } + + /** + * Gets the value of the plateId property. + * + * @return + * possible object is + * {@link PlateId } + * + */ + public PlateId getPlateId() { + return plateId; + } + + /** + * Sets the value of the plateId property. + * + * @param value + * allowed object is + * {@link PlateId } + * + */ + public void setPlateId(PlateId value) { + this.plateId = value; + } + + /** + * Gets the value of the centerId property. + * + * @return + * possible object is + * {@link CenterId } + * + */ + public CenterId getCenterId() { + return centerId; + } + + /** + * Sets the value of the centerId property. + * + * @param value + * allowed object is + * {@link CenterId } + * + */ + public void setCenterId(CenterId value) { + this.centerId = value; + } + + /** + * Gets the value of the shipmentPortionDayOfShipment property. + * + * @return + * possible object is + * {@link ShipmentPortionDayOfShipment } + * + */ + public ShipmentPortionDayOfShipment getShipmentPortionDayOfShipment() { + return shipmentPortionDayOfShipment; + } + + /** + * Sets the value of the shipmentPortionDayOfShipment property. + * + * @param value + * allowed object is + * {@link ShipmentPortionDayOfShipment } + * + */ + public void setShipmentPortionDayOfShipment(ShipmentPortionDayOfShipment value) { + this.shipmentPortionDayOfShipment = value; + } + + /** + * Gets the value of the shipmentPortionMonthOfShipment property. + * + * @return + * possible object is + * {@link ShipmentPortionMonthOfShipment } + * + */ + public ShipmentPortionMonthOfShipment getShipmentPortionMonthOfShipment() { + return shipmentPortionMonthOfShipment; + } + + /** + * Sets the value of the shipmentPortionMonthOfShipment property. + * + * @param value + * allowed object is + * {@link ShipmentPortionMonthOfShipment } + * + */ + public void setShipmentPortionMonthOfShipment(ShipmentPortionMonthOfShipment value) { + this.shipmentPortionMonthOfShipment = value; + } + + /** + * Gets the value of the shipmentPortionYearOfShipment property. + * + * @return + * possible object is + * {@link ShipmentPortionYearOfShipment } + * + */ + public ShipmentPortionYearOfShipment getShipmentPortionYearOfShipment() { + return shipmentPortionYearOfShipment; + } + + /** + * Sets the value of the shipmentPortionYearOfShipment property. + * + * @param value + * allowed object is + * {@link ShipmentPortionYearOfShipment } + * + */ + public void setShipmentPortionYearOfShipment(ShipmentPortionYearOfShipment value) { + this.shipmentPortionYearOfShipment = value; + } + + /** + * Gets the value of the shipmentPortionBcrAliquotBarcode property. + * + * @return + * possible object is + * {@link ShipmentPortionBcrAliquotBarcode } + * + */ + public ShipmentPortionBcrAliquotBarcode getShipmentPortionBcrAliquotBarcode() { + return shipmentPortionBcrAliquotBarcode; + } + + /** + * Sets the value of the shipmentPortionBcrAliquotBarcode property. + * + * @param value + * allowed object is + * {@link ShipmentPortionBcrAliquotBarcode } + * + */ + public void setShipmentPortionBcrAliquotBarcode(ShipmentPortionBcrAliquotBarcode value) { + this.shipmentPortionBcrAliquotBarcode = value; + } + + /** + * Gets the value of the bcrShipmentPortionUuid property. + * + * @return + * possible object is + * {@link BcrShipmentPortionUuid } + * + */ + public BcrShipmentPortionUuid getBcrShipmentPortionUuid() { + return bcrShipmentPortionUuid; + } + + /** + * Sets the value of the bcrShipmentPortionUuid property. + * + * @param value + * allowed object is + * {@link BcrShipmentPortionUuid } + * + */ + public void setBcrShipmentPortionUuid(BcrShipmentPortionUuid value) { + this.bcrShipmentPortionUuid = value; + } + + /** + * Gets the value of the isFfpe property. + * + * @return + * possible object is + * {@link IsFfpe } + * + */ + public IsFfpe getIsFfpe() { + return isFfpe; + } + + /** + * Sets the value of the isFfpe property. + * + * @param value + * allowed object is + * {@link IsFfpe } + * + */ + public void setIsFfpe(IsFfpe value) { + this.isFfpe = value; + } + + /** + * Gets the value of the bcrBiospecimenCanonicalReasons property. + * + * @return + * possible object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public BcrBiospecimenCanonicalReasons getBcrBiospecimenCanonicalReasons() { + return bcrBiospecimenCanonicalReasons; + } + + /** + * Sets the value of the bcrBiospecimenCanonicalReasons property. + * + * @param value + * allowed object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public void setBcrBiospecimenCanonicalReasons(BcrBiospecimenCanonicalReasons value) { + this.bcrBiospecimenCanonicalReasons = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionBcrAliquotBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionBcrAliquotBarcode.java new file mode 100644 index 0000000..73f30d2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionBcrAliquotBarcode.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "shipment_portion_bcr_aliquot_barcode") +public class ShipmentPortionBcrAliquotBarcode { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionDayOfShipment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionDayOfShipment.java new file mode 100644 index 0000000..3ef51c4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionDayOfShipment.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "shipment_portion_day_of_shipment") +public class ShipmentPortionDayOfShipment + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionMonthOfShipment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionMonthOfShipment.java new file mode 100644 index 0000000..85f850a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionMonthOfShipment.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "shipment_portion_month_of_shipment") +public class ShipmentPortionMonthOfShipment + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionYearOfShipment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionYearOfShipment.java new file mode 100644 index 0000000..7406ada --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShipmentPortionYearOfShipment.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "shipment_portion_year_of_shipment") +public class ShipmentPortionYearOfShipment + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShortestDimension.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShortestDimension.java new file mode 100644 index 0000000..34a3833 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/ShortestDimension.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "shortest_dimension") +public class ShortestDimension + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Slide.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Slide.java new file mode 100644 index 0000000..1d12ab6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Slide.java @@ -0,0 +1,664 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AlternateIdentifiers; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.BcrSlideBarcode; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.BcrSlideUuid; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.ImageFileName; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Notes; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}notes" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/administration/2.7}alternate_identifiers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}section_location"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}number_proliferating_cells"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_tumor_cells"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_tumor_nuclei"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_normal_cells"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_necrosis"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_stromal_cells"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_inflam_infiltration"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_lymphocyte_infiltration"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_monocyte_infiltration"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_granulocyte_infiltration"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_neutrophil_infiltration"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}percent_eosinophil_infiltration"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}bcr_slide_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}bcr_slide_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}image_file_name" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}is_derived_from_ffpe" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}bcr_biospecimen_canonical_reasons" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}type" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "notes", + "additionalStudies", + "alternateIdentifiers", + "sectionLocation", + "numberProliferatingCells", + "percentTumorCells", + "percentTumorNuclei", + "percentNormalCells", + "percentNecrosis", + "percentStromalCells", + "percentInflamInfiltration", + "percentLymphocyteInfiltration", + "percentMonocyteInfiltration", + "percentGranulocyteInfiltration", + "percentNeutrophilInfiltration", + "percentEosinophilInfiltration", + "bcrSlideBarcode", + "bcrSlideUuid", + "imageFileName", + "isDerivedFromFfpe", + "bcrBiospecimenCanonicalReasons", + "type" +}) +@XmlRootElement(name = "slide") +public class Slide { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7") + protected Notes notes; + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "alternate_identifiers", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AlternateIdentifiers alternateIdentifiers; + @XmlElement(name = "section_location", required = true) + protected SectionLocation sectionLocation; + @XmlElement(name = "number_proliferating_cells", required = true) + protected NumberProliferatingCells numberProliferatingCells; + @XmlElement(name = "percent_tumor_cells", required = true) + protected PercentTumorCells percentTumorCells; + @XmlElement(name = "percent_tumor_nuclei", required = true) + protected PercentTumorNuclei percentTumorNuclei; + @XmlElement(name = "percent_normal_cells", required = true) + protected PercentNormalCells percentNormalCells; + @XmlElement(name = "percent_necrosis", required = true) + protected PercentNecrosis percentNecrosis; + @XmlElement(name = "percent_stromal_cells", required = true) + protected PercentStromalCells percentStromalCells; + @XmlElement(name = "percent_inflam_infiltration", required = true) + protected PercentInflamInfiltration percentInflamInfiltration; + @XmlElement(name = "percent_lymphocyte_infiltration", required = true) + protected PercentLymphocyteInfiltration percentLymphocyteInfiltration; + @XmlElement(name = "percent_monocyte_infiltration", required = true, nillable = true) + protected PercentMonocyteInfiltration percentMonocyteInfiltration; + @XmlElement(name = "percent_granulocyte_infiltration", required = true) + protected PercentGranulocyteInfiltration percentGranulocyteInfiltration; + @XmlElement(name = "percent_neutrophil_infiltration", required = true) + protected PercentNeutrophilInfiltration percentNeutrophilInfiltration; + @XmlElement(name = "percent_eosinophil_infiltration", required = true) + protected PercentEosinophilInfiltration percentEosinophilInfiltration; + @XmlElement(name = "bcr_slide_barcode", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected BcrSlideBarcode bcrSlideBarcode; + @XmlElement(name = "bcr_slide_uuid", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected BcrSlideUuid bcrSlideUuid; + @XmlElement(name = "image_file_name", namespace = "http://tcga.nci/bcr/xml/shared/2.7", nillable = true) + protected ImageFileName imageFileName; + @XmlElement(name = "is_derived_from_ffpe") + protected IsDerivedFromFfpe isDerivedFromFfpe; + @XmlElement(name = "bcr_biospecimen_canonical_reasons") + protected BcrBiospecimenCanonicalReasons bcrBiospecimenCanonicalReasons; + protected Type type; + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link Notes } + * + */ + public Notes getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link Notes } + * + */ + public void setNotes(Notes value) { + this.notes = value; + } + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the alternateIdentifiers property. + * + * @return + * possible object is + * {@link AlternateIdentifiers } + * + */ + public AlternateIdentifiers getAlternateIdentifiers() { + return alternateIdentifiers; + } + + /** + * Sets the value of the alternateIdentifiers property. + * + * @param value + * allowed object is + * {@link AlternateIdentifiers } + * + */ + public void setAlternateIdentifiers(AlternateIdentifiers value) { + this.alternateIdentifiers = value; + } + + /** + * Gets the value of the sectionLocation property. + * + * @return + * possible object is + * {@link SectionLocation } + * + */ + public SectionLocation getSectionLocation() { + return sectionLocation; + } + + /** + * Sets the value of the sectionLocation property. + * + * @param value + * allowed object is + * {@link SectionLocation } + * + */ + public void setSectionLocation(SectionLocation value) { + this.sectionLocation = value; + } + + /** + * Gets the value of the numberProliferatingCells property. + * + * @return + * possible object is + * {@link NumberProliferatingCells } + * + */ + public NumberProliferatingCells getNumberProliferatingCells() { + return numberProliferatingCells; + } + + /** + * Sets the value of the numberProliferatingCells property. + * + * @param value + * allowed object is + * {@link NumberProliferatingCells } + * + */ + public void setNumberProliferatingCells(NumberProliferatingCells value) { + this.numberProliferatingCells = value; + } + + /** + * Gets the value of the percentTumorCells property. + * + * @return + * possible object is + * {@link PercentTumorCells } + * + */ + public PercentTumorCells getPercentTumorCells() { + return percentTumorCells; + } + + /** + * Sets the value of the percentTumorCells property. + * + * @param value + * allowed object is + * {@link PercentTumorCells } + * + */ + public void setPercentTumorCells(PercentTumorCells value) { + this.percentTumorCells = value; + } + + /** + * Gets the value of the percentTumorNuclei property. + * + * @return + * possible object is + * {@link PercentTumorNuclei } + * + */ + public PercentTumorNuclei getPercentTumorNuclei() { + return percentTumorNuclei; + } + + /** + * Sets the value of the percentTumorNuclei property. + * + * @param value + * allowed object is + * {@link PercentTumorNuclei } + * + */ + public void setPercentTumorNuclei(PercentTumorNuclei value) { + this.percentTumorNuclei = value; + } + + /** + * Gets the value of the percentNormalCells property. + * + * @return + * possible object is + * {@link PercentNormalCells } + * + */ + public PercentNormalCells getPercentNormalCells() { + return percentNormalCells; + } + + /** + * Sets the value of the percentNormalCells property. + * + * @param value + * allowed object is + * {@link PercentNormalCells } + * + */ + public void setPercentNormalCells(PercentNormalCells value) { + this.percentNormalCells = value; + } + + /** + * Gets the value of the percentNecrosis property. + * + * @return + * possible object is + * {@link PercentNecrosis } + * + */ + public PercentNecrosis getPercentNecrosis() { + return percentNecrosis; + } + + /** + * Sets the value of the percentNecrosis property. + * + * @param value + * allowed object is + * {@link PercentNecrosis } + * + */ + public void setPercentNecrosis(PercentNecrosis value) { + this.percentNecrosis = value; + } + + /** + * Gets the value of the percentStromalCells property. + * + * @return + * possible object is + * {@link PercentStromalCells } + * + */ + public PercentStromalCells getPercentStromalCells() { + return percentStromalCells; + } + + /** + * Sets the value of the percentStromalCells property. + * + * @param value + * allowed object is + * {@link PercentStromalCells } + * + */ + public void setPercentStromalCells(PercentStromalCells value) { + this.percentStromalCells = value; + } + + /** + * Gets the value of the percentInflamInfiltration property. + * + * @return + * possible object is + * {@link PercentInflamInfiltration } + * + */ + public PercentInflamInfiltration getPercentInflamInfiltration() { + return percentInflamInfiltration; + } + + /** + * Sets the value of the percentInflamInfiltration property. + * + * @param value + * allowed object is + * {@link PercentInflamInfiltration } + * + */ + public void setPercentInflamInfiltration(PercentInflamInfiltration value) { + this.percentInflamInfiltration = value; + } + + /** + * Gets the value of the percentLymphocyteInfiltration property. + * + * @return + * possible object is + * {@link PercentLymphocyteInfiltration } + * + */ + public PercentLymphocyteInfiltration getPercentLymphocyteInfiltration() { + return percentLymphocyteInfiltration; + } + + /** + * Sets the value of the percentLymphocyteInfiltration property. + * + * @param value + * allowed object is + * {@link PercentLymphocyteInfiltration } + * + */ + public void setPercentLymphocyteInfiltration(PercentLymphocyteInfiltration value) { + this.percentLymphocyteInfiltration = value; + } + + /** + * Gets the value of the percentMonocyteInfiltration property. + * + * @return + * possible object is + * {@link PercentMonocyteInfiltration } + * + */ + public PercentMonocyteInfiltration getPercentMonocyteInfiltration() { + return percentMonocyteInfiltration; + } + + /** + * Sets the value of the percentMonocyteInfiltration property. + * + * @param value + * allowed object is + * {@link PercentMonocyteInfiltration } + * + */ + public void setPercentMonocyteInfiltration(PercentMonocyteInfiltration value) { + this.percentMonocyteInfiltration = value; + } + + /** + * Gets the value of the percentGranulocyteInfiltration property. + * + * @return + * possible object is + * {@link PercentGranulocyteInfiltration } + * + */ + public PercentGranulocyteInfiltration getPercentGranulocyteInfiltration() { + return percentGranulocyteInfiltration; + } + + /** + * Sets the value of the percentGranulocyteInfiltration property. + * + * @param value + * allowed object is + * {@link PercentGranulocyteInfiltration } + * + */ + public void setPercentGranulocyteInfiltration(PercentGranulocyteInfiltration value) { + this.percentGranulocyteInfiltration = value; + } + + /** + * Gets the value of the percentNeutrophilInfiltration property. + * + * @return + * possible object is + * {@link PercentNeutrophilInfiltration } + * + */ + public PercentNeutrophilInfiltration getPercentNeutrophilInfiltration() { + return percentNeutrophilInfiltration; + } + + /** + * Sets the value of the percentNeutrophilInfiltration property. + * + * @param value + * allowed object is + * {@link PercentNeutrophilInfiltration } + * + */ + public void setPercentNeutrophilInfiltration(PercentNeutrophilInfiltration value) { + this.percentNeutrophilInfiltration = value; + } + + /** + * Gets the value of the percentEosinophilInfiltration property. + * + * @return + * possible object is + * {@link PercentEosinophilInfiltration } + * + */ + public PercentEosinophilInfiltration getPercentEosinophilInfiltration() { + return percentEosinophilInfiltration; + } + + /** + * Sets the value of the percentEosinophilInfiltration property. + * + * @param value + * allowed object is + * {@link PercentEosinophilInfiltration } + * + */ + public void setPercentEosinophilInfiltration(PercentEosinophilInfiltration value) { + this.percentEosinophilInfiltration = value; + } + + /** + * Gets the value of the bcrSlideBarcode property. + * + * @return + * possible object is + * {@link BcrSlideBarcode } + * + */ + public BcrSlideBarcode getBcrSlideBarcode() { + return bcrSlideBarcode; + } + + /** + * Sets the value of the bcrSlideBarcode property. + * + * @param value + * allowed object is + * {@link BcrSlideBarcode } + * + */ + public void setBcrSlideBarcode(BcrSlideBarcode value) { + this.bcrSlideBarcode = value; + } + + /** + * Gets the value of the bcrSlideUuid property. + * + * @return + * possible object is + * {@link BcrSlideUuid } + * + */ + public BcrSlideUuid getBcrSlideUuid() { + return bcrSlideUuid; + } + + /** + * Sets the value of the bcrSlideUuid property. + * + * @param value + * allowed object is + * {@link BcrSlideUuid } + * + */ + public void setBcrSlideUuid(BcrSlideUuid value) { + this.bcrSlideUuid = value; + } + + /** + * Gets the value of the imageFileName property. + * + * @return + * possible object is + * {@link ImageFileName } + * + */ + public ImageFileName getImageFileName() { + return imageFileName; + } + + /** + * Sets the value of the imageFileName property. + * + * @param value + * allowed object is + * {@link ImageFileName } + * + */ + public void setImageFileName(ImageFileName value) { + this.imageFileName = value; + } + + /** + * Gets the value of the isDerivedFromFfpe property. + * + * @return + * possible object is + * {@link IsDerivedFromFfpe } + * + */ + public IsDerivedFromFfpe getIsDerivedFromFfpe() { + return isDerivedFromFfpe; + } + + /** + * Sets the value of the isDerivedFromFfpe property. + * + * @param value + * allowed object is + * {@link IsDerivedFromFfpe } + * + */ + public void setIsDerivedFromFfpe(IsDerivedFromFfpe value) { + this.isDerivedFromFfpe = value; + } + + /** + * Gets the value of the bcrBiospecimenCanonicalReasons property. + * + * @return + * possible object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public BcrBiospecimenCanonicalReasons getBcrBiospecimenCanonicalReasons() { + return bcrBiospecimenCanonicalReasons; + } + + /** + * Sets the value of the bcrBiospecimenCanonicalReasons property. + * + * @param value + * allowed object is + * {@link BcrBiospecimenCanonicalReasons } + * + */ + public void setBcrBiospecimenCanonicalReasons(BcrBiospecimenCanonicalReasons value) { + this.bcrBiospecimenCanonicalReasons = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link Type } + * + */ + public Type getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link Type } + * + */ + public void setType(Type value) { + this.type = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Slides.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Slides.java new file mode 100644 index 0000000..2952fce --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Slides.java @@ -0,0 +1,76 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}slide" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "slide" +}) +@XmlRootElement(name = "slides") +public class Slides { + + protected List slide; + + /** + * Gets the value of the slide 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 slide property. + * + *

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

+     *    getSlide().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Slide } + * + * + */ + public List getSlide() { + if (slide == null) { + slide = new ArrayList(); + } + return this.slide; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SourceCenter.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SourceCenter.java new file mode 100644 index 0000000..ee144c7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SourceCenter.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>integer">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "source_center") +public class SourceCenter { + + @XmlValue + protected BigInteger value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SpecimenFractionOrdinal.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SpecimenFractionOrdinal.java new file mode 100644 index 0000000..307be41 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SpecimenFractionOrdinal.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SpecimenFractionOrdinal { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SpectrophotometerMethod.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SpectrophotometerMethod.java new file mode 100644 index 0000000..3d49ceb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SpectrophotometerMethod.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "spectrophotometer_method") +public class SpectrophotometerMethod + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SubportionSequence.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SubportionSequence.java new file mode 100644 index 0000000..104b2a0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/SubportionSequence.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SubportionSequence { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TcgaBcr.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TcgaBcr.java new file mode 100644 index 0000000..cc18768 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TcgaBcr.java @@ -0,0 +1,133 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.Admin; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}admin"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}patient"/>
+ *       </sequence>
+ *       <attribute name="schemaVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" fixed="2.7" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "admin", + "patient" +}) +@XmlRootElement(name = "tcga_bcr") +public class TcgaBcr { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/administration/2.7", required = true) + protected Admin admin; + @XmlElement(required = true) + protected Patient patient; + @XmlAttribute(name = "schemaVersion", required = true) + protected BigDecimal schemaVersion; + + /** + * Gets the value of the admin property. + * + * @return + * possible object is + * {@link Admin } + * + */ + public Admin getAdmin() { + return admin; + } + + /** + * Sets the value of the admin property. + * + * @param value + * allowed object is + * {@link Admin } + * + */ + public void setAdmin(Admin value) { + this.admin = value; + } + + /** + * Gets the value of the patient property. + * + * @return + * possible object is + * {@link Patient } + * + */ + public Patient getPatient() { + return patient; + } + + /** + * Sets the value of the patient property. + * + * @param value + * allowed object is + * {@link Patient } + * + */ + public void setPatient(Patient value) { + this.patient = value; + } + + /** + * Gets the value of the schemaVersion property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSchemaVersion() { + if (schemaVersion == null) { + return new BigDecimal("2.7"); + } else { + return schemaVersion; + } + } + + /** + * Sets the value of the schemaVersion property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSchemaVersion(BigDecimal value) { + this.schemaVersion = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TimeBetweenClampingAndFreezing.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TimeBetweenClampingAndFreezing.java new file mode 100644 index 0000000..e89b739 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TimeBetweenClampingAndFreezing.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "time_between_clamping_and_freezing") +public class TimeBetweenClampingAndFreezing + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TimeBetweenExcisionAndFreezing.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TimeBetweenExcisionAndFreezing.java new file mode 100644 index 0000000..882d60d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TimeBetweenExcisionAndFreezing.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "time_between_excision_and_freezing") +public class TimeBetweenExcisionAndFreezing + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TissueType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TissueType.java new file mode 100644 index 0000000..2761364 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TissueType.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class TissueType + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyLymphnodeStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyLymphnodeStatus.java new file mode 100644 index 0000000..e1de43b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyLymphnodeStatus.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "tnm_pathology_lymphnode_status") +public class TnmPathologyLymphnodeStatus + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyMetastaticStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyMetastaticStatus.java new file mode 100644 index 0000000..c69e343 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyMetastaticStatus.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "tnm_pathology_metastatic_status") +public class TnmPathologyMetastaticStatus + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyStageGrouping.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyStageGrouping.java new file mode 100644 index 0000000..18837b3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyStageGrouping.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "tnm_pathology_stage_grouping") +public class TnmPathologyStageGrouping + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyTumorStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyTumorStatus.java new file mode 100644 index 0000000..cb713d9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TnmPathologyTumorStatus.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "tnm_pathology_tumor_status") +public class TnmPathologyTumorStatus + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorDescriptor.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorDescriptor.java new file mode 100644 index 0000000..859576e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorDescriptor.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class TumorDescriptor + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorPathology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorPathology.java new file mode 100644 index 0000000..582afa7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorPathology.java @@ -0,0 +1,266 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/biospecimen/2.7}primary_or_metastatic_status" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}margins_involved" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}venous_invasion" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}lymphatic_invasion" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}number_regional_lymphnodes_exam" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}number_regional_lymphnodes_pos" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}verification_by_bcr" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}type" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "primaryOrMetastaticStatus", + "marginsInvolved", + "venousInvasion", + "lymphaticInvasion", + "numberRegionalLymphnodesExam", + "numberRegionalLymphnodesPos", + "verificationByBcr", + "type" +}) +@XmlRootElement(name = "tumor_pathology") +public class TumorPathology { + + @XmlElement(name = "primary_or_metastatic_status") + protected PrimaryOrMetastaticStatus primaryOrMetastaticStatus; + @XmlElement(name = "margins_involved") + protected MarginsInvolved marginsInvolved; + @XmlElement(name = "venous_invasion") + protected VenousInvasion venousInvasion; + @XmlElement(name = "lymphatic_invasion") + protected LymphaticInvasion lymphaticInvasion; + @XmlElement(name = "number_regional_lymphnodes_exam") + protected NumberRegionalLymphnodesExam numberRegionalLymphnodesExam; + @XmlElement(name = "number_regional_lymphnodes_pos") + protected NumberRegionalLymphnodesPos numberRegionalLymphnodesPos; + @XmlElement(name = "verification_by_bcr") + protected VerificationByBcr verificationByBcr; + protected Type type; + + /** + * Gets the value of the primaryOrMetastaticStatus property. + * + * @return + * possible object is + * {@link PrimaryOrMetastaticStatus } + * + */ + public PrimaryOrMetastaticStatus getPrimaryOrMetastaticStatus() { + return primaryOrMetastaticStatus; + } + + /** + * Sets the value of the primaryOrMetastaticStatus property. + * + * @param value + * allowed object is + * {@link PrimaryOrMetastaticStatus } + * + */ + public void setPrimaryOrMetastaticStatus(PrimaryOrMetastaticStatus value) { + this.primaryOrMetastaticStatus = value; + } + + /** + * Gets the value of the marginsInvolved property. + * + * @return + * possible object is + * {@link MarginsInvolved } + * + */ + public MarginsInvolved getMarginsInvolved() { + return marginsInvolved; + } + + /** + * Sets the value of the marginsInvolved property. + * + * @param value + * allowed object is + * {@link MarginsInvolved } + * + */ + public void setMarginsInvolved(MarginsInvolved value) { + this.marginsInvolved = value; + } + + /** + * Gets the value of the venousInvasion property. + * + * @return + * possible object is + * {@link VenousInvasion } + * + */ + public VenousInvasion getVenousInvasion() { + return venousInvasion; + } + + /** + * Sets the value of the venousInvasion property. + * + * @param value + * allowed object is + * {@link VenousInvasion } + * + */ + public void setVenousInvasion(VenousInvasion value) { + this.venousInvasion = value; + } + + /** + * Gets the value of the lymphaticInvasion property. + * + * @return + * possible object is + * {@link LymphaticInvasion } + * + */ + public LymphaticInvasion getLymphaticInvasion() { + return lymphaticInvasion; + } + + /** + * Sets the value of the lymphaticInvasion property. + * + * @param value + * allowed object is + * {@link LymphaticInvasion } + * + */ + public void setLymphaticInvasion(LymphaticInvasion value) { + this.lymphaticInvasion = value; + } + + /** + * Gets the value of the numberRegionalLymphnodesExam property. + * + * @return + * possible object is + * {@link NumberRegionalLymphnodesExam } + * + */ + public NumberRegionalLymphnodesExam getNumberRegionalLymphnodesExam() { + return numberRegionalLymphnodesExam; + } + + /** + * Sets the value of the numberRegionalLymphnodesExam property. + * + * @param value + * allowed object is + * {@link NumberRegionalLymphnodesExam } + * + */ + public void setNumberRegionalLymphnodesExam(NumberRegionalLymphnodesExam value) { + this.numberRegionalLymphnodesExam = value; + } + + /** + * Gets the value of the numberRegionalLymphnodesPos property. + * + * @return + * possible object is + * {@link NumberRegionalLymphnodesPos } + * + */ + public NumberRegionalLymphnodesPos getNumberRegionalLymphnodesPos() { + return numberRegionalLymphnodesPos; + } + + /** + * Sets the value of the numberRegionalLymphnodesPos property. + * + * @param value + * allowed object is + * {@link NumberRegionalLymphnodesPos } + * + */ + public void setNumberRegionalLymphnodesPos(NumberRegionalLymphnodesPos value) { + this.numberRegionalLymphnodesPos = value; + } + + /** + * Gets the value of the verificationByBcr property. + * + * @return + * possible object is + * {@link VerificationByBcr } + * + */ + public VerificationByBcr getVerificationByBcr() { + return verificationByBcr; + } + + /** + * Sets the value of the verificationByBcr property. + * + * @param value + * allowed object is + * {@link VerificationByBcr } + * + */ + public void setVerificationByBcr(VerificationByBcr value) { + this.verificationByBcr = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link Type } + * + */ + public Type getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link Type } + * + */ + public void setType(Type value) { + this.type = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorSampleAnatomicLocation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorSampleAnatomicLocation.java new file mode 100644 index 0000000..8b07bb3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/TumorSampleAnatomicLocation.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2673858" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "tumor_sample_anatomic_location") +public class TumorSampleAnatomicLocation + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Type.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Type.java new file mode 100644 index 0000000..df1ade3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Type.java @@ -0,0 +1,195 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlElementRef; +import javax.xml.bind.annotation.XmlElementRefs; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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">
+ *       <choice maxOccurs="unbounded" minOccurs="0">
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}gbm_pathology"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}lung_pathology"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}ovarian_pathology"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}gbm_slide"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}lung_slide"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}ovarian_slide"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}radiation_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/biospecimen/2.7}analyte_type"/>
+ *       </choice>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ *       <attribute name="procurement_status" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="1.8" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "content" +}) +@XmlRootElement(name = "type") +public class Type { + + @XmlElementRefs({ + @XmlElementRef(name = "analyte_type", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = AnalyteType.class, required = false), + @XmlElementRef(name = "gbm_pathology", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = GbmPathology.class, required = false), + @XmlElementRef(name = "ovarian_pathology", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = OvarianPathology.class, required = false), + @XmlElementRef(name = "lung_slide", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = LungSlide.class, required = false), + @XmlElementRef(name = "ovarian_slide", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = OvarianSlide.class, required = false), + @XmlElementRef(name = "gbm_slide", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = GbmSlide.class, required = false), + @XmlElementRef(name = "lung_pathology", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = LungPathology.class, required = false), + @XmlElementRef(name = "radiation_type", namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", type = RadiationType.class, required = false) + }) + @XmlMixed + protected List content; + @XmlAttribute(name = "cde") + @XmlSchemaType(name = "anySimpleType") + protected String cde; + @XmlAttribute(name = "procurement_status") + @XmlSchemaType(name = "anySimpleType") + protected String procurementStatus; + @XmlAttribute(name = "xsd_ver") + @XmlSchemaType(name = "anySimpleType") + protected String xsdVer; + + /** + * 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 AnalyteType } + * {@link GbmPathology } + * {@link OvarianPathology } + * {@link LungSlide } + * {@link OvarianSlide } + * {@link GbmSlide } + * {@link LungPathology } + * {@link RadiationType } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + /** + * Gets the value of the cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + return cde; + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VenousInvasion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VenousInvasion.java new file mode 100644 index 0000000..0733d45 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VenousInvasion.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="64358" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "venous_invasion") +public class VenousInvasion { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "64358"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VerificationByBcr.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VerificationByBcr.java new file mode 100644 index 0000000..799aa05 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VerificationByBcr.java @@ -0,0 +1,362 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2673771" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "verification_by_bcr") +public class VerificationByBcr { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2673771"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VialNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VialNumber.java new file mode 100644 index 0000000..5121ccc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/VialNumber.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "vial_number") +public class VialNumber + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Volume.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Volume.java new file mode 100644 index 0000000..bc7227f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Volume.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" default="ul" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Volume { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "ul"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Weight.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Weight.java new file mode 100644 index 0000000..0d223a8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/Weight.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "weight") +public class Weight + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/WellNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/WellNumber.java new file mode 100644 index 0000000..08715cc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/WellNumber.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "well_number") +public class WellNumber + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfCollection.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfCollection.java new file mode 100644 index 0000000..7d56f94 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfCollection.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_collection") +public class YearOfCollection { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfCreation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfCreation.java new file mode 100644 index 0000000..7e33eca --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfCreation.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "year_of_creation") +public class YearOfCreation + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfIndex.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfIndex.java new file mode 100644 index 0000000..d02ed7d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfIndex.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896960" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfIndex { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896960"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfShipment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfShipment.java new file mode 100644 index 0000000..b5d0cbe --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/YearOfShipment.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "year_of_shipment") +public class YearOfShipment + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/package-info.java new file mode 100644 index 0000000..a8b55f6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/biospecimen/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/shared/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/shared/_2/ObjectFactory.java new file mode 100644 index 0000000..1297301 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/shared/_2/ObjectFactory.java @@ -0,0 +1,60 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen.shared._2; + +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 nci.tcga.bcr.xml.biospecimen.shared._2 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 _OtherMethodOfSampleProcurement_QNAME = new QName("http://tcga.nci/bcr/xml/biospecimen/shared/2.7", "other_method_of_sample_procurement"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: nci.tcga.bcr.xml.biospecimen.shared._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link OtherMethodOfSampleProcurement } + * + */ + public OtherMethodOfSampleProcurement createOtherMethodOfSampleProcurement() { + return new OtherMethodOfSampleProcurement(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherMethodOfSampleProcurement }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/biospecimen/shared/2.7", name = "other_method_of_sample_procurement", defaultValue = "") + public JAXBElement createOtherMethodOfSampleProcurement(OtherMethodOfSampleProcurement value) { + return new JAXBElement(_OtherMethodOfSampleProcurement_QNAME, OtherMethodOfSampleProcurement.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/shared/_2/OtherMethodOfSampleProcurement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/shared/_2/OtherMethodOfSampleProcurement.java new file mode 100644 index 0000000..a72ae1d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/biospecimen/shared/_2/OtherMethodOfSampleProcurement.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.20 at 07:06:08 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2006730" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class OtherMethodOfSampleProcurement + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AnatomicNeoplasmSubdivisions.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AnatomicNeoplasmSubdivisions.java new file mode 100644 index 0000000..223a661 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AnatomicNeoplasmSubdivisions.java @@ -0,0 +1,79 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AnatomicNeoplasmSubdivision; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}anatomic_neoplasm_subdivision" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "anatomicNeoplasmSubdivision" +}) +@XmlRootElement(name = "anatomic_neoplasm_subdivisions") +public class AnatomicNeoplasmSubdivisions { + + @XmlElement(name = "anatomic_neoplasm_subdivision", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected List anatomicNeoplasmSubdivision; + + /** + * Gets the value of the anatomicNeoplasmSubdivision 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 anatomicNeoplasmSubdivision property. + * + *

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

+     *    getAnatomicNeoplasmSubdivision().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AnatomicNeoplasmSubdivision } + * + * + */ + public List getAnatomicNeoplasmSubdivision() { + if (anatomicNeoplasmSubdivision == null) { + anatomicNeoplasmSubdivision = new ArrayList(); + } + return this.anatomicNeoplasmSubdivision; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AxillaryLymphNodeStageMethodType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AxillaryLymphNodeStageMethodType.java new file mode 100644 index 0000000..86e20f5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AxillaryLymphNodeStageMethodType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2516112" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class AxillaryLymphNodeStageMethodType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AxillaryLymphNodeStageOtherMethodDescriptiveText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AxillaryLymphNodeStageOtherMethodDescriptiveText.java new file mode 100644 index 0000000..cbf36a8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/AxillaryLymphNodeStageOtherMethodDescriptiveText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3124496" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AxillaryLymphNodeStageOtherMethodDescriptiveText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3124496"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCancerSurgeryMarginStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCancerSurgeryMarginStatus.java new file mode 100644 index 0000000..8a48613 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCancerSurgeryMarginStatus.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegClose">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2241252" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class BreastCancerSurgeryMarginStatus { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2241252"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaImmunohistochemistryErPosFindingScale.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaImmunohistochemistryErPosFindingScale.java new file mode 100644 index 0000000..0c5bf1e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaImmunohistochemistryErPosFindingScale.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3203081" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class BreastCarcinomaImmunohistochemistryErPosFindingScale + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale.java new file mode 100644 index 0000000..9f53e7a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3203083" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaPrimarySurgicalProcedureName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaPrimarySurgicalProcedureName.java new file mode 100644 index 0000000..0b653a1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaPrimarySurgicalProcedureName.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="1218" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class BreastCarcinomaPrimarySurgicalProcedureName + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaSurgicalProcedureName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaSurgicalProcedureName.java new file mode 100644 index 0000000..ae4ace1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastCarcinomaSurgicalProcedureName.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2739580" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class BreastCarcinomaSurgicalProcedureName + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastNeoplasmOtherSurgicalProcedureDescriptiveText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastNeoplasmOtherSurgicalProcedureDescriptiveText.java new file mode 100644 index 0000000..95895dd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/BreastNeoplasmOtherSurgicalProcedureDescriptiveText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3124493" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class BreastNeoplasmOtherSurgicalProcedureDescriptiveText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3124493"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator.java new file mode 100644 index 0000000..3f469c7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3086152" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3086152"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/DistantMetastasisPresentInd2.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/DistantMetastasisPresentInd2.java new file mode 100644 index 0000000..9d50a1f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/DistantMetastasisPresentInd2.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2194698" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DistantMetastasisPresentInd2 { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2194698"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/FirstNonlymphNodeMetastasisAnatomicSites.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/FirstNonlymphNodeMetastasisAnatomicSites.java new file mode 100644 index 0000000..bcd9d65 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/FirstNonlymphNodeMetastasisAnatomicSites.java @@ -0,0 +1,108 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MetastaticSiteAtDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MetastaticSiteAtDiagnosisOther; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}metastatic_site_at_diagnosis" maxOccurs="unbounded"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}metastatic_site_at_diagnosis_other"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "metastaticSiteAtDiagnosis", + "metastaticSiteAtDiagnosisOther" +}) +@XmlRootElement(name = "first_nonlymph_node_metastasis_anatomic_sites") +public class FirstNonlymphNodeMetastasisAnatomicSites { + + @XmlElement(name = "metastatic_site_at_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected List metastaticSiteAtDiagnosis; + @XmlElement(name = "metastatic_site_at_diagnosis_other", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected MetastaticSiteAtDiagnosisOther metastaticSiteAtDiagnosisOther; + + /** + * Gets the value of the metastaticSiteAtDiagnosis 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 metastaticSiteAtDiagnosis property. + * + *

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

+     *    getMetastaticSiteAtDiagnosis().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetastaticSiteAtDiagnosis } + * + * + */ + public List getMetastaticSiteAtDiagnosis() { + if (metastaticSiteAtDiagnosis == null) { + metastaticSiteAtDiagnosis = new ArrayList(); + } + return this.metastaticSiteAtDiagnosis; + } + + /** + * Gets the value of the metastaticSiteAtDiagnosisOther property. + * + * @return + * possible object is + * {@link MetastaticSiteAtDiagnosisOther } + * + */ + public MetastaticSiteAtDiagnosisOther getMetastaticSiteAtDiagnosisOther() { + return metastaticSiteAtDiagnosisOther; + } + + /** + * Sets the value of the metastaticSiteAtDiagnosisOther property. + * + * @param value + * allowed object is + * {@link MetastaticSiteAtDiagnosisOther } + * + */ + public void setMetastaticSiteAtDiagnosisOther(MetastaticSiteAtDiagnosisOther value) { + this.metastaticSiteAtDiagnosisOther = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/FollowUps.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/FollowUps.java new file mode 100644 index 0000000..fad4c3d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/FollowUps.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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.XmlElementRef; +import javax.xml.bind.annotation.XmlElementRefs; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/brca/followup/2.7/1.5}follow_up" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/followup/2.7/2.1}follow_up" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/followup/2.7/4.0}follow_up" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "content" +}) +@XmlRootElement(name = "follow_ups") +public class FollowUps { + + @XmlElementRefs({ + @XmlElementRef(name = "follow_up", namespace = "http://tcga.nci/bcr/xml/clinical/brca/followup/2.7/1.5", type = org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._1.FollowUp.class, required = false), + @XmlElementRef(name = "follow_up", namespace = "http://tcga.nci/bcr/xml/clinical/brca/followup/2.7/2.1", type = org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._2.FollowUp.class, required = false), + @XmlElementRef(name = "follow_up", namespace = "http://tcga.nci/bcr/xml/clinical/brca/followup/2.7/4.0", type = org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._4.FollowUp.class, required = false) + }) + 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 "FollowUp" is used by two different parts of a schema. See: + * line 256 of file:/Users/Dixit/Documents/github/gsoc/data/clinical_xsd/tcga_bcr_brca.xsd.xml + * line 255 of file:/Users/Dixit/Documents/github/gsoc/data/clinical_xsd/tcga_bcr_brca.xsd.xml + *

+ * 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 org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._4.FollowUp } + * {@link org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._1.FollowUp } + * {@link org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._2.FollowUp } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/MolecularMarker.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/MolecularMarker.java new file mode 100644 index 0000000..abbf397 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/MolecularMarker.java @@ -0,0 +1,101 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MolecularAbnormalityResults; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MolecularAbnormalityResultsOther; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}molecular_abnormality_results"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}molecular_abnormality_results_other"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "molecularAbnormalityResults", + "molecularAbnormalityResultsOther" +}) +@XmlRootElement(name = "molecular_marker") +public class MolecularMarker { + + @XmlElement(name = "molecular_abnormality_results", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected MolecularAbnormalityResults molecularAbnormalityResults; + @XmlElement(name = "molecular_abnormality_results_other", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected MolecularAbnormalityResultsOther molecularAbnormalityResultsOther; + + /** + * Gets the value of the molecularAbnormalityResults property. + * + * @return + * possible object is + * {@link MolecularAbnormalityResults } + * + */ + public MolecularAbnormalityResults getMolecularAbnormalityResults() { + return molecularAbnormalityResults; + } + + /** + * Sets the value of the molecularAbnormalityResults property. + * + * @param value + * allowed object is + * {@link MolecularAbnormalityResults } + * + */ + public void setMolecularAbnormalityResults(MolecularAbnormalityResults value) { + this.molecularAbnormalityResults = value; + } + + /** + * Gets the value of the molecularAbnormalityResultsOther property. + * + * @return + * possible object is + * {@link MolecularAbnormalityResultsOther } + * + */ + public MolecularAbnormalityResultsOther getMolecularAbnormalityResultsOther() { + return molecularAbnormalityResultsOther; + } + + /** + * Sets the value of the molecularAbnormalityResultsOther property. + * + * @param value + * allowed object is + * {@link MolecularAbnormalityResultsOther } + * + */ + public void setMolecularAbnormalityResultsOther(MolecularAbnormalityResultsOther value) { + this.molecularAbnormalityResultsOther = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/MolecularMarkers.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/MolecularMarkers.java new file mode 100644 index 0000000..57d4552 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/MolecularMarkers.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/brca/2.7}molecular_marker" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "molecularMarker" +}) +@XmlRootElement(name = "molecular_markers") +public class MolecularMarkers { + + @XmlElement(name = "molecular_marker") + protected List molecularMarker; + + /** + * Gets the value of the molecularMarker 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 molecularMarker property. + * + *

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

+     *    getMolecularMarker().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MolecularMarker } + * + * + */ + public List getMolecularMarker() { + if (molecularMarker == null) { + molecularMarker = new ArrayList(); + } + return this.molecularMarker; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/ObjectFactory.java new file mode 100644 index 0000000..7b3c971 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/ObjectFactory.java @@ -0,0 +1,296 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2 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 _AxillaryLymphNodeStageMethodType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "axillary_lymph_node_stage_method_type"); + private final static QName _SurgicalProcedurePurposeOtherText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "surgical_procedure_purpose_other_text"); + private final static QName _DistantMetastasisPresentInd2_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "distant_metastasis_present_ind2"); + private final static QName _BreastCancerSurgeryMarginStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "breast_cancer_surgery_margin_status"); + private final static QName _BreastCarcinomaPrimarySurgicalProcedureName_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "breast_carcinoma_primary_surgical_procedure_name"); + private final static QName _CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "cytokeratin_immunohistochemistry_staining_method_micrometastasis_indicator"); + private final static QName _BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "breast_carcinoma_immunohistochemistry_progesterone_receptor_pos_finding_scale"); + private final static QName _BreastCarcinomaImmunohistochemistryErPosFindingScale_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "breast_carcinoma_immunohistochemistry_er_pos_finding_scale"); + private final static QName _AxillaryLymphNodeStageOtherMethodDescriptiveText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "axillary_lymph_node_stage_other_method_descriptive_text"); + private final static QName _BreastNeoplasmOtherSurgicalProcedureDescriptiveText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "breast_neoplasm_other_surgical_procedure_descriptive_text"); + private final static QName _BreastCarcinomaSurgicalProcedureName_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/2.7", "breast_carcinoma_surgical_procedure_name"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator } + * + */ + public CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator createCytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator() { + return new CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator(); + } + + /** + * Create an instance of {@link BreastCarcinomaPrimarySurgicalProcedureName } + * + */ + public BreastCarcinomaPrimarySurgicalProcedureName createBreastCarcinomaPrimarySurgicalProcedureName() { + return new BreastCarcinomaPrimarySurgicalProcedureName(); + } + + /** + * Create an instance of {@link DistantMetastasisPresentInd2 } + * + */ + public DistantMetastasisPresentInd2 createDistantMetastasisPresentInd2() { + return new DistantMetastasisPresentInd2(); + } + + /** + * Create an instance of {@link TcgaBcr } + * + */ + public TcgaBcr createTcgaBcr() { + return new TcgaBcr(); + } + + /** + * Create an instance of {@link Patient } + * + */ + public Patient createPatient() { + return new Patient(); + } + + /** + * Create an instance of {@link AnatomicNeoplasmSubdivisions } + * + */ + public AnatomicNeoplasmSubdivisions createAnatomicNeoplasmSubdivisions() { + return new AnatomicNeoplasmSubdivisions(); + } + + /** + * Create an instance of {@link AxillaryLymphNodeStageMethodType } + * + */ + public AxillaryLymphNodeStageMethodType createAxillaryLymphNodeStageMethodType() { + return new AxillaryLymphNodeStageMethodType(); + } + + /** + * Create an instance of {@link AxillaryLymphNodeStageOtherMethodDescriptiveText } + * + */ + public AxillaryLymphNodeStageOtherMethodDescriptiveText createAxillaryLymphNodeStageOtherMethodDescriptiveText() { + return new AxillaryLymphNodeStageOtherMethodDescriptiveText(); + } + + /** + * Create an instance of {@link BreastCarcinomaSurgicalProcedureName } + * + */ + public BreastCarcinomaSurgicalProcedureName createBreastCarcinomaSurgicalProcedureName() { + return new BreastCarcinomaSurgicalProcedureName(); + } + + /** + * Create an instance of {@link BreastNeoplasmOtherSurgicalProcedureDescriptiveText } + * + */ + public BreastNeoplasmOtherSurgicalProcedureDescriptiveText createBreastNeoplasmOtherSurgicalProcedureDescriptiveText() { + return new BreastNeoplasmOtherSurgicalProcedureDescriptiveText(); + } + + /** + * Create an instance of {@link SurgicalProcedurePurposeOtherText } + * + */ + public SurgicalProcedurePurposeOtherText createSurgicalProcedurePurposeOtherText() { + return new SurgicalProcedurePurposeOtherText(); + } + + /** + * Create an instance of {@link BreastCarcinomaImmunohistochemistryErPosFindingScale } + * + */ + public BreastCarcinomaImmunohistochemistryErPosFindingScale createBreastCarcinomaImmunohistochemistryErPosFindingScale() { + return new BreastCarcinomaImmunohistochemistryErPosFindingScale(); + } + + /** + * Create an instance of {@link BreastCancerSurgeryMarginStatus } + * + */ + public BreastCancerSurgeryMarginStatus createBreastCancerSurgeryMarginStatus() { + return new BreastCancerSurgeryMarginStatus(); + } + + /** + * Create an instance of {@link FirstNonlymphNodeMetastasisAnatomicSites } + * + */ + public FirstNonlymphNodeMetastasisAnatomicSites createFirstNonlymphNodeMetastasisAnatomicSites() { + return new FirstNonlymphNodeMetastasisAnatomicSites(); + } + + /** + * Create an instance of {@link BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale } + * + */ + public BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale createBreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale() { + return new BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale(); + } + + /** + * Create an instance of {@link MolecularMarkers } + * + */ + public MolecularMarkers createMolecularMarkers() { + return new MolecularMarkers(); + } + + /** + * Create an instance of {@link MolecularMarker } + * + */ + public MolecularMarker createMolecularMarker() { + return new MolecularMarker(); + } + + /** + * Create an instance of {@link FollowUps } + * + */ + public FollowUps createFollowUps() { + return new FollowUps(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AxillaryLymphNodeStageMethodType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "axillary_lymph_node_stage_method_type") + public JAXBElement createAxillaryLymphNodeStageMethodType(AxillaryLymphNodeStageMethodType value) { + return new JAXBElement(_AxillaryLymphNodeStageMethodType_QNAME, AxillaryLymphNodeStageMethodType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SurgicalProcedurePurposeOtherText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "surgical_procedure_purpose_other_text") + public JAXBElement createSurgicalProcedurePurposeOtherText(SurgicalProcedurePurposeOtherText value) { + return new JAXBElement(_SurgicalProcedurePurposeOtherText_QNAME, SurgicalProcedurePurposeOtherText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DistantMetastasisPresentInd2 }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "distant_metastasis_present_ind2") + public JAXBElement createDistantMetastasisPresentInd2(DistantMetastasisPresentInd2 value) { + return new JAXBElement(_DistantMetastasisPresentInd2_QNAME, DistantMetastasisPresentInd2 .class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastCancerSurgeryMarginStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "breast_cancer_surgery_margin_status") + public JAXBElement createBreastCancerSurgeryMarginStatus(BreastCancerSurgeryMarginStatus value) { + return new JAXBElement(_BreastCancerSurgeryMarginStatus_QNAME, BreastCancerSurgeryMarginStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastCarcinomaPrimarySurgicalProcedureName }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "breast_carcinoma_primary_surgical_procedure_name") + public JAXBElement createBreastCarcinomaPrimarySurgicalProcedureName(BreastCarcinomaPrimarySurgicalProcedureName value) { + return new JAXBElement(_BreastCarcinomaPrimarySurgicalProcedureName_QNAME, BreastCarcinomaPrimarySurgicalProcedureName.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "cytokeratin_immunohistochemistry_staining_method_micrometastasis_indicator") + public JAXBElement createCytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator(CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator value) { + return new JAXBElement(_CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator_QNAME, CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "breast_carcinoma_immunohistochemistry_progesterone_receptor_pos_finding_scale") + public JAXBElement createBreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale(BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale value) { + return new JAXBElement(_BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale_QNAME, BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastCarcinomaImmunohistochemistryErPosFindingScale }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "breast_carcinoma_immunohistochemistry_er_pos_finding_scale") + public JAXBElement createBreastCarcinomaImmunohistochemistryErPosFindingScale(BreastCarcinomaImmunohistochemistryErPosFindingScale value) { + return new JAXBElement(_BreastCarcinomaImmunohistochemistryErPosFindingScale_QNAME, BreastCarcinomaImmunohistochemistryErPosFindingScale.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AxillaryLymphNodeStageOtherMethodDescriptiveText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "axillary_lymph_node_stage_other_method_descriptive_text") + public JAXBElement createAxillaryLymphNodeStageOtherMethodDescriptiveText(AxillaryLymphNodeStageOtherMethodDescriptiveText value) { + return new JAXBElement(_AxillaryLymphNodeStageOtherMethodDescriptiveText_QNAME, AxillaryLymphNodeStageOtherMethodDescriptiveText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastNeoplasmOtherSurgicalProcedureDescriptiveText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "breast_neoplasm_other_surgical_procedure_descriptive_text") + public JAXBElement createBreastNeoplasmOtherSurgicalProcedureDescriptiveText(BreastNeoplasmOtherSurgicalProcedureDescriptiveText value) { + return new JAXBElement(_BreastNeoplasmOtherSurgicalProcedureDescriptiveText_QNAME, BreastNeoplasmOtherSurgicalProcedureDescriptiveText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastCarcinomaSurgicalProcedureName }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", name = "breast_carcinoma_surgical_procedure_name") + public JAXBElement createBreastCarcinomaSurgicalProcedureName(BreastCarcinomaSurgicalProcedureName value) { + return new JAXBElement(_BreastCarcinomaSurgicalProcedureName_QNAME, BreastCarcinomaSurgicalProcedureName.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/Patient.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/Patient.java new file mode 100644 index 0000000..fe58d10 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/Patient.java @@ -0,0 +1,3795 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.BreastCarcinomaEstrogenReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.BreastCarcinomaImmunohistochemistryPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.BreastCarcinomaProgesteroneReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.ErDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.ErLevelCellPercentageCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2AndCentromere17PositiveFindingOtherMeasurementScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2ErbbMethodCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2ErbbPosFindingCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2ImmunohistochemistryLevelResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuChromosone17SignalRatioValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.ImmunohistochemistryPositiveCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.LabProcHer2NeuImmunohistochemistryReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.LabProcedureHer2NeuInSituHybridOutcomeType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PgrDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PosFindingHer2Erbb2OtherMeasurementScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PosFindingProgesteroneReceptorOtherMeasurementScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PositiveFindingEstrogenReceptorOtherMeasurementScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.ProgesteroneReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared.new_tumor_event._2_7._1.NewTumorEvents; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2.Drugs; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.Radiations; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AgeAtInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Ethnicity; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.HistoryOfRadiationMetastaticSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.HistoryOfRadiationPrimarySite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.HistoryPriorSurgeryIndicator; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.HistoryPriorSurgeryType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.HistoryPriorSurgeryTypeOther; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Icd10; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.IcdO3Histology; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.IcdO3Site; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.InformedConsentVerified; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.InitPathologyDxMethodOther; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.InitialPathologicDiagnosisMethod; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.LymphNodeExaminedCount; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MarginStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MenopauseStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.NumberOfLymphnodesPositiveByHe; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.NumberOfLymphnodesPositiveByIhc; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PatientProgressionStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PersonNeoplasmCancerStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PostoperativeRxTx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PrimaryLymphNodePresentationAssessment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ProgressionDates; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RaceList; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Response; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TissueProspectiveCollectionIndicator; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TissueRetrospectiveCollectionIndicator; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TumorTissueSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TumorTissueSiteOther; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Unstructured; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.VitalStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.StageEvent; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.BcrPatientBarcode; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.BcrPatientUuid; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Gender; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HistologicalType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HistologicalTypeOther; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HistoryOfNeoadjuvantTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.OtherDx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.PatientId; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.TissueSourceSite; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}tumor_tissue_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}tumor_tissue_site_other"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}other_dx"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}gender"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}vital_status"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_birth"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_birth"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_birth"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_birth"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_known_alive"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_known_alive"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_known_alive"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_known_alive"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_death"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_death"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_followup"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_followup"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}patient_progression_status" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}progression_dates" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}race_list"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}bcr_patient_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}tissue_source_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}patient_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}bcr_patient_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}history_of_neoadjuvant_treatment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}history_prior_surgery_indicator" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}history_prior_surgery_type" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}history_prior_surgery_type_other" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}informed_consent_verified"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}history_of_radiation_primary_site" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}history_of_radiation_metastatic_site" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}icd_o_3_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}icd_o_3_histology"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}icd_10"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_initial_pathologic_diagnosis"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_initial_pathologic_diagnosis"/>
+ *           </sequence>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_initial_pathologic_diagnosis"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}age_at_initial_pathologic_diagnosis"/>
+ *           </sequence>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_initial_pathologic_diagnosis"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}ethnicity"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}person_neoplasm_cancer_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}primary_lymph_node_presentation_assessment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}lymph_node_examined_count"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}er_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pgr_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}anatomic_neoplasm_subdivisions"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_chromosone_17_signal_ratio_value"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}axillary_lymph_node_stage_method_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}axillary_lymph_node_stage_other_method_descriptive_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}breast_carcinoma_surgical_procedure_name"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}breast_neoplasm_other_surgical_procedure_descriptive_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}breast_carcinoma_primary_surgical_procedure_name"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}surgical_procedure_purpose_other_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}histological_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}histological_type_other"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}menopause_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}breast_carcinoma_progesterone_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}cytokeratin_immunohistochemistry_staining_method_micrometastasis_indicator"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}breast_carcinoma_immunohistochemistry_er_pos_finding_scale"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}immunohistochemistry_positive_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_immunohistochemistry_level_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}breast_cancer_surgery_margin_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}margin_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}initial_pathologic_diagnosis_method"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}init_pathology_dx_method_other"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}lab_procedure_her2_neu_in_situ_hybrid_outcome_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}breast_carcinoma_estrogen_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}lab_proc_her2_neu_immunohistochemistry_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}number_of_lymphnodes_positive_by_ihc"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}number_of_lymphnodes_positive_by_he"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pos_finding_progesterone_receptor_other_measurement_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}positive_finding_estrogen_receptor_other_measurement_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_erbb_pos_finding_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pos_finding_her2_erbb2_other_measurement_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_erbb_method_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_and_centromere_17_copy_number_analysis_input_total_number_count"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_and_centromere_17_positive_finding_other_measurement_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}tissue_prospective_collection_indicator"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}tissue_retrospective_collection_indicator"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}fluorescence_in_situ_hybridization_diagnostic_procedure_chromosome_17_signal_result_range"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}first_nonlymph_node_metastasis_anatomic_sites"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}er_level_cell_percentage_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}progesterone_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}distant_metastasis_present_ind2"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_breast_carcinoma_copy_analysis_input_total_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}breast_carcinoma_immunohistochemistry_progesterone_receptor_pos_finding_scale"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}breast_carcinoma_immunohistochemistry_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}stage_event"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}molecular_markers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}postoperative_rx_tx"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/new_tumor_event/2.7/1.0}new_tumor_events"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_form_completion"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_form_completion"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}response" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}follow_ups"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}drugs"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}radiations"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}unstructured" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "additionalStudies", + "tumorTissueSite", + "tumorTissueSiteOther", + "otherDx", + "gender", + "vitalStatus", + "dayOfBirth", + "monthOfBirth", + "yearOfBirth", + "daysToBirth", + "dayOfLastKnownAlive", + "monthOfLastKnownAlive", + "yearOfLastKnownAlive", + "daysToLastKnownAlive", + "dayOfDeath", + "monthOfDeath", + "yearOfDeath", + "daysToDeath", + "dayOfLastFollowup", + "monthOfLastFollowup", + "yearOfLastFollowup", + "daysToLastFollowup", + "patientProgressionStatus", + "progressionDates", + "raceList", + "bcrPatientBarcode", + "tissueSourceSite", + "patientId", + "bcrPatientUuid", + "historyOfNeoadjuvantTreatment", + "historyPriorSurgeryIndicator", + "historyPriorSurgeryType", + "historyPriorSurgeryTypeOther", + "informedConsentVerified", + "historyOfRadiationPrimarySite", + "historyOfRadiationMetastaticSite", + "icdO3Site", + "icdO3Histology", + "icd10", + "dayOfInitialPathologicDiagnosis", + "monthOfInitialPathologicDiagnosis", + "daysToInitialPathologicDiagnosis", + "ageAtInitialPathologicDiagnosis", + "yearOfInitialPathologicDiagnosis", + "ethnicity", + "personNeoplasmCancerStatus", + "primaryLymphNodePresentationAssessment", + "lymphNodeExaminedCount", + "erDetectionMethodText", + "pgrDetectionMethodText", + "anatomicNeoplasmSubdivisions", + "her2NeuChromosone17SignalRatioValue", + "axillaryLymphNodeStageMethodType", + "axillaryLymphNodeStageOtherMethodDescriptiveText", + "breastCarcinomaSurgicalProcedureName", + "breastNeoplasmOtherSurgicalProcedureDescriptiveText", + "breastCarcinomaPrimarySurgicalProcedureName", + "surgicalProcedurePurposeOtherText", + "histologicalType", + "histologicalTypeOther", + "menopauseStatus", + "breastCarcinomaProgesteroneReceptorStatus", + "cytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator", + "breastCarcinomaImmunohistochemistryErPosFindingScale", + "immunohistochemistryPositiveCellScore", + "her2ImmunohistochemistryLevelResult", + "breastCancerSurgeryMarginStatus", + "marginStatus", + "initialPathologicDiagnosisMethod", + "initPathologyDxMethodOther", + "labProcedureHer2NeuInSituHybridOutcomeType", + "breastCarcinomaEstrogenReceptorStatus", + "labProcHer2NeuImmunohistochemistryReceptorStatus", + "numberOfLymphnodesPositiveByIhc", + "numberOfLymphnodesPositiveByHe", + "posFindingProgesteroneReceptorOtherMeasurementScaleText", + "positiveFindingEstrogenReceptorOtherMeasurementScaleText", + "her2ErbbPosFindingCellPercentCategory", + "posFindingHer2Erbb2OtherMeasurementScaleText", + "her2ErbbMethodCalculationMethodText", + "her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount", + "her2AndCentromere17PositiveFindingOtherMeasurementScaleText", + "her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText", + "tissueProspectiveCollectionIndicator", + "tissueRetrospectiveCollectionIndicator", + "fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange", + "firstNonlymphNodeMetastasisAnatomicSites", + "erLevelCellPercentageCategory", + "progesteroneReceptorLevelCellPercentCategory", + "distantMetastasisPresentInd2", + "metastaticBreastCarcinomaEstrogenReceptorStatus", + "metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory", + "metastaticBreastCarcinomaImmunohistochemistryErPosCellScore", + "posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText", + "metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText", + "metastaticBreastCarcinomaProgesteroneReceptorStatus", + "metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus", + "metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory", + "metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore", + "metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText", + "metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText", + "metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory", + "metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult", + "metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText", + "metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText", + "metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType", + "metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange", + "her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount", + "metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue", + "metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText", + "metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText", + "her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber", + "her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber", + "breastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale", + "breastCarcinomaImmunohistochemistryPosCellScore", + "stageEvent", + "molecularMarkers", + "postoperativeRxTx", + "radiationTherapy", + "newTumorEvents", + "dayOfFormCompletion", + "monthOfFormCompletion", + "yearOfFormCompletion", + "daysToFormCompletion", + "response", + "followUps", + "drugs", + "radiations", + "unstructured" +}) +@XmlRootElement(name = "patient") +public class Patient { + + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "tumor_tissue_site", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected TumorTissueSite tumorTissueSite; + @XmlElement(name = "tumor_tissue_site_other", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected TumorTissueSiteOther tumorTissueSiteOther; + @XmlElement(name = "other_dx", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected OtherDx otherDx; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected Gender gender; + @XmlElement(name = "vital_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected VitalStatus vitalStatus; + @XmlElement(name = "day_of_birth", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfBirth dayOfBirth; + @XmlElement(name = "month_of_birth", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfBirth monthOfBirth; + @XmlElement(name = "year_of_birth", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfBirth yearOfBirth; + @XmlElement(name = "days_to_birth", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToBirth daysToBirth; + @XmlElement(name = "day_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfLastKnownAlive dayOfLastKnownAlive; + @XmlElement(name = "month_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfLastKnownAlive monthOfLastKnownAlive; + @XmlElement(name = "year_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfLastKnownAlive yearOfLastKnownAlive; + @XmlElement(name = "days_to_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastKnownAlive daysToLastKnownAlive; + @XmlElement(name = "day_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfDeath dayOfDeath; + @XmlElement(name = "month_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfDeath monthOfDeath; + @XmlElement(name = "year_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfDeath yearOfDeath; + @XmlElement(name = "days_to_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToDeath daysToDeath; + @XmlElement(name = "day_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfLastFollowup dayOfLastFollowup; + @XmlElement(name = "month_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfLastFollowup monthOfLastFollowup; + @XmlElement(name = "year_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfLastFollowup yearOfLastFollowup; + @XmlElement(name = "days_to_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastFollowup daysToLastFollowup; + @XmlElement(name = "patient_progression_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected PatientProgressionStatus patientProgressionStatus; + @XmlElement(name = "progression_dates", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected ProgressionDates progressionDates; + @XmlElement(name = "race_list", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RaceList raceList; + @XmlElement(name = "bcr_patient_barcode", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected BcrPatientBarcode bcrPatientBarcode; + @XmlElement(name = "tissue_source_site", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected TissueSourceSite tissueSourceSite; + @XmlElement(name = "patient_id", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected PatientId patientId; + @XmlElement(name = "bcr_patient_uuid", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected BcrPatientUuid bcrPatientUuid; + @XmlElement(name = "history_of_neoadjuvant_treatment", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected HistoryOfNeoadjuvantTreatment historyOfNeoadjuvantTreatment; + @XmlElement(name = "history_prior_surgery_indicator", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected HistoryPriorSurgeryIndicator historyPriorSurgeryIndicator; + @XmlElement(name = "history_prior_surgery_type", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected HistoryPriorSurgeryType historyPriorSurgeryType; + @XmlElement(name = "history_prior_surgery_type_other", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected HistoryPriorSurgeryTypeOther historyPriorSurgeryTypeOther; + @XmlElement(name = "informed_consent_verified", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected InformedConsentVerified informedConsentVerified; + @XmlElement(name = "history_of_radiation_primary_site", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected HistoryOfRadiationPrimarySite historyOfRadiationPrimarySite; + @XmlElement(name = "history_of_radiation_metastatic_site", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected HistoryOfRadiationMetastaticSite historyOfRadiationMetastaticSite; + @XmlElement(name = "icd_o_3_site", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected IcdO3Site icdO3Site; + @XmlElement(name = "icd_o_3_histology", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected IcdO3Histology icdO3Histology; + @XmlElement(name = "icd_10", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected Icd10 icd10; + @XmlElement(name = "day_of_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfInitialPathologicDiagnosis dayOfInitialPathologicDiagnosis; + @XmlElement(name = "month_of_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfInitialPathologicDiagnosis monthOfInitialPathologicDiagnosis; + @XmlElement(name = "days_to_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToInitialPathologicDiagnosis daysToInitialPathologicDiagnosis; + @XmlElement(name = "age_at_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected AgeAtInitialPathologicDiagnosis ageAtInitialPathologicDiagnosis; + @XmlElement(name = "year_of_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected YearOfInitialPathologicDiagnosis yearOfInitialPathologicDiagnosis; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected Ethnicity ethnicity; + @XmlElement(name = "person_neoplasm_cancer_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PersonNeoplasmCancerStatus personNeoplasmCancerStatus; + @XmlElement(name = "primary_lymph_node_presentation_assessment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PrimaryLymphNodePresentationAssessment primaryLymphNodePresentationAssessment; + @XmlElement(name = "lymph_node_examined_count", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected LymphNodeExaminedCount lymphNodeExaminedCount; + @XmlElement(name = "er_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected ErDetectionMethodText erDetectionMethodText; + @XmlElement(name = "pgr_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PgrDetectionMethodText pgrDetectionMethodText; + @XmlElement(name = "anatomic_neoplasm_subdivisions", required = true) + protected AnatomicNeoplasmSubdivisions anatomicNeoplasmSubdivisions; + @XmlElement(name = "her2_neu_chromosone_17_signal_ratio_value", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuChromosone17SignalRatioValue her2NeuChromosone17SignalRatioValue; + @XmlElement(name = "axillary_lymph_node_stage_method_type", required = true, nillable = true) + protected AxillaryLymphNodeStageMethodType axillaryLymphNodeStageMethodType; + @XmlElement(name = "axillary_lymph_node_stage_other_method_descriptive_text", required = true, nillable = true) + protected AxillaryLymphNodeStageOtherMethodDescriptiveText axillaryLymphNodeStageOtherMethodDescriptiveText; + @XmlElement(name = "breast_carcinoma_surgical_procedure_name", required = true, nillable = true) + protected BreastCarcinomaSurgicalProcedureName breastCarcinomaSurgicalProcedureName; + @XmlElement(name = "breast_neoplasm_other_surgical_procedure_descriptive_text", required = true, nillable = true) + protected BreastNeoplasmOtherSurgicalProcedureDescriptiveText breastNeoplasmOtherSurgicalProcedureDescriptiveText; + @XmlElement(name = "breast_carcinoma_primary_surgical_procedure_name", required = true, nillable = true) + protected BreastCarcinomaPrimarySurgicalProcedureName breastCarcinomaPrimarySurgicalProcedureName; + @XmlElement(name = "surgical_procedure_purpose_other_text", required = true, nillable = true) + protected SurgicalProcedurePurposeOtherText surgicalProcedurePurposeOtherText; + @XmlElement(name = "histological_type", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true, nillable = true) + protected HistologicalType histologicalType; + @XmlElement(name = "histological_type_other", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true, nillable = true) + protected HistologicalTypeOther histologicalTypeOther; + @XmlElement(name = "menopause_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected MenopauseStatus menopauseStatus; + @XmlElement(name = "breast_carcinoma_progesterone_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected BreastCarcinomaProgesteroneReceptorStatus breastCarcinomaProgesteroneReceptorStatus; + @XmlElement(name = "cytokeratin_immunohistochemistry_staining_method_micrometastasis_indicator", required = true, nillable = true) + protected CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator cytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator; + @XmlElement(name = "breast_carcinoma_immunohistochemistry_er_pos_finding_scale", required = true, nillable = true) + protected BreastCarcinomaImmunohistochemistryErPosFindingScale breastCarcinomaImmunohistochemistryErPosFindingScale; + @XmlElement(name = "immunohistochemistry_positive_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected ImmunohistochemistryPositiveCellScore immunohistochemistryPositiveCellScore; + @XmlElement(name = "her2_immunohistochemistry_level_result", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2ImmunohistochemistryLevelResult her2ImmunohistochemistryLevelResult; + @XmlElement(name = "breast_cancer_surgery_margin_status", required = true, nillable = true) + protected BreastCancerSurgeryMarginStatus breastCancerSurgeryMarginStatus; + @XmlElement(name = "margin_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected MarginStatus marginStatus; + @XmlElement(name = "initial_pathologic_diagnosis_method", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected InitialPathologicDiagnosisMethod initialPathologicDiagnosisMethod; + @XmlElement(name = "init_pathology_dx_method_other", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected InitPathologyDxMethodOther initPathologyDxMethodOther; + @XmlElement(name = "lab_procedure_her2_neu_in_situ_hybrid_outcome_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected LabProcedureHer2NeuInSituHybridOutcomeType labProcedureHer2NeuInSituHybridOutcomeType; + @XmlElement(name = "breast_carcinoma_estrogen_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected BreastCarcinomaEstrogenReceptorStatus breastCarcinomaEstrogenReceptorStatus; + @XmlElement(name = "lab_proc_her2_neu_immunohistochemistry_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected LabProcHer2NeuImmunohistochemistryReceptorStatus labProcHer2NeuImmunohistochemistryReceptorStatus; + @XmlElement(name = "number_of_lymphnodes_positive_by_ihc", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected NumberOfLymphnodesPositiveByIhc numberOfLymphnodesPositiveByIhc; + @XmlElement(name = "number_of_lymphnodes_positive_by_he", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected NumberOfLymphnodesPositiveByHe numberOfLymphnodesPositiveByHe; + @XmlElement(name = "pos_finding_progesterone_receptor_other_measurement_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PosFindingProgesteroneReceptorOtherMeasurementScaleText posFindingProgesteroneReceptorOtherMeasurementScaleText; + @XmlElement(name = "positive_finding_estrogen_receptor_other_measurement_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PositiveFindingEstrogenReceptorOtherMeasurementScaleText positiveFindingEstrogenReceptorOtherMeasurementScaleText; + @XmlElement(name = "her2_erbb_pos_finding_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2ErbbPosFindingCellPercentCategory her2ErbbPosFindingCellPercentCategory; + @XmlElement(name = "pos_finding_her2_erbb2_other_measurement_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PosFindingHer2Erbb2OtherMeasurementScaleText posFindingHer2Erbb2OtherMeasurementScaleText; + @XmlElement(name = "her2_erbb_method_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2ErbbMethodCalculationMethodText her2ErbbMethodCalculationMethodText; + @XmlElement(name = "her2_neu_and_centromere_17_copy_number_analysis_input_total_number_count", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount; + @XmlElement(name = "her2_and_centromere_17_positive_finding_other_measurement_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2AndCentromere17PositiveFindingOtherMeasurementScaleText her2AndCentromere17PositiveFindingOtherMeasurementScaleText; + @XmlElement(name = "her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + @XmlElement(name = "tissue_prospective_collection_indicator", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected TissueProspectiveCollectionIndicator tissueProspectiveCollectionIndicator; + @XmlElement(name = "tissue_retrospective_collection_indicator", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected TissueRetrospectiveCollectionIndicator tissueRetrospectiveCollectionIndicator; + @XmlElement(name = "fluorescence_in_situ_hybridization_diagnostic_procedure_chromosome_17_signal_result_range", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange; + @XmlElement(name = "first_nonlymph_node_metastasis_anatomic_sites", required = true) + protected FirstNonlymphNodeMetastasisAnatomicSites firstNonlymphNodeMetastasisAnatomicSites; + @XmlElement(name = "er_level_cell_percentage_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected ErLevelCellPercentageCategory erLevelCellPercentageCategory; + @XmlElement(name = "progesterone_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected ProgesteroneReceptorLevelCellPercentCategory progesteroneReceptorLevelCellPercentCategory; + @XmlElement(name = "distant_metastasis_present_ind2", required = true, nillable = true) + protected DistantMetastasisPresentInd2 distantMetastasisPresentInd2; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorStatus metastaticBreastCarcinomaEstrogenReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore metastaticBreastCarcinomaImmunohistochemistryErPosCellScore; + @XmlElement(name = "pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorStatus metastaticBreastCarcinomaProgesteroneReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; + @XmlElement(name = "metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; + @XmlElement(name = "her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; + @XmlElement(name = "metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + @XmlElement(name = "her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; + @XmlElement(name = "her2_neu_breast_carcinoma_copy_analysis_input_total_number", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber; + @XmlElement(name = "breast_carcinoma_immunohistochemistry_progesterone_receptor_pos_finding_scale", required = true, nillable = true) + protected BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale breastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale; + @XmlElement(name = "breast_carcinoma_immunohistochemistry_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected BreastCarcinomaImmunohistochemistryPosCellScore breastCarcinomaImmunohistochemistryPosCellScore; + @XmlElement(name = "stage_event", namespace = "http://tcga.nci/bcr/xml/clinical/shared/stage/2.7", required = true) + protected StageEvent stageEvent; + @XmlElement(name = "molecular_markers") + protected MolecularMarkers molecularMarkers; + @XmlElement(name = "postoperative_rx_tx", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PostoperativeRxTx postoperativeRxTx; + @XmlElement(name = "radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RadiationTherapy radiationTherapy; + @XmlElement(name = "new_tumor_events", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/new_tumor_event/2.7/1.0", required = true) + protected NewTumorEvents newTumorEvents; + @XmlElement(name = "day_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfFormCompletion dayOfFormCompletion; + @XmlElement(name = "month_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfFormCompletion monthOfFormCompletion; + @XmlElement(name = "year_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfFormCompletion yearOfFormCompletion; + @XmlElement(name = "days_to_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToFormCompletion daysToFormCompletion; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected Response response; + @XmlElement(name = "follow_ups", required = true) + protected FollowUps followUps; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7", required = true) + protected Drugs drugs; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/radiation/2.7", required = true) + protected Radiations radiations; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected Unstructured unstructured; + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the tumorTissueSite property. + * + * @return + * possible object is + * {@link TumorTissueSite } + * + */ + public TumorTissueSite getTumorTissueSite() { + return tumorTissueSite; + } + + /** + * Sets the value of the tumorTissueSite property. + * + * @param value + * allowed object is + * {@link TumorTissueSite } + * + */ + public void setTumorTissueSite(TumorTissueSite value) { + this.tumorTissueSite = value; + } + + /** + * Gets the value of the tumorTissueSiteOther property. + * + * @return + * possible object is + * {@link TumorTissueSiteOther } + * + */ + public TumorTissueSiteOther getTumorTissueSiteOther() { + return tumorTissueSiteOther; + } + + /** + * Sets the value of the tumorTissueSiteOther property. + * + * @param value + * allowed object is + * {@link TumorTissueSiteOther } + * + */ + public void setTumorTissueSiteOther(TumorTissueSiteOther value) { + this.tumorTissueSiteOther = value; + } + + /** + * Gets the value of the otherDx property. + * + * @return + * possible object is + * {@link OtherDx } + * + */ + public OtherDx getOtherDx() { + return otherDx; + } + + /** + * Sets the value of the otherDx property. + * + * @param value + * allowed object is + * {@link OtherDx } + * + */ + public void setOtherDx(OtherDx value) { + this.otherDx = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link Gender } + * + */ + public Gender getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link Gender } + * + */ + public void setGender(Gender value) { + this.gender = value; + } + + /** + * The vital_status question is asked in both the initial enrollment form and the follow-up form(s). + * + * @return + * possible object is + * {@link VitalStatus } + * + */ + public VitalStatus getVitalStatus() { + return vitalStatus; + } + + /** + * Sets the value of the vitalStatus property. + * + * @param value + * allowed object is + * {@link VitalStatus } + * + */ + public void setVitalStatus(VitalStatus value) { + this.vitalStatus = value; + } + + /** + * Gets the value of the dayOfBirth property. + * + * @return + * possible object is + * {@link DayOfBirth } + * + */ + public DayOfBirth getDayOfBirth() { + return dayOfBirth; + } + + /** + * Sets the value of the dayOfBirth property. + * + * @param value + * allowed object is + * {@link DayOfBirth } + * + */ + public void setDayOfBirth(DayOfBirth value) { + this.dayOfBirth = value; + } + + /** + * Gets the value of the monthOfBirth property. + * + * @return + * possible object is + * {@link MonthOfBirth } + * + */ + public MonthOfBirth getMonthOfBirth() { + return monthOfBirth; + } + + /** + * Sets the value of the monthOfBirth property. + * + * @param value + * allowed object is + * {@link MonthOfBirth } + * + */ + public void setMonthOfBirth(MonthOfBirth value) { + this.monthOfBirth = value; + } + + /** + * Gets the value of the yearOfBirth property. + * + * @return + * possible object is + * {@link YearOfBirth } + * + */ + public YearOfBirth getYearOfBirth() { + return yearOfBirth; + } + + /** + * Sets the value of the yearOfBirth property. + * + * @param value + * allowed object is + * {@link YearOfBirth } + * + */ + public void setYearOfBirth(YearOfBirth value) { + this.yearOfBirth = value; + } + + /** + * Gets the value of the daysToBirth property. + * + * @return + * possible object is + * {@link DaysToBirth } + * + */ + public DaysToBirth getDaysToBirth() { + return daysToBirth; + } + + /** + * Sets the value of the daysToBirth property. + * + * @param value + * allowed object is + * {@link DaysToBirth } + * + */ + public void setDaysToBirth(DaysToBirth value) { + this.daysToBirth = value; + } + + /** + * Gets the value of the dayOfLastKnownAlive property. + * + * @return + * possible object is + * {@link DayOfLastKnownAlive } + * + */ + public DayOfLastKnownAlive getDayOfLastKnownAlive() { + return dayOfLastKnownAlive; + } + + /** + * Sets the value of the dayOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link DayOfLastKnownAlive } + * + */ + public void setDayOfLastKnownAlive(DayOfLastKnownAlive value) { + this.dayOfLastKnownAlive = value; + } + + /** + * Gets the value of the monthOfLastKnownAlive property. + * + * @return + * possible object is + * {@link MonthOfLastKnownAlive } + * + */ + public MonthOfLastKnownAlive getMonthOfLastKnownAlive() { + return monthOfLastKnownAlive; + } + + /** + * Sets the value of the monthOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link MonthOfLastKnownAlive } + * + */ + public void setMonthOfLastKnownAlive(MonthOfLastKnownAlive value) { + this.monthOfLastKnownAlive = value; + } + + /** + * Gets the value of the yearOfLastKnownAlive property. + * + * @return + * possible object is + * {@link YearOfLastKnownAlive } + * + */ + public YearOfLastKnownAlive getYearOfLastKnownAlive() { + return yearOfLastKnownAlive; + } + + /** + * Sets the value of the yearOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link YearOfLastKnownAlive } + * + */ + public void setYearOfLastKnownAlive(YearOfLastKnownAlive value) { + this.yearOfLastKnownAlive = value; + } + + /** + * Gets the value of the daysToLastKnownAlive property. + * + * @return + * possible object is + * {@link DaysToLastKnownAlive } + * + */ + public DaysToLastKnownAlive getDaysToLastKnownAlive() { + return daysToLastKnownAlive; + } + + /** + * Sets the value of the daysToLastKnownAlive property. + * + * @param value + * allowed object is + * {@link DaysToLastKnownAlive } + * + */ + public void setDaysToLastKnownAlive(DaysToLastKnownAlive value) { + this.daysToLastKnownAlive = value; + } + + /** + * Gets the value of the dayOfDeath property. + * + * @return + * possible object is + * {@link DayOfDeath } + * + */ + public DayOfDeath getDayOfDeath() { + return dayOfDeath; + } + + /** + * Sets the value of the dayOfDeath property. + * + * @param value + * allowed object is + * {@link DayOfDeath } + * + */ + public void setDayOfDeath(DayOfDeath value) { + this.dayOfDeath = value; + } + + /** + * Gets the value of the monthOfDeath property. + * + * @return + * possible object is + * {@link MonthOfDeath } + * + */ + public MonthOfDeath getMonthOfDeath() { + return monthOfDeath; + } + + /** + * Sets the value of the monthOfDeath property. + * + * @param value + * allowed object is + * {@link MonthOfDeath } + * + */ + public void setMonthOfDeath(MonthOfDeath value) { + this.monthOfDeath = value; + } + + /** + * Gets the value of the yearOfDeath property. + * + * @return + * possible object is + * {@link YearOfDeath } + * + */ + public YearOfDeath getYearOfDeath() { + return yearOfDeath; + } + + /** + * Sets the value of the yearOfDeath property. + * + * @param value + * allowed object is + * {@link YearOfDeath } + * + */ + public void setYearOfDeath(YearOfDeath value) { + this.yearOfDeath = value; + } + + /** + * Gets the value of the daysToDeath property. + * + * @return + * possible object is + * {@link DaysToDeath } + * + */ + public DaysToDeath getDaysToDeath() { + return daysToDeath; + } + + /** + * Sets the value of the daysToDeath property. + * + * @param value + * allowed object is + * {@link DaysToDeath } + * + */ + public void setDaysToDeath(DaysToDeath value) { + this.daysToDeath = value; + } + + /** + * Gets the value of the dayOfLastFollowup property. + * + * @return + * possible object is + * {@link DayOfLastFollowup } + * + */ + public DayOfLastFollowup getDayOfLastFollowup() { + return dayOfLastFollowup; + } + + /** + * Sets the value of the dayOfLastFollowup property. + * + * @param value + * allowed object is + * {@link DayOfLastFollowup } + * + */ + public void setDayOfLastFollowup(DayOfLastFollowup value) { + this.dayOfLastFollowup = value; + } + + /** + * Gets the value of the monthOfLastFollowup property. + * + * @return + * possible object is + * {@link MonthOfLastFollowup } + * + */ + public MonthOfLastFollowup getMonthOfLastFollowup() { + return monthOfLastFollowup; + } + + /** + * Sets the value of the monthOfLastFollowup property. + * + * @param value + * allowed object is + * {@link MonthOfLastFollowup } + * + */ + public void setMonthOfLastFollowup(MonthOfLastFollowup value) { + this.monthOfLastFollowup = value; + } + + /** + * Gets the value of the yearOfLastFollowup property. + * + * @return + * possible object is + * {@link YearOfLastFollowup } + * + */ + public YearOfLastFollowup getYearOfLastFollowup() { + return yearOfLastFollowup; + } + + /** + * Sets the value of the yearOfLastFollowup property. + * + * @param value + * allowed object is + * {@link YearOfLastFollowup } + * + */ + public void setYearOfLastFollowup(YearOfLastFollowup value) { + this.yearOfLastFollowup = value; + } + + /** + * Gets the value of the daysToLastFollowup property. + * + * @return + * possible object is + * {@link DaysToLastFollowup } + * + */ + public DaysToLastFollowup getDaysToLastFollowup() { + return daysToLastFollowup; + } + + /** + * Sets the value of the daysToLastFollowup property. + * + * @param value + * allowed object is + * {@link DaysToLastFollowup } + * + */ + public void setDaysToLastFollowup(DaysToLastFollowup value) { + this.daysToLastFollowup = value; + } + + /** + * Gets the value of the patientProgressionStatus property. + * + * @return + * possible object is + * {@link PatientProgressionStatus } + * + */ + public PatientProgressionStatus getPatientProgressionStatus() { + return patientProgressionStatus; + } + + /** + * Sets the value of the patientProgressionStatus property. + * + * @param value + * allowed object is + * {@link PatientProgressionStatus } + * + */ + public void setPatientProgressionStatus(PatientProgressionStatus value) { + this.patientProgressionStatus = value; + } + + /** + * Gets the value of the progressionDates property. + * + * @return + * possible object is + * {@link ProgressionDates } + * + */ + public ProgressionDates getProgressionDates() { + return progressionDates; + } + + /** + * Sets the value of the progressionDates property. + * + * @param value + * allowed object is + * {@link ProgressionDates } + * + */ + public void setProgressionDates(ProgressionDates value) { + this.progressionDates = value; + } + + /** + * Gets the value of the raceList property. + * + * @return + * possible object is + * {@link RaceList } + * + */ + public RaceList getRaceList() { + return raceList; + } + + /** + * Sets the value of the raceList property. + * + * @param value + * allowed object is + * {@link RaceList } + * + */ + public void setRaceList(RaceList value) { + this.raceList = value; + } + + /** + * Gets the value of the bcrPatientBarcode property. + * + * @return + * possible object is + * {@link BcrPatientBarcode } + * + */ + public BcrPatientBarcode getBcrPatientBarcode() { + return bcrPatientBarcode; + } + + /** + * Sets the value of the bcrPatientBarcode property. + * + * @param value + * allowed object is + * {@link BcrPatientBarcode } + * + */ + public void setBcrPatientBarcode(BcrPatientBarcode value) { + this.bcrPatientBarcode = value; + } + + /** + * Gets the value of the tissueSourceSite property. + * + * @return + * possible object is + * {@link TissueSourceSite } + * + */ + public TissueSourceSite getTissueSourceSite() { + return tissueSourceSite; + } + + /** + * Sets the value of the tissueSourceSite property. + * + * @param value + * allowed object is + * {@link TissueSourceSite } + * + */ + public void setTissueSourceSite(TissueSourceSite value) { + this.tissueSourceSite = value; + } + + /** + * Gets the value of the patientId property. + * + * @return + * possible object is + * {@link PatientId } + * + */ + public PatientId getPatientId() { + return patientId; + } + + /** + * Sets the value of the patientId property. + * + * @param value + * allowed object is + * {@link PatientId } + * + */ + public void setPatientId(PatientId value) { + this.patientId = value; + } + + /** + * Gets the value of the bcrPatientUuid property. + * + * @return + * possible object is + * {@link BcrPatientUuid } + * + */ + public BcrPatientUuid getBcrPatientUuid() { + return bcrPatientUuid; + } + + /** + * Sets the value of the bcrPatientUuid property. + * + * @param value + * allowed object is + * {@link BcrPatientUuid } + * + */ + public void setBcrPatientUuid(BcrPatientUuid value) { + this.bcrPatientUuid = value; + } + + /** + * Gets the value of the historyOfNeoadjuvantTreatment property. + * + * @return + * possible object is + * {@link HistoryOfNeoadjuvantTreatment } + * + */ + public HistoryOfNeoadjuvantTreatment getHistoryOfNeoadjuvantTreatment() { + return historyOfNeoadjuvantTreatment; + } + + /** + * Sets the value of the historyOfNeoadjuvantTreatment property. + * + * @param value + * allowed object is + * {@link HistoryOfNeoadjuvantTreatment } + * + */ + public void setHistoryOfNeoadjuvantTreatment(HistoryOfNeoadjuvantTreatment value) { + this.historyOfNeoadjuvantTreatment = value; + } + + /** + * Gets the value of the historyPriorSurgeryIndicator property. + * + * @return + * possible object is + * {@link HistoryPriorSurgeryIndicator } + * + */ + public HistoryPriorSurgeryIndicator getHistoryPriorSurgeryIndicator() { + return historyPriorSurgeryIndicator; + } + + /** + * Sets the value of the historyPriorSurgeryIndicator property. + * + * @param value + * allowed object is + * {@link HistoryPriorSurgeryIndicator } + * + */ + public void setHistoryPriorSurgeryIndicator(HistoryPriorSurgeryIndicator value) { + this.historyPriorSurgeryIndicator = value; + } + + /** + * Gets the value of the historyPriorSurgeryType property. + * + * @return + * possible object is + * {@link HistoryPriorSurgeryType } + * + */ + public HistoryPriorSurgeryType getHistoryPriorSurgeryType() { + return historyPriorSurgeryType; + } + + /** + * Sets the value of the historyPriorSurgeryType property. + * + * @param value + * allowed object is + * {@link HistoryPriorSurgeryType } + * + */ + public void setHistoryPriorSurgeryType(HistoryPriorSurgeryType value) { + this.historyPriorSurgeryType = value; + } + + /** + * Gets the value of the historyPriorSurgeryTypeOther property. + * + * @return + * possible object is + * {@link HistoryPriorSurgeryTypeOther } + * + */ + public HistoryPriorSurgeryTypeOther getHistoryPriorSurgeryTypeOther() { + return historyPriorSurgeryTypeOther; + } + + /** + * Sets the value of the historyPriorSurgeryTypeOther property. + * + * @param value + * allowed object is + * {@link HistoryPriorSurgeryTypeOther } + * + */ + public void setHistoryPriorSurgeryTypeOther(HistoryPriorSurgeryTypeOther value) { + this.historyPriorSurgeryTypeOther = value; + } + + /** + * Gets the value of the informedConsentVerified property. + * + * @return + * possible object is + * {@link InformedConsentVerified } + * + */ + public InformedConsentVerified getInformedConsentVerified() { + return informedConsentVerified; + } + + /** + * Sets the value of the informedConsentVerified property. + * + * @param value + * allowed object is + * {@link InformedConsentVerified } + * + */ + public void setInformedConsentVerified(InformedConsentVerified value) { + this.informedConsentVerified = value; + } + + /** + * Gets the value of the historyOfRadiationPrimarySite property. + * + * @return + * possible object is + * {@link HistoryOfRadiationPrimarySite } + * + */ + public HistoryOfRadiationPrimarySite getHistoryOfRadiationPrimarySite() { + return historyOfRadiationPrimarySite; + } + + /** + * Sets the value of the historyOfRadiationPrimarySite property. + * + * @param value + * allowed object is + * {@link HistoryOfRadiationPrimarySite } + * + */ + public void setHistoryOfRadiationPrimarySite(HistoryOfRadiationPrimarySite value) { + this.historyOfRadiationPrimarySite = value; + } + + /** + * Gets the value of the historyOfRadiationMetastaticSite property. + * + * @return + * possible object is + * {@link HistoryOfRadiationMetastaticSite } + * + */ + public HistoryOfRadiationMetastaticSite getHistoryOfRadiationMetastaticSite() { + return historyOfRadiationMetastaticSite; + } + + /** + * Sets the value of the historyOfRadiationMetastaticSite property. + * + * @param value + * allowed object is + * {@link HistoryOfRadiationMetastaticSite } + * + */ + public void setHistoryOfRadiationMetastaticSite(HistoryOfRadiationMetastaticSite value) { + this.historyOfRadiationMetastaticSite = value; + } + + /** + * Gets the value of the icdO3Site property. + * + * @return + * possible object is + * {@link IcdO3Site } + * + */ + public IcdO3Site getIcdO3Site() { + return icdO3Site; + } + + /** + * Sets the value of the icdO3Site property. + * + * @param value + * allowed object is + * {@link IcdO3Site } + * + */ + public void setIcdO3Site(IcdO3Site value) { + this.icdO3Site = value; + } + + /** + * Gets the value of the icdO3Histology property. + * + * @return + * possible object is + * {@link IcdO3Histology } + * + */ + public IcdO3Histology getIcdO3Histology() { + return icdO3Histology; + } + + /** + * Sets the value of the icdO3Histology property. + * + * @param value + * allowed object is + * {@link IcdO3Histology } + * + */ + public void setIcdO3Histology(IcdO3Histology value) { + this.icdO3Histology = value; + } + + /** + * Gets the value of the icd10 property. + * + * @return + * possible object is + * {@link Icd10 } + * + */ + public Icd10 getIcd10() { + return icd10; + } + + /** + * Sets the value of the icd10 property. + * + * @param value + * allowed object is + * {@link Icd10 } + * + */ + public void setIcd10(Icd10 value) { + this.icd10 = value; + } + + /** + * Gets the value of the dayOfInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link DayOfInitialPathologicDiagnosis } + * + */ + public DayOfInitialPathologicDiagnosis getDayOfInitialPathologicDiagnosis() { + return dayOfInitialPathologicDiagnosis; + } + + /** + * Sets the value of the dayOfInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link DayOfInitialPathologicDiagnosis } + * + */ + public void setDayOfInitialPathologicDiagnosis(DayOfInitialPathologicDiagnosis value) { + this.dayOfInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the monthOfInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link MonthOfInitialPathologicDiagnosis } + * + */ + public MonthOfInitialPathologicDiagnosis getMonthOfInitialPathologicDiagnosis() { + return monthOfInitialPathologicDiagnosis; + } + + /** + * Sets the value of the monthOfInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link MonthOfInitialPathologicDiagnosis } + * + */ + public void setMonthOfInitialPathologicDiagnosis(MonthOfInitialPathologicDiagnosis value) { + this.monthOfInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the daysToInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link DaysToInitialPathologicDiagnosis } + * + */ + public DaysToInitialPathologicDiagnosis getDaysToInitialPathologicDiagnosis() { + return daysToInitialPathologicDiagnosis; + } + + /** + * Sets the value of the daysToInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link DaysToInitialPathologicDiagnosis } + * + */ + public void setDaysToInitialPathologicDiagnosis(DaysToInitialPathologicDiagnosis value) { + this.daysToInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the ageAtInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link AgeAtInitialPathologicDiagnosis } + * + */ + public AgeAtInitialPathologicDiagnosis getAgeAtInitialPathologicDiagnosis() { + return ageAtInitialPathologicDiagnosis; + } + + /** + * Sets the value of the ageAtInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link AgeAtInitialPathologicDiagnosis } + * + */ + public void setAgeAtInitialPathologicDiagnosis(AgeAtInitialPathologicDiagnosis value) { + this.ageAtInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the yearOfInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link YearOfInitialPathologicDiagnosis } + * + */ + public YearOfInitialPathologicDiagnosis getYearOfInitialPathologicDiagnosis() { + return yearOfInitialPathologicDiagnosis; + } + + /** + * Sets the value of the yearOfInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link YearOfInitialPathologicDiagnosis } + * + */ + public void setYearOfInitialPathologicDiagnosis(YearOfInitialPathologicDiagnosis value) { + this.yearOfInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the ethnicity property. + * + * @return + * possible object is + * {@link Ethnicity } + * + */ + public Ethnicity getEthnicity() { + return ethnicity; + } + + /** + * Sets the value of the ethnicity property. + * + * @param value + * allowed object is + * {@link Ethnicity } + * + */ + public void setEthnicity(Ethnicity value) { + this.ethnicity = value; + } + + /** + * The person_neoplasm_cancer_status question is asked in both the initial enrollment form and the follow-up form(s). + * + * @return + * possible object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public PersonNeoplasmCancerStatus getPersonNeoplasmCancerStatus() { + return personNeoplasmCancerStatus; + } + + /** + * Sets the value of the personNeoplasmCancerStatus property. + * + * @param value + * allowed object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public void setPersonNeoplasmCancerStatus(PersonNeoplasmCancerStatus value) { + this.personNeoplasmCancerStatus = value; + } + + /** + * Gets the value of the primaryLymphNodePresentationAssessment property. + * + * @return + * possible object is + * {@link PrimaryLymphNodePresentationAssessment } + * + */ + public PrimaryLymphNodePresentationAssessment getPrimaryLymphNodePresentationAssessment() { + return primaryLymphNodePresentationAssessment; + } + + /** + * Sets the value of the primaryLymphNodePresentationAssessment property. + * + * @param value + * allowed object is + * {@link PrimaryLymphNodePresentationAssessment } + * + */ + public void setPrimaryLymphNodePresentationAssessment(PrimaryLymphNodePresentationAssessment value) { + this.primaryLymphNodePresentationAssessment = value; + } + + /** + * Gets the value of the lymphNodeExaminedCount property. + * + * @return + * possible object is + * {@link LymphNodeExaminedCount } + * + */ + public LymphNodeExaminedCount getLymphNodeExaminedCount() { + return lymphNodeExaminedCount; + } + + /** + * Sets the value of the lymphNodeExaminedCount property. + * + * @param value + * allowed object is + * {@link LymphNodeExaminedCount } + * + */ + public void setLymphNodeExaminedCount(LymphNodeExaminedCount value) { + this.lymphNodeExaminedCount = value; + } + + /** + * Gets the value of the erDetectionMethodText property. + * + * @return + * possible object is + * {@link ErDetectionMethodText } + * + */ + public ErDetectionMethodText getErDetectionMethodText() { + return erDetectionMethodText; + } + + /** + * Sets the value of the erDetectionMethodText property. + * + * @param value + * allowed object is + * {@link ErDetectionMethodText } + * + */ + public void setErDetectionMethodText(ErDetectionMethodText value) { + this.erDetectionMethodText = value; + } + + /** + * Gets the value of the pgrDetectionMethodText property. + * + * @return + * possible object is + * {@link PgrDetectionMethodText } + * + */ + public PgrDetectionMethodText getPgrDetectionMethodText() { + return pgrDetectionMethodText; + } + + /** + * Sets the value of the pgrDetectionMethodText property. + * + * @param value + * allowed object is + * {@link PgrDetectionMethodText } + * + */ + public void setPgrDetectionMethodText(PgrDetectionMethodText value) { + this.pgrDetectionMethodText = value; + } + + /** + * Gets the value of the anatomicNeoplasmSubdivisions property. + * + * @return + * possible object is + * {@link AnatomicNeoplasmSubdivisions } + * + */ + public AnatomicNeoplasmSubdivisions getAnatomicNeoplasmSubdivisions() { + return anatomicNeoplasmSubdivisions; + } + + /** + * Sets the value of the anatomicNeoplasmSubdivisions property. + * + * @param value + * allowed object is + * {@link AnatomicNeoplasmSubdivisions } + * + */ + public void setAnatomicNeoplasmSubdivisions(AnatomicNeoplasmSubdivisions value) { + this.anatomicNeoplasmSubdivisions = value; + } + + /** + * Gets the value of the her2NeuChromosone17SignalRatioValue property. + * + * @return + * possible object is + * {@link Her2NeuChromosone17SignalRatioValue } + * + */ + public Her2NeuChromosone17SignalRatioValue getHer2NeuChromosone17SignalRatioValue() { + return her2NeuChromosone17SignalRatioValue; + } + + /** + * Sets the value of the her2NeuChromosone17SignalRatioValue property. + * + * @param value + * allowed object is + * {@link Her2NeuChromosone17SignalRatioValue } + * + */ + public void setHer2NeuChromosone17SignalRatioValue(Her2NeuChromosone17SignalRatioValue value) { + this.her2NeuChromosone17SignalRatioValue = value; + } + + /** + * Gets the value of the axillaryLymphNodeStageMethodType property. + * + * @return + * possible object is + * {@link AxillaryLymphNodeStageMethodType } + * + */ + public AxillaryLymphNodeStageMethodType getAxillaryLymphNodeStageMethodType() { + return axillaryLymphNodeStageMethodType; + } + + /** + * Sets the value of the axillaryLymphNodeStageMethodType property. + * + * @param value + * allowed object is + * {@link AxillaryLymphNodeStageMethodType } + * + */ + public void setAxillaryLymphNodeStageMethodType(AxillaryLymphNodeStageMethodType value) { + this.axillaryLymphNodeStageMethodType = value; + } + + /** + * Gets the value of the axillaryLymphNodeStageOtherMethodDescriptiveText property. + * + * @return + * possible object is + * {@link AxillaryLymphNodeStageOtherMethodDescriptiveText } + * + */ + public AxillaryLymphNodeStageOtherMethodDescriptiveText getAxillaryLymphNodeStageOtherMethodDescriptiveText() { + return axillaryLymphNodeStageOtherMethodDescriptiveText; + } + + /** + * Sets the value of the axillaryLymphNodeStageOtherMethodDescriptiveText property. + * + * @param value + * allowed object is + * {@link AxillaryLymphNodeStageOtherMethodDescriptiveText } + * + */ + public void setAxillaryLymphNodeStageOtherMethodDescriptiveText(AxillaryLymphNodeStageOtherMethodDescriptiveText value) { + this.axillaryLymphNodeStageOtherMethodDescriptiveText = value; + } + + /** + * Gets the value of the breastCarcinomaSurgicalProcedureName property. + * + * @return + * possible object is + * {@link BreastCarcinomaSurgicalProcedureName } + * + */ + public BreastCarcinomaSurgicalProcedureName getBreastCarcinomaSurgicalProcedureName() { + return breastCarcinomaSurgicalProcedureName; + } + + /** + * Sets the value of the breastCarcinomaSurgicalProcedureName property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaSurgicalProcedureName } + * + */ + public void setBreastCarcinomaSurgicalProcedureName(BreastCarcinomaSurgicalProcedureName value) { + this.breastCarcinomaSurgicalProcedureName = value; + } + + /** + * Gets the value of the breastNeoplasmOtherSurgicalProcedureDescriptiveText property. + * + * @return + * possible object is + * {@link BreastNeoplasmOtherSurgicalProcedureDescriptiveText } + * + */ + public BreastNeoplasmOtherSurgicalProcedureDescriptiveText getBreastNeoplasmOtherSurgicalProcedureDescriptiveText() { + return breastNeoplasmOtherSurgicalProcedureDescriptiveText; + } + + /** + * Sets the value of the breastNeoplasmOtherSurgicalProcedureDescriptiveText property. + * + * @param value + * allowed object is + * {@link BreastNeoplasmOtherSurgicalProcedureDescriptiveText } + * + */ + public void setBreastNeoplasmOtherSurgicalProcedureDescriptiveText(BreastNeoplasmOtherSurgicalProcedureDescriptiveText value) { + this.breastNeoplasmOtherSurgicalProcedureDescriptiveText = value; + } + + /** + * Gets the value of the breastCarcinomaPrimarySurgicalProcedureName property. + * + * @return + * possible object is + * {@link BreastCarcinomaPrimarySurgicalProcedureName } + * + */ + public BreastCarcinomaPrimarySurgicalProcedureName getBreastCarcinomaPrimarySurgicalProcedureName() { + return breastCarcinomaPrimarySurgicalProcedureName; + } + + /** + * Sets the value of the breastCarcinomaPrimarySurgicalProcedureName property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaPrimarySurgicalProcedureName } + * + */ + public void setBreastCarcinomaPrimarySurgicalProcedureName(BreastCarcinomaPrimarySurgicalProcedureName value) { + this.breastCarcinomaPrimarySurgicalProcedureName = value; + } + + /** + * Gets the value of the surgicalProcedurePurposeOtherText property. + * + * @return + * possible object is + * {@link SurgicalProcedurePurposeOtherText } + * + */ + public SurgicalProcedurePurposeOtherText getSurgicalProcedurePurposeOtherText() { + return surgicalProcedurePurposeOtherText; + } + + /** + * Sets the value of the surgicalProcedurePurposeOtherText property. + * + * @param value + * allowed object is + * {@link SurgicalProcedurePurposeOtherText } + * + */ + public void setSurgicalProcedurePurposeOtherText(SurgicalProcedurePurposeOtherText value) { + this.surgicalProcedurePurposeOtherText = value; + } + + /** + * Gets the value of the histologicalType property. + * + * @return + * possible object is + * {@link HistologicalType } + * + */ + public HistologicalType getHistologicalType() { + return histologicalType; + } + + /** + * Sets the value of the histologicalType property. + * + * @param value + * allowed object is + * {@link HistologicalType } + * + */ + public void setHistologicalType(HistologicalType value) { + this.histologicalType = value; + } + + /** + * Gets the value of the histologicalTypeOther property. + * + * @return + * possible object is + * {@link HistologicalTypeOther } + * + */ + public HistologicalTypeOther getHistologicalTypeOther() { + return histologicalTypeOther; + } + + /** + * Sets the value of the histologicalTypeOther property. + * + * @param value + * allowed object is + * {@link HistologicalTypeOther } + * + */ + public void setHistologicalTypeOther(HistologicalTypeOther value) { + this.histologicalTypeOther = value; + } + + /** + * Gets the value of the menopauseStatus property. + * + * @return + * possible object is + * {@link MenopauseStatus } + * + */ + public MenopauseStatus getMenopauseStatus() { + return menopauseStatus; + } + + /** + * Sets the value of the menopauseStatus property. + * + * @param value + * allowed object is + * {@link MenopauseStatus } + * + */ + public void setMenopauseStatus(MenopauseStatus value) { + this.menopauseStatus = value; + } + + /** + * Gets the value of the breastCarcinomaProgesteroneReceptorStatus property. + * + * @return + * possible object is + * {@link BreastCarcinomaProgesteroneReceptorStatus } + * + */ + public BreastCarcinomaProgesteroneReceptorStatus getBreastCarcinomaProgesteroneReceptorStatus() { + return breastCarcinomaProgesteroneReceptorStatus; + } + + /** + * Sets the value of the breastCarcinomaProgesteroneReceptorStatus property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaProgesteroneReceptorStatus } + * + */ + public void setBreastCarcinomaProgesteroneReceptorStatus(BreastCarcinomaProgesteroneReceptorStatus value) { + this.breastCarcinomaProgesteroneReceptorStatus = value; + } + + /** + * Gets the value of the cytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator property. + * + * @return + * possible object is + * {@link CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator } + * + */ + public CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator getCytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator() { + return cytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator; + } + + /** + * Sets the value of the cytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator property. + * + * @param value + * allowed object is + * {@link CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator } + * + */ + public void setCytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator(CytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator value) { + this.cytokeratinImmunohistochemistryStainingMethodMicrometastasisIndicator = value; + } + + /** + * Gets the value of the breastCarcinomaImmunohistochemistryErPosFindingScale property. + * + * @return + * possible object is + * {@link BreastCarcinomaImmunohistochemistryErPosFindingScale } + * + */ + public BreastCarcinomaImmunohistochemistryErPosFindingScale getBreastCarcinomaImmunohistochemistryErPosFindingScale() { + return breastCarcinomaImmunohistochemistryErPosFindingScale; + } + + /** + * Sets the value of the breastCarcinomaImmunohistochemistryErPosFindingScale property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaImmunohistochemistryErPosFindingScale } + * + */ + public void setBreastCarcinomaImmunohistochemistryErPosFindingScale(BreastCarcinomaImmunohistochemistryErPosFindingScale value) { + this.breastCarcinomaImmunohistochemistryErPosFindingScale = value; + } + + /** + * Gets the value of the immunohistochemistryPositiveCellScore property. + * + * @return + * possible object is + * {@link ImmunohistochemistryPositiveCellScore } + * + */ + public ImmunohistochemistryPositiveCellScore getImmunohistochemistryPositiveCellScore() { + return immunohistochemistryPositiveCellScore; + } + + /** + * Sets the value of the immunohistochemistryPositiveCellScore property. + * + * @param value + * allowed object is + * {@link ImmunohistochemistryPositiveCellScore } + * + */ + public void setImmunohistochemistryPositiveCellScore(ImmunohistochemistryPositiveCellScore value) { + this.immunohistochemistryPositiveCellScore = value; + } + + /** + * Gets the value of the her2ImmunohistochemistryLevelResult property. + * + * @return + * possible object is + * {@link Her2ImmunohistochemistryLevelResult } + * + */ + public Her2ImmunohistochemistryLevelResult getHer2ImmunohistochemistryLevelResult() { + return her2ImmunohistochemistryLevelResult; + } + + /** + * Sets the value of the her2ImmunohistochemistryLevelResult property. + * + * @param value + * allowed object is + * {@link Her2ImmunohistochemistryLevelResult } + * + */ + public void setHer2ImmunohistochemistryLevelResult(Her2ImmunohistochemistryLevelResult value) { + this.her2ImmunohistochemistryLevelResult = value; + } + + /** + * Gets the value of the breastCancerSurgeryMarginStatus property. + * + * @return + * possible object is + * {@link BreastCancerSurgeryMarginStatus } + * + */ + public BreastCancerSurgeryMarginStatus getBreastCancerSurgeryMarginStatus() { + return breastCancerSurgeryMarginStatus; + } + + /** + * Sets the value of the breastCancerSurgeryMarginStatus property. + * + * @param value + * allowed object is + * {@link BreastCancerSurgeryMarginStatus } + * + */ + public void setBreastCancerSurgeryMarginStatus(BreastCancerSurgeryMarginStatus value) { + this.breastCancerSurgeryMarginStatus = value; + } + + /** + * Gets the value of the marginStatus property. + * + * @return + * possible object is + * {@link MarginStatus } + * + */ + public MarginStatus getMarginStatus() { + return marginStatus; + } + + /** + * Sets the value of the marginStatus property. + * + * @param value + * allowed object is + * {@link MarginStatus } + * + */ + public void setMarginStatus(MarginStatus value) { + this.marginStatus = value; + } + + /** + * Gets the value of the initialPathologicDiagnosisMethod property. + * + * @return + * possible object is + * {@link InitialPathologicDiagnosisMethod } + * + */ + public InitialPathologicDiagnosisMethod getInitialPathologicDiagnosisMethod() { + return initialPathologicDiagnosisMethod; + } + + /** + * Sets the value of the initialPathologicDiagnosisMethod property. + * + * @param value + * allowed object is + * {@link InitialPathologicDiagnosisMethod } + * + */ + public void setInitialPathologicDiagnosisMethod(InitialPathologicDiagnosisMethod value) { + this.initialPathologicDiagnosisMethod = value; + } + + /** + * Gets the value of the initPathologyDxMethodOther property. + * + * @return + * possible object is + * {@link InitPathologyDxMethodOther } + * + */ + public InitPathologyDxMethodOther getInitPathologyDxMethodOther() { + return initPathologyDxMethodOther; + } + + /** + * Sets the value of the initPathologyDxMethodOther property. + * + * @param value + * allowed object is + * {@link InitPathologyDxMethodOther } + * + */ + public void setInitPathologyDxMethodOther(InitPathologyDxMethodOther value) { + this.initPathologyDxMethodOther = value; + } + + /** + * Gets the value of the labProcedureHer2NeuInSituHybridOutcomeType property. + * + * @return + * possible object is + * {@link LabProcedureHer2NeuInSituHybridOutcomeType } + * + */ + public LabProcedureHer2NeuInSituHybridOutcomeType getLabProcedureHer2NeuInSituHybridOutcomeType() { + return labProcedureHer2NeuInSituHybridOutcomeType; + } + + /** + * Sets the value of the labProcedureHer2NeuInSituHybridOutcomeType property. + * + * @param value + * allowed object is + * {@link LabProcedureHer2NeuInSituHybridOutcomeType } + * + */ + public void setLabProcedureHer2NeuInSituHybridOutcomeType(LabProcedureHer2NeuInSituHybridOutcomeType value) { + this.labProcedureHer2NeuInSituHybridOutcomeType = value; + } + + /** + * Gets the value of the breastCarcinomaEstrogenReceptorStatus property. + * + * @return + * possible object is + * {@link BreastCarcinomaEstrogenReceptorStatus } + * + */ + public BreastCarcinomaEstrogenReceptorStatus getBreastCarcinomaEstrogenReceptorStatus() { + return breastCarcinomaEstrogenReceptorStatus; + } + + /** + * Sets the value of the breastCarcinomaEstrogenReceptorStatus property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaEstrogenReceptorStatus } + * + */ + public void setBreastCarcinomaEstrogenReceptorStatus(BreastCarcinomaEstrogenReceptorStatus value) { + this.breastCarcinomaEstrogenReceptorStatus = value; + } + + /** + * Gets the value of the labProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @return + * possible object is + * {@link LabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public LabProcHer2NeuImmunohistochemistryReceptorStatus getLabProcHer2NeuImmunohistochemistryReceptorStatus() { + return labProcHer2NeuImmunohistochemistryReceptorStatus; + } + + /** + * Sets the value of the labProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @param value + * allowed object is + * {@link LabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public void setLabProcHer2NeuImmunohistochemistryReceptorStatus(LabProcHer2NeuImmunohistochemistryReceptorStatus value) { + this.labProcHer2NeuImmunohistochemistryReceptorStatus = value; + } + + /** + * Gets the value of the numberOfLymphnodesPositiveByIhc property. + * + * @return + * possible object is + * {@link NumberOfLymphnodesPositiveByIhc } + * + */ + public NumberOfLymphnodesPositiveByIhc getNumberOfLymphnodesPositiveByIhc() { + return numberOfLymphnodesPositiveByIhc; + } + + /** + * Sets the value of the numberOfLymphnodesPositiveByIhc property. + * + * @param value + * allowed object is + * {@link NumberOfLymphnodesPositiveByIhc } + * + */ + public void setNumberOfLymphnodesPositiveByIhc(NumberOfLymphnodesPositiveByIhc value) { + this.numberOfLymphnodesPositiveByIhc = value; + } + + /** + * Gets the value of the numberOfLymphnodesPositiveByHe property. + * + * @return + * possible object is + * {@link NumberOfLymphnodesPositiveByHe } + * + */ + public NumberOfLymphnodesPositiveByHe getNumberOfLymphnodesPositiveByHe() { + return numberOfLymphnodesPositiveByHe; + } + + /** + * Sets the value of the numberOfLymphnodesPositiveByHe property. + * + * @param value + * allowed object is + * {@link NumberOfLymphnodesPositiveByHe } + * + */ + public void setNumberOfLymphnodesPositiveByHe(NumberOfLymphnodesPositiveByHe value) { + this.numberOfLymphnodesPositiveByHe = value; + } + + /** + * Gets the value of the posFindingProgesteroneReceptorOtherMeasurementScaleText property. + * + * @return + * possible object is + * {@link PosFindingProgesteroneReceptorOtherMeasurementScaleText } + * + */ + public PosFindingProgesteroneReceptorOtherMeasurementScaleText getPosFindingProgesteroneReceptorOtherMeasurementScaleText() { + return posFindingProgesteroneReceptorOtherMeasurementScaleText; + } + + /** + * Sets the value of the posFindingProgesteroneReceptorOtherMeasurementScaleText property. + * + * @param value + * allowed object is + * {@link PosFindingProgesteroneReceptorOtherMeasurementScaleText } + * + */ + public void setPosFindingProgesteroneReceptorOtherMeasurementScaleText(PosFindingProgesteroneReceptorOtherMeasurementScaleText value) { + this.posFindingProgesteroneReceptorOtherMeasurementScaleText = value; + } + + /** + * Gets the value of the positiveFindingEstrogenReceptorOtherMeasurementScaleText property. + * + * @return + * possible object is + * {@link PositiveFindingEstrogenReceptorOtherMeasurementScaleText } + * + */ + public PositiveFindingEstrogenReceptorOtherMeasurementScaleText getPositiveFindingEstrogenReceptorOtherMeasurementScaleText() { + return positiveFindingEstrogenReceptorOtherMeasurementScaleText; + } + + /** + * Sets the value of the positiveFindingEstrogenReceptorOtherMeasurementScaleText property. + * + * @param value + * allowed object is + * {@link PositiveFindingEstrogenReceptorOtherMeasurementScaleText } + * + */ + public void setPositiveFindingEstrogenReceptorOtherMeasurementScaleText(PositiveFindingEstrogenReceptorOtherMeasurementScaleText value) { + this.positiveFindingEstrogenReceptorOtherMeasurementScaleText = value; + } + + /** + * Gets the value of the her2ErbbPosFindingCellPercentCategory property. + * + * @return + * possible object is + * {@link Her2ErbbPosFindingCellPercentCategory } + * + */ + public Her2ErbbPosFindingCellPercentCategory getHer2ErbbPosFindingCellPercentCategory() { + return her2ErbbPosFindingCellPercentCategory; + } + + /** + * Sets the value of the her2ErbbPosFindingCellPercentCategory property. + * + * @param value + * allowed object is + * {@link Her2ErbbPosFindingCellPercentCategory } + * + */ + public void setHer2ErbbPosFindingCellPercentCategory(Her2ErbbPosFindingCellPercentCategory value) { + this.her2ErbbPosFindingCellPercentCategory = value; + } + + /** + * Gets the value of the posFindingHer2Erbb2OtherMeasurementScaleText property. + * + * @return + * possible object is + * {@link PosFindingHer2Erbb2OtherMeasurementScaleText } + * + */ + public PosFindingHer2Erbb2OtherMeasurementScaleText getPosFindingHer2Erbb2OtherMeasurementScaleText() { + return posFindingHer2Erbb2OtherMeasurementScaleText; + } + + /** + * Sets the value of the posFindingHer2Erbb2OtherMeasurementScaleText property. + * + * @param value + * allowed object is + * {@link PosFindingHer2Erbb2OtherMeasurementScaleText } + * + */ + public void setPosFindingHer2Erbb2OtherMeasurementScaleText(PosFindingHer2Erbb2OtherMeasurementScaleText value) { + this.posFindingHer2Erbb2OtherMeasurementScaleText = value; + } + + /** + * Gets the value of the her2ErbbMethodCalculationMethodText property. + * + * @return + * possible object is + * {@link Her2ErbbMethodCalculationMethodText } + * + */ + public Her2ErbbMethodCalculationMethodText getHer2ErbbMethodCalculationMethodText() { + return her2ErbbMethodCalculationMethodText; + } + + /** + * Sets the value of the her2ErbbMethodCalculationMethodText property. + * + * @param value + * allowed object is + * {@link Her2ErbbMethodCalculationMethodText } + * + */ + public void setHer2ErbbMethodCalculationMethodText(Her2ErbbMethodCalculationMethodText value) { + this.her2ErbbMethodCalculationMethodText = value; + } + + /** + * Gets the value of the her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount property. + * + * @return + * possible object is + * {@link Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount } + * + */ + public Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount getHer2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount() { + return her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount; + } + + /** + * Sets the value of the her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount property. + * + * @param value + * allowed object is + * {@link Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount } + * + */ + public void setHer2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount(Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount value) { + this.her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount = value; + } + + /** + * Gets the value of the her2AndCentromere17PositiveFindingOtherMeasurementScaleText property. + * + * @return + * possible object is + * {@link Her2AndCentromere17PositiveFindingOtherMeasurementScaleText } + * + */ + public Her2AndCentromere17PositiveFindingOtherMeasurementScaleText getHer2AndCentromere17PositiveFindingOtherMeasurementScaleText() { + return her2AndCentromere17PositiveFindingOtherMeasurementScaleText; + } + + /** + * Sets the value of the her2AndCentromere17PositiveFindingOtherMeasurementScaleText property. + * + * @param value + * allowed object is + * {@link Her2AndCentromere17PositiveFindingOtherMeasurementScaleText } + * + */ + public void setHer2AndCentromere17PositiveFindingOtherMeasurementScaleText(Her2AndCentromere17PositiveFindingOtherMeasurementScaleText value) { + this.her2AndCentromere17PositiveFindingOtherMeasurementScaleText = value; + } + + /** + * Gets the value of the her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @return + * possible object is + * {@link Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText getHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText() { + return her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + } + + /** + * Sets the value of the her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @param value + * allowed object is + * {@link Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public void setHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText value) { + this.her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText = value; + } + + /** + * Gets the value of the tissueProspectiveCollectionIndicator property. + * + * @return + * possible object is + * {@link TissueProspectiveCollectionIndicator } + * + */ + public TissueProspectiveCollectionIndicator getTissueProspectiveCollectionIndicator() { + return tissueProspectiveCollectionIndicator; + } + + /** + * Sets the value of the tissueProspectiveCollectionIndicator property. + * + * @param value + * allowed object is + * {@link TissueProspectiveCollectionIndicator } + * + */ + public void setTissueProspectiveCollectionIndicator(TissueProspectiveCollectionIndicator value) { + this.tissueProspectiveCollectionIndicator = value; + } + + /** + * Gets the value of the tissueRetrospectiveCollectionIndicator property. + * + * @return + * possible object is + * {@link TissueRetrospectiveCollectionIndicator } + * + */ + public TissueRetrospectiveCollectionIndicator getTissueRetrospectiveCollectionIndicator() { + return tissueRetrospectiveCollectionIndicator; + } + + /** + * Sets the value of the tissueRetrospectiveCollectionIndicator property. + * + * @param value + * allowed object is + * {@link TissueRetrospectiveCollectionIndicator } + * + */ + public void setTissueRetrospectiveCollectionIndicator(TissueRetrospectiveCollectionIndicator value) { + this.tissueRetrospectiveCollectionIndicator = value; + } + + /** + * Gets the value of the fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange property. + * + * @return + * possible object is + * {@link FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange } + * + */ + public FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange getFluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange() { + return fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange; + } + + /** + * Sets the value of the fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange property. + * + * @param value + * allowed object is + * {@link FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange } + * + */ + public void setFluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange(FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange value) { + this.fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange = value; + } + + /** + * Gets the value of the firstNonlymphNodeMetastasisAnatomicSites property. + * + * @return + * possible object is + * {@link FirstNonlymphNodeMetastasisAnatomicSites } + * + */ + public FirstNonlymphNodeMetastasisAnatomicSites getFirstNonlymphNodeMetastasisAnatomicSites() { + return firstNonlymphNodeMetastasisAnatomicSites; + } + + /** + * Sets the value of the firstNonlymphNodeMetastasisAnatomicSites property. + * + * @param value + * allowed object is + * {@link FirstNonlymphNodeMetastasisAnatomicSites } + * + */ + public void setFirstNonlymphNodeMetastasisAnatomicSites(FirstNonlymphNodeMetastasisAnatomicSites value) { + this.firstNonlymphNodeMetastasisAnatomicSites = value; + } + + /** + * Gets the value of the erLevelCellPercentageCategory property. + * + * @return + * possible object is + * {@link ErLevelCellPercentageCategory } + * + */ + public ErLevelCellPercentageCategory getErLevelCellPercentageCategory() { + return erLevelCellPercentageCategory; + } + + /** + * Sets the value of the erLevelCellPercentageCategory property. + * + * @param value + * allowed object is + * {@link ErLevelCellPercentageCategory } + * + */ + public void setErLevelCellPercentageCategory(ErLevelCellPercentageCategory value) { + this.erLevelCellPercentageCategory = value; + } + + /** + * Gets the value of the progesteroneReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link ProgesteroneReceptorLevelCellPercentCategory } + * + */ + public ProgesteroneReceptorLevelCellPercentCategory getProgesteroneReceptorLevelCellPercentCategory() { + return progesteroneReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the progesteroneReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link ProgesteroneReceptorLevelCellPercentCategory } + * + */ + public void setProgesteroneReceptorLevelCellPercentCategory(ProgesteroneReceptorLevelCellPercentCategory value) { + this.progesteroneReceptorLevelCellPercentCategory = value; + } + + /** + * Gets the value of the distantMetastasisPresentInd2 property. + * + * @return + * possible object is + * {@link DistantMetastasisPresentInd2 } + * + */ + public DistantMetastasisPresentInd2 getDistantMetastasisPresentInd2() { + return distantMetastasisPresentInd2; + } + + /** + * Sets the value of the distantMetastasisPresentInd2 property. + * + * @param value + * allowed object is + * {@link DistantMetastasisPresentInd2 } + * + */ + public void setDistantMetastasisPresentInd2(DistantMetastasisPresentInd2 value) { + this.distantMetastasisPresentInd2 = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorStatus getMetastaticBreastCarcinomaEstrogenReceptorStatus() { + return metastaticBreastCarcinomaEstrogenReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorStatus(MetastaticBreastCarcinomaEstrogenReceptorStatus value) { + this.metastaticBreastCarcinomaEstrogenReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory getMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory() { + return metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory value) { + this.metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryErPosCellScore property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore getMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore() { + return metastaticBreastCarcinomaImmunohistochemistryErPosCellScore; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryErPosCellScore property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore value) { + this.metastaticBreastCarcinomaImmunohistochemistryErPosCellScore = value; + } + + /** + * Gets the value of the posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText property. + * + * @return + * possible object is + * {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText getPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText() { + return posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; + } + + /** + * Sets the value of the posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText property. + * + * @param value + * allowed object is + * {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public void setPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText(PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText value) { + this.posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText getMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText() { + return metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText(MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText value) { + this.metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorStatus getMetastaticBreastCarcinomaProgesteroneReceptorStatus() { + return metastaticBreastCarcinomaProgesteroneReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorStatus(MetastaticBreastCarcinomaProgesteroneReceptorStatus value) { + this.metastaticBreastCarcinomaProgesteroneReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus getMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus() { + return metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus(MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus value) { + this.metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory getMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory() { + return metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory value) { + this.metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore getMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore() { + return metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore value) { + this.metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText getMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText() { + return metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText value) { + this.metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText getMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText() { + return metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText(MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText value) { + this.metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory getMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory() { + return metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory(MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory value) { + this.metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult getMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult() { + return metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; + } + + /** + * Sets the value of the metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public void setMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult(MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult value) { + this.metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText getMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText() { + return metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText value) { + this.metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText getMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText() { + return metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText value) { + this.metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType getMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType() { + return metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; + } + + /** + * Sets the value of the metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public void setMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType(MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType value) { + this.metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange getMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange() { + return metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; + } + + /** + * Sets the value of the metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public void setMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange(MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange value) { + this.metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange = value; + } + + /** + * Gets the value of the her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount property. + * + * @return + * possible object is + * {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount getHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount() { + return her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; + } + + /** + * Sets the value of the her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount property. + * + * @param value + * allowed object is + * {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public void setHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount(Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount value) { + this.her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue getMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue() { + return metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public void setMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue(MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue value) { + this.metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText getMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText() { + return metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText(MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText value) { + this.metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText getMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText() { + return metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText value) { + this.metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText = value; + } + + /** + * Gets the value of the her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @return + * possible object is + * {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber getHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber() { + return her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; + } + + /** + * Sets the value of the her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @param value + * allowed object is + * {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public void setHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber(Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber value) { + this.her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber = value; + } + + /** + * Gets the value of the her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @return + * possible object is + * {@link Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber getHer2NeuBreastCarcinomaCopyAnalysisInputTotalNumber() { + return her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber; + } + + /** + * Sets the value of the her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @param value + * allowed object is + * {@link Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public void setHer2NeuBreastCarcinomaCopyAnalysisInputTotalNumber(Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber value) { + this.her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber = value; + } + + /** + * Gets the value of the breastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale property. + * + * @return + * possible object is + * {@link BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale } + * + */ + public BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale getBreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale() { + return breastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale; + } + + /** + * Sets the value of the breastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale } + * + */ + public void setBreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale(BreastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale value) { + this.breastCarcinomaImmunohistochemistryProgesteroneReceptorPosFindingScale = value; + } + + /** + * Gets the value of the breastCarcinomaImmunohistochemistryPosCellScore property. + * + * @return + * possible object is + * {@link BreastCarcinomaImmunohistochemistryPosCellScore } + * + */ + public BreastCarcinomaImmunohistochemistryPosCellScore getBreastCarcinomaImmunohistochemistryPosCellScore() { + return breastCarcinomaImmunohistochemistryPosCellScore; + } + + /** + * Sets the value of the breastCarcinomaImmunohistochemistryPosCellScore property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaImmunohistochemistryPosCellScore } + * + */ + public void setBreastCarcinomaImmunohistochemistryPosCellScore(BreastCarcinomaImmunohistochemistryPosCellScore value) { + this.breastCarcinomaImmunohistochemistryPosCellScore = value; + } + + /** + * Gets the value of the stageEvent property. + * + * @return + * possible object is + * {@link StageEvent } + * + */ + public StageEvent getStageEvent() { + return stageEvent; + } + + /** + * Sets the value of the stageEvent property. + * + * @param value + * allowed object is + * {@link StageEvent } + * + */ + public void setStageEvent(StageEvent value) { + this.stageEvent = value; + } + + /** + * Gets the value of the molecularMarkers property. + * + * @return + * possible object is + * {@link MolecularMarkers } + * + */ + public MolecularMarkers getMolecularMarkers() { + return molecularMarkers; + } + + /** + * Sets the value of the molecularMarkers property. + * + * @param value + * allowed object is + * {@link MolecularMarkers } + * + */ + public void setMolecularMarkers(MolecularMarkers value) { + this.molecularMarkers = value; + } + + /** + * Gets the value of the postoperativeRxTx property. + * + * @return + * possible object is + * {@link PostoperativeRxTx } + * + */ + public PostoperativeRxTx getPostoperativeRxTx() { + return postoperativeRxTx; + } + + /** + * Sets the value of the postoperativeRxTx property. + * + * @param value + * allowed object is + * {@link PostoperativeRxTx } + * + */ + public void setPostoperativeRxTx(PostoperativeRxTx value) { + this.postoperativeRxTx = value; + } + + /** + * Gets the value of the radiationTherapy property. + * + * @return + * possible object is + * {@link RadiationTherapy } + * + */ + public RadiationTherapy getRadiationTherapy() { + return radiationTherapy; + } + + /** + * Sets the value of the radiationTherapy property. + * + * @param value + * allowed object is + * {@link RadiationTherapy } + * + */ + public void setRadiationTherapy(RadiationTherapy value) { + this.radiationTherapy = value; + } + + /** + * Gets the value of the newTumorEvents property. + * + * @return + * possible object is + * {@link NewTumorEvents } + * + */ + public NewTumorEvents getNewTumorEvents() { + return newTumorEvents; + } + + /** + * Sets the value of the newTumorEvents property. + * + * @param value + * allowed object is + * {@link NewTumorEvents } + * + */ + public void setNewTumorEvents(NewTumorEvents value) { + this.newTumorEvents = value; + } + + /** + * Gets the value of the dayOfFormCompletion property. + * + * @return + * possible object is + * {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion getDayOfFormCompletion() { + return dayOfFormCompletion; + } + + /** + * Sets the value of the dayOfFormCompletion property. + * + * @param value + * allowed object is + * {@link DayOfFormCompletion } + * + */ + public void setDayOfFormCompletion(DayOfFormCompletion value) { + this.dayOfFormCompletion = value; + } + + /** + * Gets the value of the monthOfFormCompletion property. + * + * @return + * possible object is + * {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion getMonthOfFormCompletion() { + return monthOfFormCompletion; + } + + /** + * Sets the value of the monthOfFormCompletion property. + * + * @param value + * allowed object is + * {@link MonthOfFormCompletion } + * + */ + public void setMonthOfFormCompletion(MonthOfFormCompletion value) { + this.monthOfFormCompletion = value; + } + + /** + * Gets the value of the yearOfFormCompletion property. + * + * @return + * possible object is + * {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion getYearOfFormCompletion() { + return yearOfFormCompletion; + } + + /** + * Sets the value of the yearOfFormCompletion property. + * + * @param value + * allowed object is + * {@link YearOfFormCompletion } + * + */ + public void setYearOfFormCompletion(YearOfFormCompletion value) { + this.yearOfFormCompletion = value; + } + + /** + * Gets the value of the daysToFormCompletion property. + * + * @return + * possible object is + * {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion getDaysToFormCompletion() { + return daysToFormCompletion; + } + + /** + * Sets the value of the daysToFormCompletion property. + * + * @param value + * allowed object is + * {@link DaysToFormCompletion } + * + */ + public void setDaysToFormCompletion(DaysToFormCompletion value) { + this.daysToFormCompletion = value; + } + + /** + * Gets the value of the response property. + * + * @return + * possible object is + * {@link Response } + * + */ + public Response getResponse() { + return response; + } + + /** + * Sets the value of the response property. + * + * @param value + * allowed object is + * {@link Response } + * + */ + public void setResponse(Response value) { + this.response = value; + } + + /** + * Gets the value of the followUps property. + * + * @return + * possible object is + * {@link FollowUps } + * + */ + public FollowUps getFollowUps() { + return followUps; + } + + /** + * Sets the value of the followUps property. + * + * @param value + * allowed object is + * {@link FollowUps } + * + */ + public void setFollowUps(FollowUps value) { + this.followUps = value; + } + + /** + * Gets the value of the drugs property. + * + * @return + * possible object is + * {@link Drugs } + * + */ + public Drugs getDrugs() { + return drugs; + } + + /** + * Sets the value of the drugs property. + * + * @param value + * allowed object is + * {@link Drugs } + * + */ + public void setDrugs(Drugs value) { + this.drugs = value; + } + + /** + * Gets the value of the radiations property. + * + * @return + * possible object is + * {@link Radiations } + * + */ + public Radiations getRadiations() { + return radiations; + } + + /** + * Sets the value of the radiations property. + * + * @param value + * allowed object is + * {@link Radiations } + * + */ + public void setRadiations(Radiations value) { + this.radiations = value; + } + + /** + * Gets the value of the unstructured property. + * + * @return + * possible object is + * {@link Unstructured } + * + */ + public Unstructured getUnstructured() { + return unstructured; + } + + /** + * Sets the value of the unstructured property. + * + * @param value + * allowed object is + * {@link Unstructured } + * + */ + public void setUnstructured(Unstructured value) { + this.unstructured = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/SurgicalProcedurePurposeOtherText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/SurgicalProcedurePurposeOtherText.java new file mode 100644 index 0000000..4df8080 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/SurgicalProcedurePurposeOtherText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3020338" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SurgicalProcedurePurposeOtherText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3020338"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/TcgaBcr.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/TcgaBcr.java new file mode 100644 index 0000000..7529fb3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/TcgaBcr.java @@ -0,0 +1,133 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.Admin; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}admin"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/2.7}patient"/>
+ *       </sequence>
+ *       <attribute name="schemaVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" fixed="2.7" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "admin", + "patient" +}) +@XmlRootElement(name = "tcga_bcr") +public class TcgaBcr { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/administration/2.7", required = true) + protected Admin admin; + @XmlElement(required = true) + protected Patient patient; + @XmlAttribute(name = "schemaVersion", required = true) + protected BigDecimal schemaVersion; + + /** + * Gets the value of the admin property. + * + * @return + * possible object is + * {@link Admin } + * + */ + public Admin getAdmin() { + return admin; + } + + /** + * Sets the value of the admin property. + * + * @param value + * allowed object is + * {@link Admin } + * + */ + public void setAdmin(Admin value) { + this.admin = value; + } + + /** + * Gets the value of the patient property. + * + * @return + * possible object is + * {@link Patient } + * + */ + public Patient getPatient() { + return patient; + } + + /** + * Sets the value of the patient property. + * + * @param value + * allowed object is + * {@link Patient } + * + */ + public void setPatient(Patient value) { + this.patient = value; + } + + /** + * Gets the value of the schemaVersion property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSchemaVersion() { + if (schemaVersion == null) { + return new BigDecimal("2.7"); + } else { + return schemaVersion; + } + } + + /** + * Sets the value of the schemaVersion property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSchemaVersion(BigDecimal value) { + this.schemaVersion = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/package-info.java new file mode 100644 index 0000000..9634d64 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/brca/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/FollowUp.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/FollowUp.java new file mode 100644 index 0000000..900dec0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/FollowUp.java @@ -0,0 +1,2538 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._1; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.BreastCarcinomaEstrogenReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.BreastCarcinomaImmunohistochemistryPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.BreastCarcinomaProgesteroneReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.ErDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.ErLevelCellPercentageCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2AndCentromere17PositiveFindingOtherMeasurementScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2ErbbMethodCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2ErbbPosFindingCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2ImmunohistochemistryLevelResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuChromosone17SignalRatioValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.ImmunohistochemistryPositiveCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.LabProcHer2NeuImmunohistochemistryReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.LabProcedureHer2NeuInSituHybridOutcomeType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PgrDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PosFindingHer2Erbb2OtherMeasurementScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PosFindingProgesteroneReceptorOtherMeasurementScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PositiveFindingEstrogenReceptorOtherMeasurementScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.ProgesteroneReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BcrFollowupBarcode; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BcrFollowupUuid; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PersonNeoplasmCancerStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PostoperativeRxTx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TargetedMolecularTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.VitalStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalPharmaceuticalTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalRadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfNewTumorEventAfterInitialTreatment; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}bcr_followup_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}bcr_followup_uuid"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_followup"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_followup"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}vital_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}person_neoplasm_cancer_status"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_known_alive"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_known_alive"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_known_alive"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_known_alive"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_death"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_death"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}targeted_molecular_therapy" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}postoperative_rx_tx" minOccurs="0"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_new_tumor_event_after_initial_treatment"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_new_tumor_event_after_initial_treatment"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_surgery_locoregional_procedure"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_additional_surgery_locoregional_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_additional_surgery_locoregional_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_additional_surgery_locoregional_procedure"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_additional_surgery_locoregional_procedure"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}breast_carcinoma_estrogen_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}er_level_cell_percentage_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}immunohistochemistry_positive_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}positive_finding_estrogen_receptor_other_measurement_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}er_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}breast_carcinoma_progesterone_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}progesterone_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}breast_carcinoma_immunohistochemistry_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pos_finding_progesterone_receptor_other_measurement_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pgr_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}lab_proc_her2_neu_immunohistochemistry_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_erbb_pos_finding_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_immunohistochemistry_level_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pos_finding_her2_erbb2_other_measurement_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_erbb_method_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}lab_procedure_her2_neu_in_situ_hybrid_outcome_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_breast_carcinoma_copy_analysis_input_total_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}fluorescence_in_situ_hybridization_diagnostic_procedure_chromosome_17_signal_result_range"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_and_centromere_17_copy_number_analysis_input_total_number_count"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_chromosone_17_signal_ratio_value"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_and_centromere_17_positive_finding_other_measurement_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_surgery_metastatic_procedure"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_additional_surgery_metastatic_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_additional_surgery_metastatic_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_additional_surgery_metastatic_procedure"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_additional_surgery_metastatic_procedure"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_pharmaceutical_therapy"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_form_completion"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_form_completion"/>
+ *         </choice>
+ *       </sequence>
+ *       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" default="1.5" />
+ *       <attribute name="sequence" type="{http://www.w3.org/2001/XMLSchema}integer" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcrFollowupBarcode", + "bcrFollowupUuid", + "dayOfLastFollowup", + "monthOfLastFollowup", + "yearOfLastFollowup", + "daysToLastFollowup", + "vitalStatus", + "personNeoplasmCancerStatus", + "dayOfLastKnownAlive", + "monthOfLastKnownAlive", + "yearOfLastKnownAlive", + "daysToLastKnownAlive", + "dayOfDeath", + "monthOfDeath", + "yearOfDeath", + "daysToDeath", + "radiationTherapy", + "targetedMolecularTherapy", + "postoperativeRxTx", + "dayOfNewTumorEventAfterInitialTreatment", + "monthOfNewTumorEventAfterInitialTreatment", + "yearOfNewTumorEventAfterInitialTreatment", + "daysToNewTumorEventAfterInitialTreatment", + "additionalSurgeryLocoregionalProcedure", + "dayOfAdditionalSurgeryLocoregionalProcedure", + "monthOfAdditionalSurgeryLocoregionalProcedure", + "yearOfAdditionalSurgeryLocoregionalProcedure", + "daysToAdditionalSurgeryLocoregionalProcedure", + "breastCarcinomaEstrogenReceptorStatus", + "erLevelCellPercentageCategory", + "immunohistochemistryPositiveCellScore", + "positiveFindingEstrogenReceptorOtherMeasurementScaleText", + "erDetectionMethodText", + "breastCarcinomaProgesteroneReceptorStatus", + "progesteroneReceptorLevelCellPercentCategory", + "breastCarcinomaImmunohistochemistryPosCellScore", + "posFindingProgesteroneReceptorOtherMeasurementScaleText", + "pgrDetectionMethodText", + "labProcHer2NeuImmunohistochemistryReceptorStatus", + "her2ErbbPosFindingCellPercentCategory", + "her2ImmunohistochemistryLevelResult", + "posFindingHer2Erbb2OtherMeasurementScaleText", + "her2ErbbMethodCalculationMethodText", + "labProcedureHer2NeuInSituHybridOutcomeType", + "her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber", + "fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange", + "her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount", + "her2NeuChromosone17SignalRatioValue", + "her2AndCentromere17PositiveFindingOtherMeasurementScaleText", + "her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText", + "additionalSurgeryMetastaticProcedure", + "dayOfAdditionalSurgeryMetastaticProcedure", + "monthOfAdditionalSurgeryMetastaticProcedure", + "yearOfAdditionalSurgeryMetastaticProcedure", + "daysToAdditionalSurgeryMetastaticProcedure", + "metastaticBreastCarcinomaEstrogenReceptorStatus", + "metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory", + "metastaticBreastCarcinomaImmunohistochemistryErPosCellScore", + "posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText", + "metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText", + "metastaticBreastCarcinomaProgesteroneReceptorStatus", + "metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory", + "metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore", + "metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText", + "metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText", + "metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus", + "metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory", + "metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult", + "metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText", + "metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText", + "metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType", + "her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber", + "metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange", + "her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount", + "metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue", + "metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText", + "metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText", + "additionalRadiationTherapy", + "additionalPharmaceuticalTherapy", + "dayOfFormCompletion", + "monthOfFormCompletion", + "yearOfFormCompletion", + "daysToFormCompletion" +}) +@XmlRootElement(name = "follow_up") +public class FollowUp { + + @XmlElement(name = "bcr_followup_barcode", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected BcrFollowupBarcode bcrFollowupBarcode; + @XmlElement(name = "bcr_followup_uuid", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected BcrFollowupUuid bcrFollowupUuid; + @XmlElement(name = "day_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfLastFollowup dayOfLastFollowup; + @XmlElement(name = "month_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfLastFollowup monthOfLastFollowup; + @XmlElement(name = "year_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfLastFollowup yearOfLastFollowup; + @XmlElement(name = "days_to_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastFollowup daysToLastFollowup; + @XmlElement(name = "vital_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected VitalStatus vitalStatus; + @XmlElement(name = "person_neoplasm_cancer_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PersonNeoplasmCancerStatus personNeoplasmCancerStatus; + @XmlElement(name = "day_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfLastKnownAlive dayOfLastKnownAlive; + @XmlElement(name = "month_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfLastKnownAlive monthOfLastKnownAlive; + @XmlElement(name = "year_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfLastKnownAlive yearOfLastKnownAlive; + @XmlElement(name = "days_to_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastKnownAlive daysToLastKnownAlive; + @XmlElement(name = "day_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfDeath dayOfDeath; + @XmlElement(name = "month_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfDeath monthOfDeath; + @XmlElement(name = "year_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfDeath yearOfDeath; + @XmlElement(name = "days_to_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToDeath daysToDeath; + @XmlElement(name = "radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RadiationTherapy radiationTherapy; + @XmlElement(name = "targeted_molecular_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected TargetedMolecularTherapy targetedMolecularTherapy; + @XmlElement(name = "postoperative_rx_tx", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected PostoperativeRxTx postoperativeRxTx; + @XmlElement(name = "day_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfNewTumorEventAfterInitialTreatment dayOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "month_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfNewTumorEventAfterInitialTreatment monthOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "year_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfNewTumorEventAfterInitialTreatment yearOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "days_to_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToNewTumorEventAfterInitialTreatment daysToNewTumorEventAfterInitialTreatment; + @XmlElement(name = "additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalSurgeryLocoregionalProcedure additionalSurgeryLocoregionalProcedure; + @XmlElement(name = "day_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfAdditionalSurgeryLocoregionalProcedure dayOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "month_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfAdditionalSurgeryLocoregionalProcedure monthOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "year_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfAdditionalSurgeryLocoregionalProcedure yearOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "days_to_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToAdditionalSurgeryLocoregionalProcedure daysToAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "breast_carcinoma_estrogen_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected BreastCarcinomaEstrogenReceptorStatus breastCarcinomaEstrogenReceptorStatus; + @XmlElement(name = "er_level_cell_percentage_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected ErLevelCellPercentageCategory erLevelCellPercentageCategory; + @XmlElement(name = "immunohistochemistry_positive_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected ImmunohistochemistryPositiveCellScore immunohistochemistryPositiveCellScore; + @XmlElement(name = "positive_finding_estrogen_receptor_other_measurement_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PositiveFindingEstrogenReceptorOtherMeasurementScaleText positiveFindingEstrogenReceptorOtherMeasurementScaleText; + @XmlElement(name = "er_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected ErDetectionMethodText erDetectionMethodText; + @XmlElement(name = "breast_carcinoma_progesterone_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected BreastCarcinomaProgesteroneReceptorStatus breastCarcinomaProgesteroneReceptorStatus; + @XmlElement(name = "progesterone_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected ProgesteroneReceptorLevelCellPercentCategory progesteroneReceptorLevelCellPercentCategory; + @XmlElement(name = "breast_carcinoma_immunohistochemistry_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected BreastCarcinomaImmunohistochemistryPosCellScore breastCarcinomaImmunohistochemistryPosCellScore; + @XmlElement(name = "pos_finding_progesterone_receptor_other_measurement_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PosFindingProgesteroneReceptorOtherMeasurementScaleText posFindingProgesteroneReceptorOtherMeasurementScaleText; + @XmlElement(name = "pgr_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PgrDetectionMethodText pgrDetectionMethodText; + @XmlElement(name = "lab_proc_her2_neu_immunohistochemistry_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected LabProcHer2NeuImmunohistochemistryReceptorStatus labProcHer2NeuImmunohistochemistryReceptorStatus; + @XmlElement(name = "her2_erbb_pos_finding_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2ErbbPosFindingCellPercentCategory her2ErbbPosFindingCellPercentCategory; + @XmlElement(name = "her2_immunohistochemistry_level_result", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2ImmunohistochemistryLevelResult her2ImmunohistochemistryLevelResult; + @XmlElement(name = "pos_finding_her2_erbb2_other_measurement_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PosFindingHer2Erbb2OtherMeasurementScaleText posFindingHer2Erbb2OtherMeasurementScaleText; + @XmlElement(name = "her2_erbb_method_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2ErbbMethodCalculationMethodText her2ErbbMethodCalculationMethodText; + @XmlElement(name = "lab_procedure_her2_neu_in_situ_hybrid_outcome_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected LabProcedureHer2NeuInSituHybridOutcomeType labProcedureHer2NeuInSituHybridOutcomeType; + @XmlElement(name = "her2_neu_breast_carcinoma_copy_analysis_input_total_number", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber; + @XmlElement(name = "fluorescence_in_situ_hybridization_diagnostic_procedure_chromosome_17_signal_result_range", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange; + @XmlElement(name = "her2_neu_and_centromere_17_copy_number_analysis_input_total_number_count", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount; + @XmlElement(name = "her2_neu_chromosone_17_signal_ratio_value", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuChromosone17SignalRatioValue her2NeuChromosone17SignalRatioValue; + @XmlElement(name = "her2_and_centromere_17_positive_finding_other_measurement_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2AndCentromere17PositiveFindingOtherMeasurementScaleText her2AndCentromere17PositiveFindingOtherMeasurementScaleText; + @XmlElement(name = "her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + @XmlElement(name = "additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalSurgeryMetastaticProcedure additionalSurgeryMetastaticProcedure; + @XmlElement(name = "day_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfAdditionalSurgeryMetastaticProcedure dayOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "month_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfAdditionalSurgeryMetastaticProcedure monthOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "year_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfAdditionalSurgeryMetastaticProcedure yearOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "days_to_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToAdditionalSurgeryMetastaticProcedure daysToAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorStatus metastaticBreastCarcinomaEstrogenReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore metastaticBreastCarcinomaImmunohistochemistryErPosCellScore; + @XmlElement(name = "pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorStatus metastaticBreastCarcinomaProgesteroneReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; + @XmlElement(name = "her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; + @XmlElement(name = "metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; + @XmlElement(name = "her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; + @XmlElement(name = "metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + @XmlElement(name = "additional_radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalRadiationTherapy additionalRadiationTherapy; + @XmlElement(name = "additional_pharmaceutical_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalPharmaceuticalTherapy additionalPharmaceuticalTherapy; + @XmlElement(name = "day_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfFormCompletion dayOfFormCompletion; + @XmlElement(name = "month_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfFormCompletion monthOfFormCompletion; + @XmlElement(name = "year_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfFormCompletion yearOfFormCompletion; + @XmlElement(name = "days_to_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToFormCompletion daysToFormCompletion; + @XmlAttribute(name = "version") + protected String version; + @XmlAttribute(name = "sequence") + protected BigInteger sequence; + + /** + * Gets the value of the bcrFollowupBarcode property. + * + * @return + * possible object is + * {@link BcrFollowupBarcode } + * + */ + public BcrFollowupBarcode getBcrFollowupBarcode() { + return bcrFollowupBarcode; + } + + /** + * Sets the value of the bcrFollowupBarcode property. + * + * @param value + * allowed object is + * {@link BcrFollowupBarcode } + * + */ + public void setBcrFollowupBarcode(BcrFollowupBarcode value) { + this.bcrFollowupBarcode = value; + } + + /** + * Gets the value of the bcrFollowupUuid property. + * + * @return + * possible object is + * {@link BcrFollowupUuid } + * + */ + public BcrFollowupUuid getBcrFollowupUuid() { + return bcrFollowupUuid; + } + + /** + * Sets the value of the bcrFollowupUuid property. + * + * @param value + * allowed object is + * {@link BcrFollowupUuid } + * + */ + public void setBcrFollowupUuid(BcrFollowupUuid value) { + this.bcrFollowupUuid = value; + } + + /** + * Gets the value of the dayOfLastFollowup property. + * + * @return + * possible object is + * {@link DayOfLastFollowup } + * + */ + public DayOfLastFollowup getDayOfLastFollowup() { + return dayOfLastFollowup; + } + + /** + * Sets the value of the dayOfLastFollowup property. + * + * @param value + * allowed object is + * {@link DayOfLastFollowup } + * + */ + public void setDayOfLastFollowup(DayOfLastFollowup value) { + this.dayOfLastFollowup = value; + } + + /** + * Gets the value of the monthOfLastFollowup property. + * + * @return + * possible object is + * {@link MonthOfLastFollowup } + * + */ + public MonthOfLastFollowup getMonthOfLastFollowup() { + return monthOfLastFollowup; + } + + /** + * Sets the value of the monthOfLastFollowup property. + * + * @param value + * allowed object is + * {@link MonthOfLastFollowup } + * + */ + public void setMonthOfLastFollowup(MonthOfLastFollowup value) { + this.monthOfLastFollowup = value; + } + + /** + * Gets the value of the yearOfLastFollowup property. + * + * @return + * possible object is + * {@link YearOfLastFollowup } + * + */ + public YearOfLastFollowup getYearOfLastFollowup() { + return yearOfLastFollowup; + } + + /** + * Sets the value of the yearOfLastFollowup property. + * + * @param value + * allowed object is + * {@link YearOfLastFollowup } + * + */ + public void setYearOfLastFollowup(YearOfLastFollowup value) { + this.yearOfLastFollowup = value; + } + + /** + * Gets the value of the daysToLastFollowup property. + * + * @return + * possible object is + * {@link DaysToLastFollowup } + * + */ + public DaysToLastFollowup getDaysToLastFollowup() { + return daysToLastFollowup; + } + + /** + * Sets the value of the daysToLastFollowup property. + * + * @param value + * allowed object is + * {@link DaysToLastFollowup } + * + */ + public void setDaysToLastFollowup(DaysToLastFollowup value) { + this.daysToLastFollowup = value; + } + + /** + * Gets the value of the vitalStatus property. + * + * @return + * possible object is + * {@link VitalStatus } + * + */ + public VitalStatus getVitalStatus() { + return vitalStatus; + } + + /** + * Sets the value of the vitalStatus property. + * + * @param value + * allowed object is + * {@link VitalStatus } + * + */ + public void setVitalStatus(VitalStatus value) { + this.vitalStatus = value; + } + + /** + * Gets the value of the personNeoplasmCancerStatus property. + * + * @return + * possible object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public PersonNeoplasmCancerStatus getPersonNeoplasmCancerStatus() { + return personNeoplasmCancerStatus; + } + + /** + * Sets the value of the personNeoplasmCancerStatus property. + * + * @param value + * allowed object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public void setPersonNeoplasmCancerStatus(PersonNeoplasmCancerStatus value) { + this.personNeoplasmCancerStatus = value; + } + + /** + * Gets the value of the dayOfLastKnownAlive property. + * + * @return + * possible object is + * {@link DayOfLastKnownAlive } + * + */ + public DayOfLastKnownAlive getDayOfLastKnownAlive() { + return dayOfLastKnownAlive; + } + + /** + * Sets the value of the dayOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link DayOfLastKnownAlive } + * + */ + public void setDayOfLastKnownAlive(DayOfLastKnownAlive value) { + this.dayOfLastKnownAlive = value; + } + + /** + * Gets the value of the monthOfLastKnownAlive property. + * + * @return + * possible object is + * {@link MonthOfLastKnownAlive } + * + */ + public MonthOfLastKnownAlive getMonthOfLastKnownAlive() { + return monthOfLastKnownAlive; + } + + /** + * Sets the value of the monthOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link MonthOfLastKnownAlive } + * + */ + public void setMonthOfLastKnownAlive(MonthOfLastKnownAlive value) { + this.monthOfLastKnownAlive = value; + } + + /** + * Gets the value of the yearOfLastKnownAlive property. + * + * @return + * possible object is + * {@link YearOfLastKnownAlive } + * + */ + public YearOfLastKnownAlive getYearOfLastKnownAlive() { + return yearOfLastKnownAlive; + } + + /** + * Sets the value of the yearOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link YearOfLastKnownAlive } + * + */ + public void setYearOfLastKnownAlive(YearOfLastKnownAlive value) { + this.yearOfLastKnownAlive = value; + } + + /** + * Gets the value of the daysToLastKnownAlive property. + * + * @return + * possible object is + * {@link DaysToLastKnownAlive } + * + */ + public DaysToLastKnownAlive getDaysToLastKnownAlive() { + return daysToLastKnownAlive; + } + + /** + * Sets the value of the daysToLastKnownAlive property. + * + * @param value + * allowed object is + * {@link DaysToLastKnownAlive } + * + */ + public void setDaysToLastKnownAlive(DaysToLastKnownAlive value) { + this.daysToLastKnownAlive = value; + } + + /** + * Gets the value of the dayOfDeath property. + * + * @return + * possible object is + * {@link DayOfDeath } + * + */ + public DayOfDeath getDayOfDeath() { + return dayOfDeath; + } + + /** + * Sets the value of the dayOfDeath property. + * + * @param value + * allowed object is + * {@link DayOfDeath } + * + */ + public void setDayOfDeath(DayOfDeath value) { + this.dayOfDeath = value; + } + + /** + * Gets the value of the monthOfDeath property. + * + * @return + * possible object is + * {@link MonthOfDeath } + * + */ + public MonthOfDeath getMonthOfDeath() { + return monthOfDeath; + } + + /** + * Sets the value of the monthOfDeath property. + * + * @param value + * allowed object is + * {@link MonthOfDeath } + * + */ + public void setMonthOfDeath(MonthOfDeath value) { + this.monthOfDeath = value; + } + + /** + * Gets the value of the yearOfDeath property. + * + * @return + * possible object is + * {@link YearOfDeath } + * + */ + public YearOfDeath getYearOfDeath() { + return yearOfDeath; + } + + /** + * Sets the value of the yearOfDeath property. + * + * @param value + * allowed object is + * {@link YearOfDeath } + * + */ + public void setYearOfDeath(YearOfDeath value) { + this.yearOfDeath = value; + } + + /** + * Gets the value of the daysToDeath property. + * + * @return + * possible object is + * {@link DaysToDeath } + * + */ + public DaysToDeath getDaysToDeath() { + return daysToDeath; + } + + /** + * Sets the value of the daysToDeath property. + * + * @param value + * allowed object is + * {@link DaysToDeath } + * + */ + public void setDaysToDeath(DaysToDeath value) { + this.daysToDeath = value; + } + + /** + * Gets the value of the radiationTherapy property. + * + * @return + * possible object is + * {@link RadiationTherapy } + * + */ + public RadiationTherapy getRadiationTherapy() { + return radiationTherapy; + } + + /** + * Sets the value of the radiationTherapy property. + * + * @param value + * allowed object is + * {@link RadiationTherapy } + * + */ + public void setRadiationTherapy(RadiationTherapy value) { + this.radiationTherapy = value; + } + + /** + * Gets the value of the targetedMolecularTherapy property. + * + * @return + * possible object is + * {@link TargetedMolecularTherapy } + * + */ + public TargetedMolecularTherapy getTargetedMolecularTherapy() { + return targetedMolecularTherapy; + } + + /** + * Sets the value of the targetedMolecularTherapy property. + * + * @param value + * allowed object is + * {@link TargetedMolecularTherapy } + * + */ + public void setTargetedMolecularTherapy(TargetedMolecularTherapy value) { + this.targetedMolecularTherapy = value; + } + + /** + * Gets the value of the postoperativeRxTx property. + * + * @return + * possible object is + * {@link PostoperativeRxTx } + * + */ + public PostoperativeRxTx getPostoperativeRxTx() { + return postoperativeRxTx; + } + + /** + * Sets the value of the postoperativeRxTx property. + * + * @param value + * allowed object is + * {@link PostoperativeRxTx } + * + */ + public void setPostoperativeRxTx(PostoperativeRxTx value) { + this.postoperativeRxTx = value; + } + + /** + * Gets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public DayOfNewTumorEventAfterInitialTreatment getDayOfNewTumorEventAfterInitialTreatment() { + return dayOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public void setDayOfNewTumorEventAfterInitialTreatment(DayOfNewTumorEventAfterInitialTreatment value) { + this.dayOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public MonthOfNewTumorEventAfterInitialTreatment getMonthOfNewTumorEventAfterInitialTreatment() { + return monthOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public void setMonthOfNewTumorEventAfterInitialTreatment(MonthOfNewTumorEventAfterInitialTreatment value) { + this.monthOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public YearOfNewTumorEventAfterInitialTreatment getYearOfNewTumorEventAfterInitialTreatment() { + return yearOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public void setYearOfNewTumorEventAfterInitialTreatment(YearOfNewTumorEventAfterInitialTreatment value) { + this.yearOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public DaysToNewTumorEventAfterInitialTreatment getDaysToNewTumorEventAfterInitialTreatment() { + return daysToNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public void setDaysToNewTumorEventAfterInitialTreatment(DaysToNewTumorEventAfterInitialTreatment value) { + this.daysToNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the additionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public AdditionalSurgeryLocoregionalProcedure getAdditionalSurgeryLocoregionalProcedure() { + return additionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the additionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public void setAdditionalSurgeryLocoregionalProcedure(AdditionalSurgeryLocoregionalProcedure value) { + this.additionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the dayOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link DayOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public DayOfAdditionalSurgeryLocoregionalProcedure getDayOfAdditionalSurgeryLocoregionalProcedure() { + return dayOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the dayOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link DayOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setDayOfAdditionalSurgeryLocoregionalProcedure(DayOfAdditionalSurgeryLocoregionalProcedure value) { + this.dayOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the monthOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link MonthOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public MonthOfAdditionalSurgeryLocoregionalProcedure getMonthOfAdditionalSurgeryLocoregionalProcedure() { + return monthOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the monthOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link MonthOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setMonthOfAdditionalSurgeryLocoregionalProcedure(MonthOfAdditionalSurgeryLocoregionalProcedure value) { + this.monthOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the yearOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link YearOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public YearOfAdditionalSurgeryLocoregionalProcedure getYearOfAdditionalSurgeryLocoregionalProcedure() { + return yearOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the yearOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link YearOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setYearOfAdditionalSurgeryLocoregionalProcedure(YearOfAdditionalSurgeryLocoregionalProcedure value) { + this.yearOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the daysToAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link DaysToAdditionalSurgeryLocoregionalProcedure } + * + */ + public DaysToAdditionalSurgeryLocoregionalProcedure getDaysToAdditionalSurgeryLocoregionalProcedure() { + return daysToAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the daysToAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link DaysToAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setDaysToAdditionalSurgeryLocoregionalProcedure(DaysToAdditionalSurgeryLocoregionalProcedure value) { + this.daysToAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the breastCarcinomaEstrogenReceptorStatus property. + * + * @return + * possible object is + * {@link BreastCarcinomaEstrogenReceptorStatus } + * + */ + public BreastCarcinomaEstrogenReceptorStatus getBreastCarcinomaEstrogenReceptorStatus() { + return breastCarcinomaEstrogenReceptorStatus; + } + + /** + * Sets the value of the breastCarcinomaEstrogenReceptorStatus property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaEstrogenReceptorStatus } + * + */ + public void setBreastCarcinomaEstrogenReceptorStatus(BreastCarcinomaEstrogenReceptorStatus value) { + this.breastCarcinomaEstrogenReceptorStatus = value; + } + + /** + * Gets the value of the erLevelCellPercentageCategory property. + * + * @return + * possible object is + * {@link ErLevelCellPercentageCategory } + * + */ + public ErLevelCellPercentageCategory getErLevelCellPercentageCategory() { + return erLevelCellPercentageCategory; + } + + /** + * Sets the value of the erLevelCellPercentageCategory property. + * + * @param value + * allowed object is + * {@link ErLevelCellPercentageCategory } + * + */ + public void setErLevelCellPercentageCategory(ErLevelCellPercentageCategory value) { + this.erLevelCellPercentageCategory = value; + } + + /** + * Gets the value of the immunohistochemistryPositiveCellScore property. + * + * @return + * possible object is + * {@link ImmunohistochemistryPositiveCellScore } + * + */ + public ImmunohistochemistryPositiveCellScore getImmunohistochemistryPositiveCellScore() { + return immunohistochemistryPositiveCellScore; + } + + /** + * Sets the value of the immunohistochemistryPositiveCellScore property. + * + * @param value + * allowed object is + * {@link ImmunohistochemistryPositiveCellScore } + * + */ + public void setImmunohistochemistryPositiveCellScore(ImmunohistochemistryPositiveCellScore value) { + this.immunohistochemistryPositiveCellScore = value; + } + + /** + * Gets the value of the positiveFindingEstrogenReceptorOtherMeasurementScaleText property. + * + * @return + * possible object is + * {@link PositiveFindingEstrogenReceptorOtherMeasurementScaleText } + * + */ + public PositiveFindingEstrogenReceptorOtherMeasurementScaleText getPositiveFindingEstrogenReceptorOtherMeasurementScaleText() { + return positiveFindingEstrogenReceptorOtherMeasurementScaleText; + } + + /** + * Sets the value of the positiveFindingEstrogenReceptorOtherMeasurementScaleText property. + * + * @param value + * allowed object is + * {@link PositiveFindingEstrogenReceptorOtherMeasurementScaleText } + * + */ + public void setPositiveFindingEstrogenReceptorOtherMeasurementScaleText(PositiveFindingEstrogenReceptorOtherMeasurementScaleText value) { + this.positiveFindingEstrogenReceptorOtherMeasurementScaleText = value; + } + + /** + * Gets the value of the erDetectionMethodText property. + * + * @return + * possible object is + * {@link ErDetectionMethodText } + * + */ + public ErDetectionMethodText getErDetectionMethodText() { + return erDetectionMethodText; + } + + /** + * Sets the value of the erDetectionMethodText property. + * + * @param value + * allowed object is + * {@link ErDetectionMethodText } + * + */ + public void setErDetectionMethodText(ErDetectionMethodText value) { + this.erDetectionMethodText = value; + } + + /** + * Gets the value of the breastCarcinomaProgesteroneReceptorStatus property. + * + * @return + * possible object is + * {@link BreastCarcinomaProgesteroneReceptorStatus } + * + */ + public BreastCarcinomaProgesteroneReceptorStatus getBreastCarcinomaProgesteroneReceptorStatus() { + return breastCarcinomaProgesteroneReceptorStatus; + } + + /** + * Sets the value of the breastCarcinomaProgesteroneReceptorStatus property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaProgesteroneReceptorStatus } + * + */ + public void setBreastCarcinomaProgesteroneReceptorStatus(BreastCarcinomaProgesteroneReceptorStatus value) { + this.breastCarcinomaProgesteroneReceptorStatus = value; + } + + /** + * Gets the value of the progesteroneReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link ProgesteroneReceptorLevelCellPercentCategory } + * + */ + public ProgesteroneReceptorLevelCellPercentCategory getProgesteroneReceptorLevelCellPercentCategory() { + return progesteroneReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the progesteroneReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link ProgesteroneReceptorLevelCellPercentCategory } + * + */ + public void setProgesteroneReceptorLevelCellPercentCategory(ProgesteroneReceptorLevelCellPercentCategory value) { + this.progesteroneReceptorLevelCellPercentCategory = value; + } + + /** + * Gets the value of the breastCarcinomaImmunohistochemistryPosCellScore property. + * + * @return + * possible object is + * {@link BreastCarcinomaImmunohistochemistryPosCellScore } + * + */ + public BreastCarcinomaImmunohistochemistryPosCellScore getBreastCarcinomaImmunohistochemistryPosCellScore() { + return breastCarcinomaImmunohistochemistryPosCellScore; + } + + /** + * Sets the value of the breastCarcinomaImmunohistochemistryPosCellScore property. + * + * @param value + * allowed object is + * {@link BreastCarcinomaImmunohistochemistryPosCellScore } + * + */ + public void setBreastCarcinomaImmunohistochemistryPosCellScore(BreastCarcinomaImmunohistochemistryPosCellScore value) { + this.breastCarcinomaImmunohistochemistryPosCellScore = value; + } + + /** + * Gets the value of the posFindingProgesteroneReceptorOtherMeasurementScaleText property. + * + * @return + * possible object is + * {@link PosFindingProgesteroneReceptorOtherMeasurementScaleText } + * + */ + public PosFindingProgesteroneReceptorOtherMeasurementScaleText getPosFindingProgesteroneReceptorOtherMeasurementScaleText() { + return posFindingProgesteroneReceptorOtherMeasurementScaleText; + } + + /** + * Sets the value of the posFindingProgesteroneReceptorOtherMeasurementScaleText property. + * + * @param value + * allowed object is + * {@link PosFindingProgesteroneReceptorOtherMeasurementScaleText } + * + */ + public void setPosFindingProgesteroneReceptorOtherMeasurementScaleText(PosFindingProgesteroneReceptorOtherMeasurementScaleText value) { + this.posFindingProgesteroneReceptorOtherMeasurementScaleText = value; + } + + /** + * Gets the value of the pgrDetectionMethodText property. + * + * @return + * possible object is + * {@link PgrDetectionMethodText } + * + */ + public PgrDetectionMethodText getPgrDetectionMethodText() { + return pgrDetectionMethodText; + } + + /** + * Sets the value of the pgrDetectionMethodText property. + * + * @param value + * allowed object is + * {@link PgrDetectionMethodText } + * + */ + public void setPgrDetectionMethodText(PgrDetectionMethodText value) { + this.pgrDetectionMethodText = value; + } + + /** + * Gets the value of the labProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @return + * possible object is + * {@link LabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public LabProcHer2NeuImmunohistochemistryReceptorStatus getLabProcHer2NeuImmunohistochemistryReceptorStatus() { + return labProcHer2NeuImmunohistochemistryReceptorStatus; + } + + /** + * Sets the value of the labProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @param value + * allowed object is + * {@link LabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public void setLabProcHer2NeuImmunohistochemistryReceptorStatus(LabProcHer2NeuImmunohistochemistryReceptorStatus value) { + this.labProcHer2NeuImmunohistochemistryReceptorStatus = value; + } + + /** + * Gets the value of the her2ErbbPosFindingCellPercentCategory property. + * + * @return + * possible object is + * {@link Her2ErbbPosFindingCellPercentCategory } + * + */ + public Her2ErbbPosFindingCellPercentCategory getHer2ErbbPosFindingCellPercentCategory() { + return her2ErbbPosFindingCellPercentCategory; + } + + /** + * Sets the value of the her2ErbbPosFindingCellPercentCategory property. + * + * @param value + * allowed object is + * {@link Her2ErbbPosFindingCellPercentCategory } + * + */ + public void setHer2ErbbPosFindingCellPercentCategory(Her2ErbbPosFindingCellPercentCategory value) { + this.her2ErbbPosFindingCellPercentCategory = value; + } + + /** + * Gets the value of the her2ImmunohistochemistryLevelResult property. + * + * @return + * possible object is + * {@link Her2ImmunohistochemistryLevelResult } + * + */ + public Her2ImmunohistochemistryLevelResult getHer2ImmunohistochemistryLevelResult() { + return her2ImmunohistochemistryLevelResult; + } + + /** + * Sets the value of the her2ImmunohistochemistryLevelResult property. + * + * @param value + * allowed object is + * {@link Her2ImmunohistochemistryLevelResult } + * + */ + public void setHer2ImmunohistochemistryLevelResult(Her2ImmunohistochemistryLevelResult value) { + this.her2ImmunohistochemistryLevelResult = value; + } + + /** + * Gets the value of the posFindingHer2Erbb2OtherMeasurementScaleText property. + * + * @return + * possible object is + * {@link PosFindingHer2Erbb2OtherMeasurementScaleText } + * + */ + public PosFindingHer2Erbb2OtherMeasurementScaleText getPosFindingHer2Erbb2OtherMeasurementScaleText() { + return posFindingHer2Erbb2OtherMeasurementScaleText; + } + + /** + * Sets the value of the posFindingHer2Erbb2OtherMeasurementScaleText property. + * + * @param value + * allowed object is + * {@link PosFindingHer2Erbb2OtherMeasurementScaleText } + * + */ + public void setPosFindingHer2Erbb2OtherMeasurementScaleText(PosFindingHer2Erbb2OtherMeasurementScaleText value) { + this.posFindingHer2Erbb2OtherMeasurementScaleText = value; + } + + /** + * Gets the value of the her2ErbbMethodCalculationMethodText property. + * + * @return + * possible object is + * {@link Her2ErbbMethodCalculationMethodText } + * + */ + public Her2ErbbMethodCalculationMethodText getHer2ErbbMethodCalculationMethodText() { + return her2ErbbMethodCalculationMethodText; + } + + /** + * Sets the value of the her2ErbbMethodCalculationMethodText property. + * + * @param value + * allowed object is + * {@link Her2ErbbMethodCalculationMethodText } + * + */ + public void setHer2ErbbMethodCalculationMethodText(Her2ErbbMethodCalculationMethodText value) { + this.her2ErbbMethodCalculationMethodText = value; + } + + /** + * Gets the value of the labProcedureHer2NeuInSituHybridOutcomeType property. + * + * @return + * possible object is + * {@link LabProcedureHer2NeuInSituHybridOutcomeType } + * + */ + public LabProcedureHer2NeuInSituHybridOutcomeType getLabProcedureHer2NeuInSituHybridOutcomeType() { + return labProcedureHer2NeuInSituHybridOutcomeType; + } + + /** + * Sets the value of the labProcedureHer2NeuInSituHybridOutcomeType property. + * + * @param value + * allowed object is + * {@link LabProcedureHer2NeuInSituHybridOutcomeType } + * + */ + public void setLabProcedureHer2NeuInSituHybridOutcomeType(LabProcedureHer2NeuInSituHybridOutcomeType value) { + this.labProcedureHer2NeuInSituHybridOutcomeType = value; + } + + /** + * Gets the value of the her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @return + * possible object is + * {@link Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber getHer2NeuBreastCarcinomaCopyAnalysisInputTotalNumber() { + return her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber; + } + + /** + * Sets the value of the her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @param value + * allowed object is + * {@link Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public void setHer2NeuBreastCarcinomaCopyAnalysisInputTotalNumber(Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber value) { + this.her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber = value; + } + + /** + * Gets the value of the fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange property. + * + * @return + * possible object is + * {@link FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange } + * + */ + public FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange getFluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange() { + return fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange; + } + + /** + * Sets the value of the fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange property. + * + * @param value + * allowed object is + * {@link FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange } + * + */ + public void setFluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange(FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange value) { + this.fluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange = value; + } + + /** + * Gets the value of the her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount property. + * + * @return + * possible object is + * {@link Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount } + * + */ + public Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount getHer2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount() { + return her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount; + } + + /** + * Sets the value of the her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount property. + * + * @param value + * allowed object is + * {@link Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount } + * + */ + public void setHer2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount(Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount value) { + this.her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount = value; + } + + /** + * Gets the value of the her2NeuChromosone17SignalRatioValue property. + * + * @return + * possible object is + * {@link Her2NeuChromosone17SignalRatioValue } + * + */ + public Her2NeuChromosone17SignalRatioValue getHer2NeuChromosone17SignalRatioValue() { + return her2NeuChromosone17SignalRatioValue; + } + + /** + * Sets the value of the her2NeuChromosone17SignalRatioValue property. + * + * @param value + * allowed object is + * {@link Her2NeuChromosone17SignalRatioValue } + * + */ + public void setHer2NeuChromosone17SignalRatioValue(Her2NeuChromosone17SignalRatioValue value) { + this.her2NeuChromosone17SignalRatioValue = value; + } + + /** + * Gets the value of the her2AndCentromere17PositiveFindingOtherMeasurementScaleText property. + * + * @return + * possible object is + * {@link Her2AndCentromere17PositiveFindingOtherMeasurementScaleText } + * + */ + public Her2AndCentromere17PositiveFindingOtherMeasurementScaleText getHer2AndCentromere17PositiveFindingOtherMeasurementScaleText() { + return her2AndCentromere17PositiveFindingOtherMeasurementScaleText; + } + + /** + * Sets the value of the her2AndCentromere17PositiveFindingOtherMeasurementScaleText property. + * + * @param value + * allowed object is + * {@link Her2AndCentromere17PositiveFindingOtherMeasurementScaleText } + * + */ + public void setHer2AndCentromere17PositiveFindingOtherMeasurementScaleText(Her2AndCentromere17PositiveFindingOtherMeasurementScaleText value) { + this.her2AndCentromere17PositiveFindingOtherMeasurementScaleText = value; + } + + /** + * Gets the value of the her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @return + * possible object is + * {@link Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText getHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText() { + return her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + } + + /** + * Sets the value of the her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @param value + * allowed object is + * {@link Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public void setHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText value) { + this.her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText = value; + } + + /** + * Gets the value of the additionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link AdditionalSurgeryMetastaticProcedure } + * + */ + public AdditionalSurgeryMetastaticProcedure getAdditionalSurgeryMetastaticProcedure() { + return additionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the additionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link AdditionalSurgeryMetastaticProcedure } + * + */ + public void setAdditionalSurgeryMetastaticProcedure(AdditionalSurgeryMetastaticProcedure value) { + this.additionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the dayOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public DayOfAdditionalSurgeryMetastaticProcedure getDayOfAdditionalSurgeryMetastaticProcedure() { + return dayOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the dayOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setDayOfAdditionalSurgeryMetastaticProcedure(DayOfAdditionalSurgeryMetastaticProcedure value) { + this.dayOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the monthOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public MonthOfAdditionalSurgeryMetastaticProcedure getMonthOfAdditionalSurgeryMetastaticProcedure() { + return monthOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the monthOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setMonthOfAdditionalSurgeryMetastaticProcedure(MonthOfAdditionalSurgeryMetastaticProcedure value) { + this.monthOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the yearOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public YearOfAdditionalSurgeryMetastaticProcedure getYearOfAdditionalSurgeryMetastaticProcedure() { + return yearOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the yearOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setYearOfAdditionalSurgeryMetastaticProcedure(YearOfAdditionalSurgeryMetastaticProcedure value) { + this.yearOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the daysToAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public DaysToAdditionalSurgeryMetastaticProcedure getDaysToAdditionalSurgeryMetastaticProcedure() { + return daysToAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the daysToAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public void setDaysToAdditionalSurgeryMetastaticProcedure(DaysToAdditionalSurgeryMetastaticProcedure value) { + this.daysToAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorStatus getMetastaticBreastCarcinomaEstrogenReceptorStatus() { + return metastaticBreastCarcinomaEstrogenReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorStatus(MetastaticBreastCarcinomaEstrogenReceptorStatus value) { + this.metastaticBreastCarcinomaEstrogenReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory getMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory() { + return metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory value) { + this.metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryErPosCellScore property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore getMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore() { + return metastaticBreastCarcinomaImmunohistochemistryErPosCellScore; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryErPosCellScore property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore value) { + this.metastaticBreastCarcinomaImmunohistochemistryErPosCellScore = value; + } + + /** + * Gets the value of the posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText property. + * + * @return + * possible object is + * {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText getPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText() { + return posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; + } + + /** + * Sets the value of the posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText property. + * + * @param value + * allowed object is + * {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public void setPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText(PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText value) { + this.posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText getMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText() { + return metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText(MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText value) { + this.metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorStatus getMetastaticBreastCarcinomaProgesteroneReceptorStatus() { + return metastaticBreastCarcinomaProgesteroneReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorStatus(MetastaticBreastCarcinomaProgesteroneReceptorStatus value) { + this.metastaticBreastCarcinomaProgesteroneReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory getMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory() { + return metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory value) { + this.metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore getMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore() { + return metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore value) { + this.metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText getMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText() { + return metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText value) { + this.metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText getMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText() { + return metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText(MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText value) { + this.metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus getMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus() { + return metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus(MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus value) { + this.metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory getMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory() { + return metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory(MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory value) { + this.metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult getMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult() { + return metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; + } + + /** + * Sets the value of the metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public void setMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult(MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult value) { + this.metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText getMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText() { + return metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText value) { + this.metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText getMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText() { + return metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText value) { + this.metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType getMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType() { + return metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; + } + + /** + * Sets the value of the metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public void setMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType(MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType value) { + this.metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType = value; + } + + /** + * Gets the value of the her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @return + * possible object is + * {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber getHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber() { + return her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; + } + + /** + * Sets the value of the her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @param value + * allowed object is + * {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public void setHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber(Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber value) { + this.her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange getMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange() { + return metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; + } + + /** + * Sets the value of the metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public void setMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange(MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange value) { + this.metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange = value; + } + + /** + * Gets the value of the her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount property. + * + * @return + * possible object is + * {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount getHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount() { + return her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; + } + + /** + * Sets the value of the her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount property. + * + * @param value + * allowed object is + * {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public void setHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount(Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount value) { + this.her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue getMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue() { + return metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public void setMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue(MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue value) { + this.metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText getMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText() { + return metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText(MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText value) { + this.metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText getMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText() { + return metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText value) { + this.metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText = value; + } + + /** + * Gets the value of the additionalRadiationTherapy property. + * + * @return + * possible object is + * {@link AdditionalRadiationTherapy } + * + */ + public AdditionalRadiationTherapy getAdditionalRadiationTherapy() { + return additionalRadiationTherapy; + } + + /** + * Sets the value of the additionalRadiationTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalRadiationTherapy } + * + */ + public void setAdditionalRadiationTherapy(AdditionalRadiationTherapy value) { + this.additionalRadiationTherapy = value; + } + + /** + * Gets the value of the additionalPharmaceuticalTherapy property. + * + * @return + * possible object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public AdditionalPharmaceuticalTherapy getAdditionalPharmaceuticalTherapy() { + return additionalPharmaceuticalTherapy; + } + + /** + * Sets the value of the additionalPharmaceuticalTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public void setAdditionalPharmaceuticalTherapy(AdditionalPharmaceuticalTherapy value) { + this.additionalPharmaceuticalTherapy = value; + } + + /** + * Gets the value of the dayOfFormCompletion property. + * + * @return + * possible object is + * {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion getDayOfFormCompletion() { + return dayOfFormCompletion; + } + + /** + * Sets the value of the dayOfFormCompletion property. + * + * @param value + * allowed object is + * {@link DayOfFormCompletion } + * + */ + public void setDayOfFormCompletion(DayOfFormCompletion value) { + this.dayOfFormCompletion = value; + } + + /** + * Gets the value of the monthOfFormCompletion property. + * + * @return + * possible object is + * {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion getMonthOfFormCompletion() { + return monthOfFormCompletion; + } + + /** + * Sets the value of the monthOfFormCompletion property. + * + * @param value + * allowed object is + * {@link MonthOfFormCompletion } + * + */ + public void setMonthOfFormCompletion(MonthOfFormCompletion value) { + this.monthOfFormCompletion = value; + } + + /** + * Gets the value of the yearOfFormCompletion property. + * + * @return + * possible object is + * {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion getYearOfFormCompletion() { + return yearOfFormCompletion; + } + + /** + * Sets the value of the yearOfFormCompletion property. + * + * @param value + * allowed object is + * {@link YearOfFormCompletion } + * + */ + public void setYearOfFormCompletion(YearOfFormCompletion value) { + this.yearOfFormCompletion = value; + } + + /** + * Gets the value of the daysToFormCompletion property. + * + * @return + * possible object is + * {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion getDaysToFormCompletion() { + return daysToFormCompletion; + } + + /** + * Sets the value of the daysToFormCompletion property. + * + * @param value + * allowed object is + * {@link DaysToFormCompletion } + * + */ + public void setDaysToFormCompletion(DaysToFormCompletion value) { + this.daysToFormCompletion = value; + } + + /** + * Gets the value of the version property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersion() { + if (version == null) { + return "1.5"; + } else { + 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 sequence property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSequence() { + return sequence; + } + + /** + * Sets the value of the sequence property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSequence(BigInteger value) { + this.sequence = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/ObjectFactory.java new file mode 100644 index 0000000..43ed4db --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/ObjectFactory.java @@ -0,0 +1,47 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._1; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._1 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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._1 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link FollowUp } + * + */ + public FollowUp createFollowUp() { + return new FollowUp(); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/package-info.java new file mode 100644 index 0000000..73caa08 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_1/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/brca/followup/2.7/1.5", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._1; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/FollowUp.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/FollowUp.java new file mode 100644 index 0000000..05943ce --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/FollowUp.java @@ -0,0 +1,1844 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BcrFollowupBarcode; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BcrFollowupUuid; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.FollowupCaseReportFormSubmissionReason; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PersonNeoplasmCancerStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PostoperativeRxTx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TargetedMolecularTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.VitalStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalPharmaceuticalTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalRadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmEventOccurrenceAnatomicSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmEventType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmOccurrenceAnatomicSiteText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfNewTumorEventAfterInitialTreatment; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}bcr_followup_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}bcr_followup_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}followup_case_report_form_submission_reason"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}targeted_molecular_therapy" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}postoperative_rx_tx" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}vital_status"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_followup"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_followup"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_death"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_death"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}person_neoplasm_cancer_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_tumor_event_after_initial_treatment"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_new_tumor_event_after_initial_treatment"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_new_tumor_event_after_initial_treatment"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_neoplasm_event_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_neoplasm_event_occurrence_anatomic_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_neoplasm_occurrence_anatomic_site_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_surgery_locoregional_procedure"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_additional_surgery_metastatic_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_additional_surgery_metastatic_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_additional_surgery_metastatic_procedure"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_additional_surgery_metastatic_procedure"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_pharmaceutical_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_er_positive_finding_scale_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_progesterone_receptor_positive_finding_scale_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_form_completion"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_form_completion"/>
+ *         </choice>
+ *       </sequence>
+ *       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="sequence" type="{http://www.w3.org/2001/XMLSchema}integer" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcrFollowupBarcode", + "bcrFollowupUuid", + "followupCaseReportFormSubmissionReason", + "radiationTherapy", + "targetedMolecularTherapy", + "postoperativeRxTx", + "vitalStatus", + "dayOfLastFollowup", + "monthOfLastFollowup", + "yearOfLastFollowup", + "daysToLastFollowup", + "dayOfDeath", + "monthOfDeath", + "yearOfDeath", + "daysToDeath", + "personNeoplasmCancerStatus", + "newTumorEventAfterInitialTreatment", + "dayOfNewTumorEventAfterInitialTreatment", + "monthOfNewTumorEventAfterInitialTreatment", + "yearOfNewTumorEventAfterInitialTreatment", + "daysToNewTumorEventAfterInitialTreatment", + "newNeoplasmEventType", + "newNeoplasmEventOccurrenceAnatomicSite", + "newNeoplasmOccurrenceAnatomicSiteText", + "additionalSurgeryLocoregionalProcedure", + "dayOfAdditionalSurgeryMetastaticProcedure", + "monthOfAdditionalSurgeryMetastaticProcedure", + "yearOfAdditionalSurgeryMetastaticProcedure", + "daysToAdditionalSurgeryMetastaticProcedure", + "additionalRadiationTherapy", + "additionalPharmaceuticalTherapy", + "metastaticBreastCarcinomaEstrogenReceptorStatus", + "metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory", + "metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType", + "posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText", + "metastaticBreastCarcinomaImmunohistochemistryErPosCellScore", + "metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText", + "metastaticBreastCarcinomaProgesteroneReceptorStatus", + "metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory", + "metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType", + "metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText", + "metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore", + "metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText", + "metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus", + "metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory", + "metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult", + "metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText", + "metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText", + "metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType", + "her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber", + "metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange", + "her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount", + "metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue", + "metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText", + "metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText", + "dayOfFormCompletion", + "monthOfFormCompletion", + "yearOfFormCompletion", + "daysToFormCompletion" +}) +@XmlRootElement(name = "follow_up") +public class FollowUp { + + @XmlElement(name = "bcr_followup_barcode", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected BcrFollowupBarcode bcrFollowupBarcode; + @XmlElement(name = "bcr_followup_uuid", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected BcrFollowupUuid bcrFollowupUuid; + @XmlElement(name = "followup_case_report_form_submission_reason", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected FollowupCaseReportFormSubmissionReason followupCaseReportFormSubmissionReason; + @XmlElement(name = "radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RadiationTherapy radiationTherapy; + @XmlElement(name = "targeted_molecular_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected TargetedMolecularTherapy targetedMolecularTherapy; + @XmlElement(name = "postoperative_rx_tx", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected PostoperativeRxTx postoperativeRxTx; + @XmlElement(name = "vital_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected VitalStatus vitalStatus; + @XmlElement(name = "day_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfLastFollowup dayOfLastFollowup; + @XmlElement(name = "month_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfLastFollowup monthOfLastFollowup; + @XmlElement(name = "year_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfLastFollowup yearOfLastFollowup; + @XmlElement(name = "days_to_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastFollowup daysToLastFollowup; + @XmlElement(name = "day_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfDeath dayOfDeath; + @XmlElement(name = "month_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfDeath monthOfDeath; + @XmlElement(name = "year_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfDeath yearOfDeath; + @XmlElement(name = "days_to_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToDeath daysToDeath; + @XmlElement(name = "person_neoplasm_cancer_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PersonNeoplasmCancerStatus personNeoplasmCancerStatus; + @XmlElement(name = "new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewTumorEventAfterInitialTreatment newTumorEventAfterInitialTreatment; + @XmlElement(name = "day_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfNewTumorEventAfterInitialTreatment dayOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "month_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfNewTumorEventAfterInitialTreatment monthOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "year_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfNewTumorEventAfterInitialTreatment yearOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "days_to_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToNewTumorEventAfterInitialTreatment daysToNewTumorEventAfterInitialTreatment; + @XmlElement(name = "new_neoplasm_event_type", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewNeoplasmEventType newNeoplasmEventType; + @XmlElement(name = "new_neoplasm_event_occurrence_anatomic_site", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewNeoplasmEventOccurrenceAnatomicSite newNeoplasmEventOccurrenceAnatomicSite; + @XmlElement(name = "new_neoplasm_occurrence_anatomic_site_text", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewNeoplasmOccurrenceAnatomicSiteText newNeoplasmOccurrenceAnatomicSiteText; + @XmlElement(name = "additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalSurgeryLocoregionalProcedure additionalSurgeryLocoregionalProcedure; + @XmlElement(name = "day_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfAdditionalSurgeryMetastaticProcedure dayOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "month_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfAdditionalSurgeryMetastaticProcedure monthOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "year_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfAdditionalSurgeryMetastaticProcedure yearOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "days_to_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToAdditionalSurgeryMetastaticProcedure daysToAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "additional_radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalRadiationTherapy additionalRadiationTherapy; + @XmlElement(name = "additional_pharmaceutical_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalPharmaceuticalTherapy additionalPharmaceuticalTherapy; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorStatus metastaticBreastCarcinomaEstrogenReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_er_positive_finding_scale_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType; + @XmlElement(name = "pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore metastaticBreastCarcinomaImmunohistochemistryErPosCellScore; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorStatus metastaticBreastCarcinomaProgesteroneReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_progesterone_receptor_positive_finding_scale_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; + @XmlElement(name = "her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; + @XmlElement(name = "metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; + @XmlElement(name = "her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; + @XmlElement(name = "metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + @XmlElement(name = "day_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfFormCompletion dayOfFormCompletion; + @XmlElement(name = "month_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfFormCompletion monthOfFormCompletion; + @XmlElement(name = "year_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfFormCompletion yearOfFormCompletion; + @XmlElement(name = "days_to_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToFormCompletion daysToFormCompletion; + @XmlAttribute(name = "version") + protected String version; + @XmlAttribute(name = "sequence") + protected BigInteger sequence; + + /** + * Gets the value of the bcrFollowupBarcode property. + * + * @return + * possible object is + * {@link BcrFollowupBarcode } + * + */ + public BcrFollowupBarcode getBcrFollowupBarcode() { + return bcrFollowupBarcode; + } + + /** + * Sets the value of the bcrFollowupBarcode property. + * + * @param value + * allowed object is + * {@link BcrFollowupBarcode } + * + */ + public void setBcrFollowupBarcode(BcrFollowupBarcode value) { + this.bcrFollowupBarcode = value; + } + + /** + * Gets the value of the bcrFollowupUuid property. + * + * @return + * possible object is + * {@link BcrFollowupUuid } + * + */ + public BcrFollowupUuid getBcrFollowupUuid() { + return bcrFollowupUuid; + } + + /** + * Sets the value of the bcrFollowupUuid property. + * + * @param value + * allowed object is + * {@link BcrFollowupUuid } + * + */ + public void setBcrFollowupUuid(BcrFollowupUuid value) { + this.bcrFollowupUuid = value; + } + + /** + * Gets the value of the followupCaseReportFormSubmissionReason property. + * + * @return + * possible object is + * {@link FollowupCaseReportFormSubmissionReason } + * + */ + public FollowupCaseReportFormSubmissionReason getFollowupCaseReportFormSubmissionReason() { + return followupCaseReportFormSubmissionReason; + } + + /** + * Sets the value of the followupCaseReportFormSubmissionReason property. + * + * @param value + * allowed object is + * {@link FollowupCaseReportFormSubmissionReason } + * + */ + public void setFollowupCaseReportFormSubmissionReason(FollowupCaseReportFormSubmissionReason value) { + this.followupCaseReportFormSubmissionReason = value; + } + + /** + * Gets the value of the radiationTherapy property. + * + * @return + * possible object is + * {@link RadiationTherapy } + * + */ + public RadiationTherapy getRadiationTherapy() { + return radiationTherapy; + } + + /** + * Sets the value of the radiationTherapy property. + * + * @param value + * allowed object is + * {@link RadiationTherapy } + * + */ + public void setRadiationTherapy(RadiationTherapy value) { + this.radiationTherapy = value; + } + + /** + * Gets the value of the targetedMolecularTherapy property. + * + * @return + * possible object is + * {@link TargetedMolecularTherapy } + * + */ + public TargetedMolecularTherapy getTargetedMolecularTherapy() { + return targetedMolecularTherapy; + } + + /** + * Sets the value of the targetedMolecularTherapy property. + * + * @param value + * allowed object is + * {@link TargetedMolecularTherapy } + * + */ + public void setTargetedMolecularTherapy(TargetedMolecularTherapy value) { + this.targetedMolecularTherapy = value; + } + + /** + * Gets the value of the postoperativeRxTx property. + * + * @return + * possible object is + * {@link PostoperativeRxTx } + * + */ + public PostoperativeRxTx getPostoperativeRxTx() { + return postoperativeRxTx; + } + + /** + * Sets the value of the postoperativeRxTx property. + * + * @param value + * allowed object is + * {@link PostoperativeRxTx } + * + */ + public void setPostoperativeRxTx(PostoperativeRxTx value) { + this.postoperativeRxTx = value; + } + + /** + * + * Data for the vital_status element is also asked on the + * TCGA Clinical Data Form during initial enrollment within the BRCA study. + * + * + * @return + * possible object is + * {@link VitalStatus } + * + */ + public VitalStatus getVitalStatus() { + return vitalStatus; + } + + /** + * Sets the value of the vitalStatus property. + * + * @param value + * allowed object is + * {@link VitalStatus } + * + */ + public void setVitalStatus(VitalStatus value) { + this.vitalStatus = value; + } + + /** + * Gets the value of the dayOfLastFollowup property. + * + * @return + * possible object is + * {@link DayOfLastFollowup } + * + */ + public DayOfLastFollowup getDayOfLastFollowup() { + return dayOfLastFollowup; + } + + /** + * Sets the value of the dayOfLastFollowup property. + * + * @param value + * allowed object is + * {@link DayOfLastFollowup } + * + */ + public void setDayOfLastFollowup(DayOfLastFollowup value) { + this.dayOfLastFollowup = value; + } + + /** + * Gets the value of the monthOfLastFollowup property. + * + * @return + * possible object is + * {@link MonthOfLastFollowup } + * + */ + public MonthOfLastFollowup getMonthOfLastFollowup() { + return monthOfLastFollowup; + } + + /** + * Sets the value of the monthOfLastFollowup property. + * + * @param value + * allowed object is + * {@link MonthOfLastFollowup } + * + */ + public void setMonthOfLastFollowup(MonthOfLastFollowup value) { + this.monthOfLastFollowup = value; + } + + /** + * Gets the value of the yearOfLastFollowup property. + * + * @return + * possible object is + * {@link YearOfLastFollowup } + * + */ + public YearOfLastFollowup getYearOfLastFollowup() { + return yearOfLastFollowup; + } + + /** + * Sets the value of the yearOfLastFollowup property. + * + * @param value + * allowed object is + * {@link YearOfLastFollowup } + * + */ + public void setYearOfLastFollowup(YearOfLastFollowup value) { + this.yearOfLastFollowup = value; + } + + /** + * Gets the value of the daysToLastFollowup property. + * + * @return + * possible object is + * {@link DaysToLastFollowup } + * + */ + public DaysToLastFollowup getDaysToLastFollowup() { + return daysToLastFollowup; + } + + /** + * Sets the value of the daysToLastFollowup property. + * + * @param value + * allowed object is + * {@link DaysToLastFollowup } + * + */ + public void setDaysToLastFollowup(DaysToLastFollowup value) { + this.daysToLastFollowup = value; + } + + /** + * Gets the value of the dayOfDeath property. + * + * @return + * possible object is + * {@link DayOfDeath } + * + */ + public DayOfDeath getDayOfDeath() { + return dayOfDeath; + } + + /** + * Sets the value of the dayOfDeath property. + * + * @param value + * allowed object is + * {@link DayOfDeath } + * + */ + public void setDayOfDeath(DayOfDeath value) { + this.dayOfDeath = value; + } + + /** + * Gets the value of the monthOfDeath property. + * + * @return + * possible object is + * {@link MonthOfDeath } + * + */ + public MonthOfDeath getMonthOfDeath() { + return monthOfDeath; + } + + /** + * Sets the value of the monthOfDeath property. + * + * @param value + * allowed object is + * {@link MonthOfDeath } + * + */ + public void setMonthOfDeath(MonthOfDeath value) { + this.monthOfDeath = value; + } + + /** + * Gets the value of the yearOfDeath property. + * + * @return + * possible object is + * {@link YearOfDeath } + * + */ + public YearOfDeath getYearOfDeath() { + return yearOfDeath; + } + + /** + * Sets the value of the yearOfDeath property. + * + * @param value + * allowed object is + * {@link YearOfDeath } + * + */ + public void setYearOfDeath(YearOfDeath value) { + this.yearOfDeath = value; + } + + /** + * Gets the value of the daysToDeath property. + * + * @return + * possible object is + * {@link DaysToDeath } + * + */ + public DaysToDeath getDaysToDeath() { + return daysToDeath; + } + + /** + * Sets the value of the daysToDeath property. + * + * @param value + * allowed object is + * {@link DaysToDeath } + * + */ + public void setDaysToDeath(DaysToDeath value) { + this.daysToDeath = value; + } + + /** + * + * Data for the person_neoplasm_cancer_status elements are also asked on the + * TCGA Clinical Data Form during initial enrollment within the BRCA study. + * + * + * @return + * possible object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public PersonNeoplasmCancerStatus getPersonNeoplasmCancerStatus() { + return personNeoplasmCancerStatus; + } + + /** + * Sets the value of the personNeoplasmCancerStatus property. + * + * @param value + * allowed object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public void setPersonNeoplasmCancerStatus(PersonNeoplasmCancerStatus value) { + this.personNeoplasmCancerStatus = value; + } + + /** + * Gets the value of the newTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link NewTumorEventAfterInitialTreatment } + * + */ + public NewTumorEventAfterInitialTreatment getNewTumorEventAfterInitialTreatment() { + return newTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the newTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link NewTumorEventAfterInitialTreatment } + * + */ + public void setNewTumorEventAfterInitialTreatment(NewTumorEventAfterInitialTreatment value) { + this.newTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public DayOfNewTumorEventAfterInitialTreatment getDayOfNewTumorEventAfterInitialTreatment() { + return dayOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public void setDayOfNewTumorEventAfterInitialTreatment(DayOfNewTumorEventAfterInitialTreatment value) { + this.dayOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public MonthOfNewTumorEventAfterInitialTreatment getMonthOfNewTumorEventAfterInitialTreatment() { + return monthOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public void setMonthOfNewTumorEventAfterInitialTreatment(MonthOfNewTumorEventAfterInitialTreatment value) { + this.monthOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public YearOfNewTumorEventAfterInitialTreatment getYearOfNewTumorEventAfterInitialTreatment() { + return yearOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public void setYearOfNewTumorEventAfterInitialTreatment(YearOfNewTumorEventAfterInitialTreatment value) { + this.yearOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public DaysToNewTumorEventAfterInitialTreatment getDaysToNewTumorEventAfterInitialTreatment() { + return daysToNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public void setDaysToNewTumorEventAfterInitialTreatment(DaysToNewTumorEventAfterInitialTreatment value) { + this.daysToNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the newNeoplasmEventType property. + * + * @return + * possible object is + * {@link NewNeoplasmEventType } + * + */ + public NewNeoplasmEventType getNewNeoplasmEventType() { + return newNeoplasmEventType; + } + + /** + * Sets the value of the newNeoplasmEventType property. + * + * @param value + * allowed object is + * {@link NewNeoplasmEventType } + * + */ + public void setNewNeoplasmEventType(NewNeoplasmEventType value) { + this.newNeoplasmEventType = value; + } + + /** + * Gets the value of the newNeoplasmEventOccurrenceAnatomicSite property. + * + * @return + * possible object is + * {@link NewNeoplasmEventOccurrenceAnatomicSite } + * + */ + public NewNeoplasmEventOccurrenceAnatomicSite getNewNeoplasmEventOccurrenceAnatomicSite() { + return newNeoplasmEventOccurrenceAnatomicSite; + } + + /** + * Sets the value of the newNeoplasmEventOccurrenceAnatomicSite property. + * + * @param value + * allowed object is + * {@link NewNeoplasmEventOccurrenceAnatomicSite } + * + */ + public void setNewNeoplasmEventOccurrenceAnatomicSite(NewNeoplasmEventOccurrenceAnatomicSite value) { + this.newNeoplasmEventOccurrenceAnatomicSite = value; + } + + /** + * Gets the value of the newNeoplasmOccurrenceAnatomicSiteText property. + * + * @return + * possible object is + * {@link NewNeoplasmOccurrenceAnatomicSiteText } + * + */ + public NewNeoplasmOccurrenceAnatomicSiteText getNewNeoplasmOccurrenceAnatomicSiteText() { + return newNeoplasmOccurrenceAnatomicSiteText; + } + + /** + * Sets the value of the newNeoplasmOccurrenceAnatomicSiteText property. + * + * @param value + * allowed object is + * {@link NewNeoplasmOccurrenceAnatomicSiteText } + * + */ + public void setNewNeoplasmOccurrenceAnatomicSiteText(NewNeoplasmOccurrenceAnatomicSiteText value) { + this.newNeoplasmOccurrenceAnatomicSiteText = value; + } + + /** + * Gets the value of the additionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public AdditionalSurgeryLocoregionalProcedure getAdditionalSurgeryLocoregionalProcedure() { + return additionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the additionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public void setAdditionalSurgeryLocoregionalProcedure(AdditionalSurgeryLocoregionalProcedure value) { + this.additionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the dayOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public DayOfAdditionalSurgeryMetastaticProcedure getDayOfAdditionalSurgeryMetastaticProcedure() { + return dayOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the dayOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setDayOfAdditionalSurgeryMetastaticProcedure(DayOfAdditionalSurgeryMetastaticProcedure value) { + this.dayOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the monthOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public MonthOfAdditionalSurgeryMetastaticProcedure getMonthOfAdditionalSurgeryMetastaticProcedure() { + return monthOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the monthOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setMonthOfAdditionalSurgeryMetastaticProcedure(MonthOfAdditionalSurgeryMetastaticProcedure value) { + this.monthOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the yearOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public YearOfAdditionalSurgeryMetastaticProcedure getYearOfAdditionalSurgeryMetastaticProcedure() { + return yearOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the yearOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setYearOfAdditionalSurgeryMetastaticProcedure(YearOfAdditionalSurgeryMetastaticProcedure value) { + this.yearOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the daysToAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public DaysToAdditionalSurgeryMetastaticProcedure getDaysToAdditionalSurgeryMetastaticProcedure() { + return daysToAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the daysToAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public void setDaysToAdditionalSurgeryMetastaticProcedure(DaysToAdditionalSurgeryMetastaticProcedure value) { + this.daysToAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the additionalRadiationTherapy property. + * + * @return + * possible object is + * {@link AdditionalRadiationTherapy } + * + */ + public AdditionalRadiationTherapy getAdditionalRadiationTherapy() { + return additionalRadiationTherapy; + } + + /** + * Sets the value of the additionalRadiationTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalRadiationTherapy } + * + */ + public void setAdditionalRadiationTherapy(AdditionalRadiationTherapy value) { + this.additionalRadiationTherapy = value; + } + + /** + * Gets the value of the additionalPharmaceuticalTherapy property. + * + * @return + * possible object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public AdditionalPharmaceuticalTherapy getAdditionalPharmaceuticalTherapy() { + return additionalPharmaceuticalTherapy; + } + + /** + * Sets the value of the additionalPharmaceuticalTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public void setAdditionalPharmaceuticalTherapy(AdditionalPharmaceuticalTherapy value) { + this.additionalPharmaceuticalTherapy = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorStatus getMetastaticBreastCarcinomaEstrogenReceptorStatus() { + return metastaticBreastCarcinomaEstrogenReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorStatus(MetastaticBreastCarcinomaEstrogenReceptorStatus value) { + this.metastaticBreastCarcinomaEstrogenReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory getMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory() { + return metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory value) { + this.metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory = value; + } + + /** + * + * NEW question that was added on the TCGA clinical data follow-up (v2.1) form within the BRCA study. + * + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType getMetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType() { + return metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType(MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType value) { + this.metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType = value; + } + + /** + * Gets the value of the posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText property. + * + * @return + * possible object is + * {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText getPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText() { + return posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; + } + + /** + * Sets the value of the posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText property. + * + * @param value + * allowed object is + * {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public void setPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText(PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText value) { + this.posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryErPosCellScore property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore getMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore() { + return metastaticBreastCarcinomaImmunohistochemistryErPosCellScore; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryErPosCellScore property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore value) { + this.metastaticBreastCarcinomaImmunohistochemistryErPosCellScore = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText getMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText() { + return metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText(MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText value) { + this.metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorStatus getMetastaticBreastCarcinomaProgesteroneReceptorStatus() { + return metastaticBreastCarcinomaProgesteroneReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorStatus(MetastaticBreastCarcinomaProgesteroneReceptorStatus value) { + this.metastaticBreastCarcinomaProgesteroneReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory getMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory() { + return metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory value) { + this.metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory = value; + } + + /** + * + * NEW question that was added on the TCGA Clinical Data Follow-up (starting with v2.1) Form within the BRCA study. + * + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType getMetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType() { + return metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType(MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType value) { + this.metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText getMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText() { + return metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText value) { + this.metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore getMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore() { + return metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore value) { + this.metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText getMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText() { + return metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText(MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText value) { + this.metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus getMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus() { + return metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus(MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus value) { + this.metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory getMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory() { + return metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory(MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory value) { + this.metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult getMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult() { + return metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; + } + + /** + * Sets the value of the metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public void setMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult(MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult value) { + this.metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText getMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText() { + return metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText value) { + this.metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText getMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText() { + return metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText value) { + this.metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType getMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType() { + return metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; + } + + /** + * Sets the value of the metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public void setMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType(MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType value) { + this.metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType = value; + } + + /** + * Gets the value of the her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @return + * possible object is + * {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber getHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber() { + return her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; + } + + /** + * Sets the value of the her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @param value + * allowed object is + * {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public void setHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber(Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber value) { + this.her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange getMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange() { + return metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; + } + + /** + * Sets the value of the metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public void setMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange(MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange value) { + this.metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange = value; + } + + /** + * Gets the value of the her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount property. + * + * @return + * possible object is + * {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount getHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount() { + return her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; + } + + /** + * Sets the value of the her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount property. + * + * @param value + * allowed object is + * {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public void setHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount(Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount value) { + this.her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue getMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue() { + return metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public void setMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue(MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue value) { + this.metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText getMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText() { + return metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText(MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText value) { + this.metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText getMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText() { + return metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText value) { + this.metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText = value; + } + + /** + * Gets the value of the dayOfFormCompletion property. + * + * @return + * possible object is + * {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion getDayOfFormCompletion() { + return dayOfFormCompletion; + } + + /** + * Sets the value of the dayOfFormCompletion property. + * + * @param value + * allowed object is + * {@link DayOfFormCompletion } + * + */ + public void setDayOfFormCompletion(DayOfFormCompletion value) { + this.dayOfFormCompletion = value; + } + + /** + * Gets the value of the monthOfFormCompletion property. + * + * @return + * possible object is + * {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion getMonthOfFormCompletion() { + return monthOfFormCompletion; + } + + /** + * Sets the value of the monthOfFormCompletion property. + * + * @param value + * allowed object is + * {@link MonthOfFormCompletion } + * + */ + public void setMonthOfFormCompletion(MonthOfFormCompletion value) { + this.monthOfFormCompletion = value; + } + + /** + * Gets the value of the yearOfFormCompletion property. + * + * @return + * possible object is + * {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion getYearOfFormCompletion() { + return yearOfFormCompletion; + } + + /** + * Sets the value of the yearOfFormCompletion property. + * + * @param value + * allowed object is + * {@link YearOfFormCompletion } + * + */ + public void setYearOfFormCompletion(YearOfFormCompletion value) { + this.yearOfFormCompletion = value; + } + + /** + * Gets the value of the daysToFormCompletion property. + * + * @return + * possible object is + * {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion getDaysToFormCompletion() { + return daysToFormCompletion; + } + + /** + * Sets the value of the daysToFormCompletion property. + * + * @param value + * allowed object is + * {@link DaysToFormCompletion } + * + */ + public void setDaysToFormCompletion(DaysToFormCompletion value) { + this.daysToFormCompletion = value; + } + + /** + * Gets the value of the version property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersion() { + if (version == null) { + return "2.1"; + } else { + 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 sequence property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSequence() { + return sequence; + } + + /** + * Sets the value of the sequence property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSequence(BigInteger value) { + this.sequence = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/ObjectFactory.java new file mode 100644 index 0000000..92fcc36 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/ObjectFactory.java @@ -0,0 +1,47 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._2; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._2 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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link FollowUp } + * + */ + public FollowUp createFollowUp() { + return new FollowUp(); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/package-info.java new file mode 100644 index 0000000..6b70e28 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/brca/followup/2.7/2.1", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/FollowUp.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/FollowUp.java new file mode 100644 index 0000000..e17d8b4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/FollowUp.java @@ -0,0 +1,695 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._4; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared.new_tumor_event._2_7._1.NewTumorEvents; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BcrFollowupBarcode; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BcrFollowupUuid; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.LostFollowUp; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PersonNeoplasmCancerStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PostoperativeRxTx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.VitalStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastFollowup; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}bcr_followup_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}bcr_followup_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}lost_follow_up"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}postoperative_rx_tx"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}person_neoplasm_cancer_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}vital_status"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_followup"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_followup"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_death"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_death"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/new_tumor_event/2.7/1.0}new_tumor_events"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_form_completion"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_form_completion"/>
+ *         </choice>
+ *       </sequence>
+ *       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" default="4.0" />
+ *       <attribute name="sequence" type="{http://www.w3.org/2001/XMLSchema}integer" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcrFollowupBarcode", + "bcrFollowupUuid", + "lostFollowUp", + "radiationTherapy", + "postoperativeRxTx", + "personNeoplasmCancerStatus", + "vitalStatus", + "dayOfLastFollowup", + "monthOfLastFollowup", + "yearOfLastFollowup", + "daysToLastFollowup", + "dayOfDeath", + "monthOfDeath", + "yearOfDeath", + "daysToDeath", + "newTumorEvents", + "dayOfFormCompletion", + "monthOfFormCompletion", + "yearOfFormCompletion", + "daysToFormCompletion" +}) +@XmlRootElement(name = "follow_up") +public class FollowUp { + + @XmlElement(name = "bcr_followup_barcode", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected BcrFollowupBarcode bcrFollowupBarcode; + @XmlElement(name = "bcr_followup_uuid", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected BcrFollowupUuid bcrFollowupUuid; + @XmlElement(name = "lost_follow_up", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected LostFollowUp lostFollowUp; + @XmlElement(name = "radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RadiationTherapy radiationTherapy; + @XmlElement(name = "postoperative_rx_tx", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PostoperativeRxTx postoperativeRxTx; + @XmlElement(name = "person_neoplasm_cancer_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PersonNeoplasmCancerStatus personNeoplasmCancerStatus; + @XmlElement(name = "vital_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected VitalStatus vitalStatus; + @XmlElement(name = "day_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfLastFollowup dayOfLastFollowup; + @XmlElement(name = "month_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfLastFollowup monthOfLastFollowup; + @XmlElement(name = "year_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfLastFollowup yearOfLastFollowup; + @XmlElement(name = "days_to_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastFollowup daysToLastFollowup; + @XmlElement(name = "day_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfDeath dayOfDeath; + @XmlElement(name = "month_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfDeath monthOfDeath; + @XmlElement(name = "year_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfDeath yearOfDeath; + @XmlElement(name = "days_to_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToDeath daysToDeath; + @XmlElement(name = "new_tumor_events", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/new_tumor_event/2.7/1.0", required = true) + protected NewTumorEvents newTumorEvents; + @XmlElement(name = "day_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfFormCompletion dayOfFormCompletion; + @XmlElement(name = "month_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfFormCompletion monthOfFormCompletion; + @XmlElement(name = "year_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfFormCompletion yearOfFormCompletion; + @XmlElement(name = "days_to_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToFormCompletion daysToFormCompletion; + @XmlAttribute(name = "version") + protected String version; + @XmlAttribute(name = "sequence") + protected BigInteger sequence; + + /** + * Gets the value of the bcrFollowupBarcode property. + * + * @return + * possible object is + * {@link BcrFollowupBarcode } + * + */ + public BcrFollowupBarcode getBcrFollowupBarcode() { + return bcrFollowupBarcode; + } + + /** + * Sets the value of the bcrFollowupBarcode property. + * + * @param value + * allowed object is + * {@link BcrFollowupBarcode } + * + */ + public void setBcrFollowupBarcode(BcrFollowupBarcode value) { + this.bcrFollowupBarcode = value; + } + + /** + * Gets the value of the bcrFollowupUuid property. + * + * @return + * possible object is + * {@link BcrFollowupUuid } + * + */ + public BcrFollowupUuid getBcrFollowupUuid() { + return bcrFollowupUuid; + } + + /** + * Sets the value of the bcrFollowupUuid property. + * + * @param value + * allowed object is + * {@link BcrFollowupUuid } + * + */ + public void setBcrFollowupUuid(BcrFollowupUuid value) { + this.bcrFollowupUuid = value; + } + + /** + * Gets the value of the lostFollowUp property. + * + * @return + * possible object is + * {@link LostFollowUp } + * + */ + public LostFollowUp getLostFollowUp() { + return lostFollowUp; + } + + /** + * Sets the value of the lostFollowUp property. + * + * @param value + * allowed object is + * {@link LostFollowUp } + * + */ + public void setLostFollowUp(LostFollowUp value) { + this.lostFollowUp = value; + } + + /** + * Gets the value of the radiationTherapy property. + * + * @return + * possible object is + * {@link RadiationTherapy } + * + */ + public RadiationTherapy getRadiationTherapy() { + return radiationTherapy; + } + + /** + * Sets the value of the radiationTherapy property. + * + * @param value + * allowed object is + * {@link RadiationTherapy } + * + */ + public void setRadiationTherapy(RadiationTherapy value) { + this.radiationTherapy = value; + } + + /** + * Gets the value of the postoperativeRxTx property. + * + * @return + * possible object is + * {@link PostoperativeRxTx } + * + */ + public PostoperativeRxTx getPostoperativeRxTx() { + return postoperativeRxTx; + } + + /** + * Sets the value of the postoperativeRxTx property. + * + * @param value + * allowed object is + * {@link PostoperativeRxTx } + * + */ + public void setPostoperativeRxTx(PostoperativeRxTx value) { + this.postoperativeRxTx = value; + } + + /** + * Gets the value of the personNeoplasmCancerStatus property. + * + * @return + * possible object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public PersonNeoplasmCancerStatus getPersonNeoplasmCancerStatus() { + return personNeoplasmCancerStatus; + } + + /** + * Sets the value of the personNeoplasmCancerStatus property. + * + * @param value + * allowed object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public void setPersonNeoplasmCancerStatus(PersonNeoplasmCancerStatus value) { + this.personNeoplasmCancerStatus = value; + } + + /** + * Gets the value of the vitalStatus property. + * + * @return + * possible object is + * {@link VitalStatus } + * + */ + public VitalStatus getVitalStatus() { + return vitalStatus; + } + + /** + * Sets the value of the vitalStatus property. + * + * @param value + * allowed object is + * {@link VitalStatus } + * + */ + public void setVitalStatus(VitalStatus value) { + this.vitalStatus = value; + } + + /** + * Gets the value of the dayOfLastFollowup property. + * + * @return + * possible object is + * {@link DayOfLastFollowup } + * + */ + public DayOfLastFollowup getDayOfLastFollowup() { + return dayOfLastFollowup; + } + + /** + * Sets the value of the dayOfLastFollowup property. + * + * @param value + * allowed object is + * {@link DayOfLastFollowup } + * + */ + public void setDayOfLastFollowup(DayOfLastFollowup value) { + this.dayOfLastFollowup = value; + } + + /** + * Gets the value of the monthOfLastFollowup property. + * + * @return + * possible object is + * {@link MonthOfLastFollowup } + * + */ + public MonthOfLastFollowup getMonthOfLastFollowup() { + return monthOfLastFollowup; + } + + /** + * Sets the value of the monthOfLastFollowup property. + * + * @param value + * allowed object is + * {@link MonthOfLastFollowup } + * + */ + public void setMonthOfLastFollowup(MonthOfLastFollowup value) { + this.monthOfLastFollowup = value; + } + + /** + * Gets the value of the yearOfLastFollowup property. + * + * @return + * possible object is + * {@link YearOfLastFollowup } + * + */ + public YearOfLastFollowup getYearOfLastFollowup() { + return yearOfLastFollowup; + } + + /** + * Sets the value of the yearOfLastFollowup property. + * + * @param value + * allowed object is + * {@link YearOfLastFollowup } + * + */ + public void setYearOfLastFollowup(YearOfLastFollowup value) { + this.yearOfLastFollowup = value; + } + + /** + * Gets the value of the daysToLastFollowup property. + * + * @return + * possible object is + * {@link DaysToLastFollowup } + * + */ + public DaysToLastFollowup getDaysToLastFollowup() { + return daysToLastFollowup; + } + + /** + * Sets the value of the daysToLastFollowup property. + * + * @param value + * allowed object is + * {@link DaysToLastFollowup } + * + */ + public void setDaysToLastFollowup(DaysToLastFollowup value) { + this.daysToLastFollowup = value; + } + + /** + * Gets the value of the dayOfDeath property. + * + * @return + * possible object is + * {@link DayOfDeath } + * + */ + public DayOfDeath getDayOfDeath() { + return dayOfDeath; + } + + /** + * Sets the value of the dayOfDeath property. + * + * @param value + * allowed object is + * {@link DayOfDeath } + * + */ + public void setDayOfDeath(DayOfDeath value) { + this.dayOfDeath = value; + } + + /** + * Gets the value of the monthOfDeath property. + * + * @return + * possible object is + * {@link MonthOfDeath } + * + */ + public MonthOfDeath getMonthOfDeath() { + return monthOfDeath; + } + + /** + * Sets the value of the monthOfDeath property. + * + * @param value + * allowed object is + * {@link MonthOfDeath } + * + */ + public void setMonthOfDeath(MonthOfDeath value) { + this.monthOfDeath = value; + } + + /** + * Gets the value of the yearOfDeath property. + * + * @return + * possible object is + * {@link YearOfDeath } + * + */ + public YearOfDeath getYearOfDeath() { + return yearOfDeath; + } + + /** + * Sets the value of the yearOfDeath property. + * + * @param value + * allowed object is + * {@link YearOfDeath } + * + */ + public void setYearOfDeath(YearOfDeath value) { + this.yearOfDeath = value; + } + + /** + * Gets the value of the daysToDeath property. + * + * @return + * possible object is + * {@link DaysToDeath } + * + */ + public DaysToDeath getDaysToDeath() { + return daysToDeath; + } + + /** + * Sets the value of the daysToDeath property. + * + * @param value + * allowed object is + * {@link DaysToDeath } + * + */ + public void setDaysToDeath(DaysToDeath value) { + this.daysToDeath = value; + } + + /** + * Gets the value of the newTumorEvents property. + * + * @return + * possible object is + * {@link NewTumorEvents } + * + */ + public NewTumorEvents getNewTumorEvents() { + return newTumorEvents; + } + + /** + * Sets the value of the newTumorEvents property. + * + * @param value + * allowed object is + * {@link NewTumorEvents } + * + */ + public void setNewTumorEvents(NewTumorEvents value) { + this.newTumorEvents = value; + } + + /** + * Gets the value of the dayOfFormCompletion property. + * + * @return + * possible object is + * {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion getDayOfFormCompletion() { + return dayOfFormCompletion; + } + + /** + * Sets the value of the dayOfFormCompletion property. + * + * @param value + * allowed object is + * {@link DayOfFormCompletion } + * + */ + public void setDayOfFormCompletion(DayOfFormCompletion value) { + this.dayOfFormCompletion = value; + } + + /** + * Gets the value of the monthOfFormCompletion property. + * + * @return + * possible object is + * {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion getMonthOfFormCompletion() { + return monthOfFormCompletion; + } + + /** + * Sets the value of the monthOfFormCompletion property. + * + * @param value + * allowed object is + * {@link MonthOfFormCompletion } + * + */ + public void setMonthOfFormCompletion(MonthOfFormCompletion value) { + this.monthOfFormCompletion = value; + } + + /** + * Gets the value of the yearOfFormCompletion property. + * + * @return + * possible object is + * {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion getYearOfFormCompletion() { + return yearOfFormCompletion; + } + + /** + * Sets the value of the yearOfFormCompletion property. + * + * @param value + * allowed object is + * {@link YearOfFormCompletion } + * + */ + public void setYearOfFormCompletion(YearOfFormCompletion value) { + this.yearOfFormCompletion = value; + } + + /** + * Gets the value of the daysToFormCompletion property. + * + * @return + * possible object is + * {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion getDaysToFormCompletion() { + return daysToFormCompletion; + } + + /** + * Sets the value of the daysToFormCompletion property. + * + * @param value + * allowed object is + * {@link DaysToFormCompletion } + * + */ + public void setDaysToFormCompletion(DaysToFormCompletion value) { + this.daysToFormCompletion = value; + } + + /** + * Gets the value of the version property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersion() { + if (version == null) { + return "4.0"; + } else { + 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 sequence property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSequence() { + return sequence; + } + + /** + * Sets the value of the sequence property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSequence(BigInteger value) { + this.sequence = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/ObjectFactory.java new file mode 100644 index 0000000..ecddef7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/ObjectFactory.java @@ -0,0 +1,47 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._4; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._4 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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._4 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link FollowUp } + * + */ + public FollowUp createFollowUp() { + return new FollowUp(); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/package-info.java new file mode 100644 index 0000000..d8d54da --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/followup/_2_7/_4/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/brca/followup/2.7/4.0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.followup._2_7._4; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaEstrogenReceptorStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaEstrogenReceptorStatus.java new file mode 100644 index 0000000..c82935d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaEstrogenReceptorStatus.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegStat">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2957359" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class BreastCarcinomaEstrogenReceptorStatus { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2957359"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaImmunohistochemistryPosCellScore.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaImmunohistochemistryPosCellScore.java new file mode 100644 index 0000000..4050c55 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaImmunohistochemistryPosCellScore.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>onePlusToFourPlus">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3133874" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class BreastCarcinomaImmunohistochemistryPosCellScore { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3133874"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaProgesteroneReceptorStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaProgesteroneReceptorStatus.java new file mode 100644 index 0000000..6a705c1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/BreastCarcinomaProgesteroneReceptorStatus.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegStat">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2957357" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class BreastCarcinomaProgesteroneReceptorStatus { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2957357"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ErDetectionMethodText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ErDetectionMethodText.java new file mode 100644 index 0000000..60ec478 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ErDetectionMethodText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="69" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ErDetectionMethodText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "69"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ErLevelCellPercentageCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ErLevelCellPercentageCategory.java new file mode 100644 index 0000000..8e14df2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ErLevelCellPercentageCategory.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>percentByTens">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3128341" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ErLevelCellPercentageCategory { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3128341"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange.java new file mode 100644 index 0000000..83ba233 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104295" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3104295"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2AndCentromere17PositiveFindingOtherMeasurementScaleText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2AndCentromere17PositiveFindingOtherMeasurementScaleText.java new file mode 100644 index 0000000..a9b0558 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2AndCentromere17PositiveFindingOtherMeasurementScaleText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3087923" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2AndCentromere17PositiveFindingOtherMeasurementScaleText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3087923"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbMethodCalculationMethodText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbMethodCalculationMethodText.java new file mode 100644 index 0000000..c1ae205 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbMethodCalculationMethodText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3087487" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2ErbbMethodCalculationMethodText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3087487"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbPosFindingCellPercentCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbPosFindingCellPercentCategory.java new file mode 100644 index 0000000..6d0a0cb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbPosFindingCellPercentCategory.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>percentByTens">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3086980" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2ErbbPosFindingCellPercentCategory { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3086980"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText.java new file mode 100644 index 0000000..8d4be5c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3087929" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3087929"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ImmunohistochemistryLevelResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ImmunohistochemistryLevelResult.java new file mode 100644 index 0000000..49793e3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2ImmunohistochemistryLevelResult.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>onePlusToFourPlus">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2178402" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2ImmunohistochemistryLevelResult { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2178402"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount.java new file mode 100644 index 0000000..f295463 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3087902" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3087902"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount.java new file mode 100644 index 0000000..7d8054c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132899" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132899"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber.java new file mode 100644 index 0000000..4de2b24 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3133738" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3133738"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuChromosone17SignalRatioValue.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuChromosone17SignalRatioValue.java new file mode 100644 index 0000000..16e975a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuChromosone17SignalRatioValue.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2497552" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2NeuChromosone17SignalRatioValue { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2497552"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber.java new file mode 100644 index 0000000..afe4a0d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3133734" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3133734"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ImmunohistochemistryPositiveCellScore.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ImmunohistochemistryPositiveCellScore.java new file mode 100644 index 0000000..f27ec0a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ImmunohistochemistryPositiveCellScore.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>onePlusToFourPlus">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2230166" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ImmunohistochemistryPositiveCellScore { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2230166"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/LabProcHer2NeuImmunohistochemistryReceptorStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/LabProcHer2NeuImmunohistochemistryReceptorStatus.java new file mode 100644 index 0000000..692a87d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/LabProcHer2NeuImmunohistochemistryReceptorStatus.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegStat">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2957563" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class LabProcHer2NeuImmunohistochemistryReceptorStatus { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2957563"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/LabProcedureHer2NeuInSituHybridOutcomeType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/LabProcedureHer2NeuInSituHybridOutcomeType.java new file mode 100644 index 0000000..aa3c26f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/LabProcedureHer2NeuInSituHybridOutcomeType.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegStat">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2854089" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class LabProcedureHer2NeuInSituHybridOutcomeType { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2854089"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult.java new file mode 100644 index 0000000..760f673 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>onePlusToFourPlus">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132444" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132444"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText.java new file mode 100644 index 0000000..73e1f78 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131881" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131881"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory.java new file mode 100644 index 0000000..9416502 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>percentByTens">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131869" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131869"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorStatus.java new file mode 100644 index 0000000..fcb2213 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaEstrogenReceptorStatus.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegStat">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131865" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaEstrogenReceptorStatus { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131865"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange.java new file mode 100644 index 0000000..51aa342 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132887" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132887"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText.java new file mode 100644 index 0000000..1efb039 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132452" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132452"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory.java new file mode 100644 index 0000000..edf1935 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>percentByTens">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132322" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132322"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText.java new file mode 100644 index 0000000..cda5e21 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132910" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132910"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue.java new file mode 100644 index 0000000..946efa5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132903" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132903"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore.java new file mode 100644 index 0000000..2d3c161 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>onePlusToFourPlus">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131873" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131873"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType.java new file mode 100644 index 0000000..500163b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3203082" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore.java new file mode 100644 index 0000000..fd21c6a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>onePlusToFourPlus">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131988" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131988"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType.java new file mode 100644 index 0000000..2cf39c7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3203085" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus.java new file mode 100644 index 0000000..34d9ef0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegStat">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131997" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131997"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType.java new file mode 100644 index 0000000..56d8a45 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegStat">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132455" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132455"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText.java new file mode 100644 index 0000000..9b6ea51 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132448" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132448"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText.java new file mode 100644 index 0000000..28ad0a9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3132907" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3132907"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText.java new file mode 100644 index 0000000..bbd55fa --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131992" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131992"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText.java new file mode 100644 index 0000000..421b48a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131993" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131993"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory.java new file mode 100644 index 0000000..cb56c72 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>percentByTens">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131891" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131891"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorStatus.java new file mode 100644 index 0000000..5160af6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/MetastaticBreastCarcinomaProgesteroneReceptorStatus.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>posNegStat">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131884" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticBreastCarcinomaProgesteroneReceptorStatus { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131884"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ObjectFactory.java new file mode 100644 index 0000000..b88e13c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ObjectFactory.java @@ -0,0 +1,870 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2 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 _MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_immunohistochemistry_er_positive_finding_scale_type"); + private final static QName _PosFindingHer2Erbb2OtherMeasurementScaleText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "pos_finding_her2_erbb2_other_measurement_scale_text"); + private final static QName _MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_progesterone_receptor_detection_method_text"); + private final static QName _MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_estrogen_receptor_detection_method_text"); + private final static QName _Her2AndCentromere17PositiveFindingOtherMeasurementScaleText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_and_centromere_17_positive_finding_other_measurement_scale_text"); + private final static QName _Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_neu_breast_carcinoma_copy_analysis_input_total_number"); + private final static QName _Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count"); + private final static QName _MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value"); + private final static QName _ImmunohistochemistryPositiveCellScore_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "immunohistochemistry_positive_cell_score"); + private final static QName _MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status"); + private final static QName _Her2ErbbMethodCalculationMethodText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_erbb_method_calculation_method_text"); + private final static QName _MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text"); + private final static QName _MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range"); + private final static QName _FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "fluorescence_in_situ_hybridization_diagnostic_procedure_chromosome_17_signal_result_range"); + private final static QName _Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text"); + private final static QName _Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_neu_and_centromere_17_copy_number_analysis_input_total_number_count"); + private final static QName _MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result"); + private final static QName _BreastCarcinomaEstrogenReceptorStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "breast_carcinoma_estrogen_receptor_status"); + private final static QName _MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text"); + private final static QName _MetastaticBreastCarcinomaEstrogenReceptorStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_estrogen_receptor_status"); + private final static QName _PositiveFindingEstrogenReceptorOtherMeasurementScaleText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "positive_finding_estrogen_receptor_other_measurement_scale_text"); + private final static QName _PosFindingProgesteroneReceptorOtherMeasurementScaleText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "pos_finding_progesterone_receptor_other_measurement_scale_text"); + private final static QName _Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number"); + private final static QName _MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text"); + private final static QName _BreastCarcinomaProgesteroneReceptorStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "breast_carcinoma_progesterone_receptor_status"); + private final static QName _MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category"); + private final static QName _MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type"); + private final static QName _MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category"); + private final static QName _MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score"); + private final static QName _MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text"); + private final static QName _MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category"); + private final static QName _BreastCarcinomaImmunohistochemistryPosCellScore_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "breast_carcinoma_immunohistochemistry_pos_cell_score"); + private final static QName _PgrDetectionMethodText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "pgr_detection_method_text"); + private final static QName _MetastaticBreastCarcinomaProgesteroneReceptorStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_progesterone_receptor_status"); + private final static QName _ProgesteroneReceptorLevelCellPercentCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "progesterone_receptor_level_cell_percent_category"); + private final static QName _ErDetectionMethodText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "er_detection_method_text"); + private final static QName _Her2ImmunohistochemistryLevelResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_immunohistochemistry_level_result"); + private final static QName _MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text"); + private final static QName _Her2NeuChromosone17SignalRatioValue_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_neu_chromosone_17_signal_ratio_value"); + private final static QName _ErLevelCellPercentageCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "er_level_cell_percentage_category"); + private final static QName _LabProcedureHer2NeuInSituHybridOutcomeType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "lab_procedure_her2_neu_in_situ_hybrid_outcome_type"); + private final static QName _PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text"); + private final static QName _Her2ErbbPosFindingCellPercentCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "her2_erbb_pos_finding_cell_percent_category"); + private final static QName _MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score"); + private final static QName _LabProcHer2NeuImmunohistochemistryReceptorStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "lab_proc_her2_neu_immunohistochemistry_receptor_status"); + private final static QName _MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", "metastatic_breast_carcinoma_immunohistochemistry_progesterone_receptor_positive_finding_scale_type"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link ErDetectionMethodText } + * + */ + public ErDetectionMethodText createErDetectionMethodText() { + return new ErDetectionMethodText(); + } + + /** + * Create an instance of {@link PgrDetectionMethodText } + * + */ + public PgrDetectionMethodText createPgrDetectionMethodText() { + return new PgrDetectionMethodText(); + } + + /** + * Create an instance of {@link Her2NeuChromosone17SignalRatioValue } + * + */ + public Her2NeuChromosone17SignalRatioValue createHer2NeuChromosone17SignalRatioValue() { + return new Her2NeuChromosone17SignalRatioValue(); + } + + /** + * Create an instance of {@link BreastCarcinomaProgesteroneReceptorStatus } + * + */ + public BreastCarcinomaProgesteroneReceptorStatus createBreastCarcinomaProgesteroneReceptorStatus() { + return new BreastCarcinomaProgesteroneReceptorStatus(); + } + + /** + * Create an instance of {@link ImmunohistochemistryPositiveCellScore } + * + */ + public ImmunohistochemistryPositiveCellScore createImmunohistochemistryPositiveCellScore() { + return new ImmunohistochemistryPositiveCellScore(); + } + + /** + * Create an instance of {@link Her2ImmunohistochemistryLevelResult } + * + */ + public Her2ImmunohistochemistryLevelResult createHer2ImmunohistochemistryLevelResult() { + return new Her2ImmunohistochemistryLevelResult(); + } + + /** + * Create an instance of {@link LabProcedureHer2NeuInSituHybridOutcomeType } + * + */ + public LabProcedureHer2NeuInSituHybridOutcomeType createLabProcedureHer2NeuInSituHybridOutcomeType() { + return new LabProcedureHer2NeuInSituHybridOutcomeType(); + } + + /** + * Create an instance of {@link BreastCarcinomaEstrogenReceptorStatus } + * + */ + public BreastCarcinomaEstrogenReceptorStatus createBreastCarcinomaEstrogenReceptorStatus() { + return new BreastCarcinomaEstrogenReceptorStatus(); + } + + /** + * Create an instance of {@link LabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public LabProcHer2NeuImmunohistochemistryReceptorStatus createLabProcHer2NeuImmunohistochemistryReceptorStatus() { + return new LabProcHer2NeuImmunohistochemistryReceptorStatus(); + } + + /** + * Create an instance of {@link PosFindingProgesteroneReceptorOtherMeasurementScaleText } + * + */ + public PosFindingProgesteroneReceptorOtherMeasurementScaleText createPosFindingProgesteroneReceptorOtherMeasurementScaleText() { + return new PosFindingProgesteroneReceptorOtherMeasurementScaleText(); + } + + /** + * Create an instance of {@link PositiveFindingEstrogenReceptorOtherMeasurementScaleText } + * + */ + public PositiveFindingEstrogenReceptorOtherMeasurementScaleText createPositiveFindingEstrogenReceptorOtherMeasurementScaleText() { + return new PositiveFindingEstrogenReceptorOtherMeasurementScaleText(); + } + + /** + * Create an instance of {@link Her2ErbbPosFindingCellPercentCategory } + * + */ + public Her2ErbbPosFindingCellPercentCategory createHer2ErbbPosFindingCellPercentCategory() { + return new Her2ErbbPosFindingCellPercentCategory(); + } + + /** + * Create an instance of {@link PosFindingHer2Erbb2OtherMeasurementScaleText } + * + */ + public PosFindingHer2Erbb2OtherMeasurementScaleText createPosFindingHer2Erbb2OtherMeasurementScaleText() { + return new PosFindingHer2Erbb2OtherMeasurementScaleText(); + } + + /** + * Create an instance of {@link Her2ErbbMethodCalculationMethodText } + * + */ + public Her2ErbbMethodCalculationMethodText createHer2ErbbMethodCalculationMethodText() { + return new Her2ErbbMethodCalculationMethodText(); + } + + /** + * Create an instance of {@link Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount } + * + */ + public Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount createHer2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount() { + return new Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount(); + } + + /** + * Create an instance of {@link Her2AndCentromere17PositiveFindingOtherMeasurementScaleText } + * + */ + public Her2AndCentromere17PositiveFindingOtherMeasurementScaleText createHer2AndCentromere17PositiveFindingOtherMeasurementScaleText() { + return new Her2AndCentromere17PositiveFindingOtherMeasurementScaleText(); + } + + /** + * Create an instance of {@link Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText createHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText() { + return new Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(); + } + + /** + * Create an instance of {@link FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange } + * + */ + public FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange createFluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange() { + return new FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange(); + } + + /** + * Create an instance of {@link ErLevelCellPercentageCategory } + * + */ + public ErLevelCellPercentageCategory createErLevelCellPercentageCategory() { + return new ErLevelCellPercentageCategory(); + } + + /** + * Create an instance of {@link ProgesteroneReceptorLevelCellPercentCategory } + * + */ + public ProgesteroneReceptorLevelCellPercentCategory createProgesteroneReceptorLevelCellPercentCategory() { + return new ProgesteroneReceptorLevelCellPercentCategory(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorStatus createMetastaticBreastCarcinomaEstrogenReceptorStatus() { + return new MetastaticBreastCarcinomaEstrogenReceptorStatus(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory createMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory() { + return new MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore createMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore() { + return new MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore(); + } + + /** + * Create an instance of {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText createPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText() { + return new PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText createMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText() { + return new MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorStatus createMetastaticBreastCarcinomaProgesteroneReceptorStatus() { + return new MetastaticBreastCarcinomaProgesteroneReceptorStatus(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus createMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus() { + return new MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory createMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory() { + return new MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore createMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore() { + return new MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText createMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText() { + return new MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText createMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText() { + return new MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory createMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory() { + return new MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult createMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult() { + return new MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText createMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText() { + return new MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText createMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText() { + return new MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType createMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType() { + return new MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange createMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange() { + return new MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange(); + } + + /** + * Create an instance of {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount createHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount() { + return new Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue createMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue() { + return new MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText createMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText() { + return new MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText createMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText() { + return new MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(); + } + + /** + * Create an instance of {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber createHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber() { + return new Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber(); + } + + /** + * Create an instance of {@link Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber createHer2NeuBreastCarcinomaCopyAnalysisInputTotalNumber() { + return new Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber(); + } + + /** + * Create an instance of {@link BreastCarcinomaImmunohistochemistryPosCellScore } + * + */ + public BreastCarcinomaImmunohistochemistryPosCellScore createBreastCarcinomaImmunohistochemistryPosCellScore() { + return new BreastCarcinomaImmunohistochemistryPosCellScore(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType createMetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType() { + return new MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType(); + } + + /** + * Create an instance of {@link MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType createMetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType() { + return new MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_immunohistochemistry_er_positive_finding_scale_type") + public JAXBElement createMetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType(MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType value) { + return new JAXBElement(_MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType_QNAME, MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PosFindingHer2Erbb2OtherMeasurementScaleText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "pos_finding_her2_erbb2_other_measurement_scale_text") + public JAXBElement createPosFindingHer2Erbb2OtherMeasurementScaleText(PosFindingHer2Erbb2OtherMeasurementScaleText value) { + return new JAXBElement(_PosFindingHer2Erbb2OtherMeasurementScaleText_QNAME, PosFindingHer2Erbb2OtherMeasurementScaleText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_progesterone_receptor_detection_method_text") + public JAXBElement createMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText(MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText value) { + return new JAXBElement(_MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText_QNAME, MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_estrogen_receptor_detection_method_text") + public JAXBElement createMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText(MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText value) { + return new JAXBElement(_MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText_QNAME, MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2AndCentromere17PositiveFindingOtherMeasurementScaleText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_and_centromere_17_positive_finding_other_measurement_scale_text") + public JAXBElement createHer2AndCentromere17PositiveFindingOtherMeasurementScaleText(Her2AndCentromere17PositiveFindingOtherMeasurementScaleText value) { + return new JAXBElement(_Her2AndCentromere17PositiveFindingOtherMeasurementScaleText_QNAME, Her2AndCentromere17PositiveFindingOtherMeasurementScaleText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_neu_breast_carcinoma_copy_analysis_input_total_number") + public JAXBElement createHer2NeuBreastCarcinomaCopyAnalysisInputTotalNumber(Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber value) { + return new JAXBElement(_Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber_QNAME, Her2NeuBreastCarcinomaCopyAnalysisInputTotalNumber.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count") + public JAXBElement createHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount(Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount value) { + return new JAXBElement(_Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount_QNAME, Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value") + public JAXBElement createMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue(MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue value) { + return new JAXBElement(_MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue_QNAME, MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ImmunohistochemistryPositiveCellScore }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "immunohistochemistry_positive_cell_score") + public JAXBElement createImmunohistochemistryPositiveCellScore(ImmunohistochemistryPositiveCellScore value) { + return new JAXBElement(_ImmunohistochemistryPositiveCellScore_QNAME, ImmunohistochemistryPositiveCellScore.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status") + public JAXBElement createMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus(MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus value) { + return new JAXBElement(_MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus_QNAME, MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2ErbbMethodCalculationMethodText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_erbb_method_calculation_method_text") + public JAXBElement createHer2ErbbMethodCalculationMethodText(Her2ErbbMethodCalculationMethodText value) { + return new JAXBElement(_Her2ErbbMethodCalculationMethodText_QNAME, Her2ErbbMethodCalculationMethodText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text") + public JAXBElement createMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText value) { + return new JAXBElement(_MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText_QNAME, MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range") + public JAXBElement createMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange(MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange value) { + return new JAXBElement(_MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange_QNAME, MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "fluorescence_in_situ_hybridization_diagnostic_procedure_chromosome_17_signal_result_range") + public JAXBElement createFluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange(FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange value) { + return new JAXBElement(_FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange_QNAME, FluorescenceInSituHybridizationDiagnosticProcedureChromosome17SignalResultRange.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text") + public JAXBElement createHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText value) { + return new JAXBElement(_Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText_QNAME, Her2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_neu_and_centromere_17_copy_number_analysis_input_total_number_count") + public JAXBElement createHer2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount(Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount value) { + return new JAXBElement(_Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount_QNAME, Her2NeuAndCentromere17CopyNumberAnalysisInputTotalNumberCount.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result") + public JAXBElement createMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult(MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult value) { + return new JAXBElement(_MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult_QNAME, MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastCarcinomaEstrogenReceptorStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "breast_carcinoma_estrogen_receptor_status") + public JAXBElement createBreastCarcinomaEstrogenReceptorStatus(BreastCarcinomaEstrogenReceptorStatus value) { + return new JAXBElement(_BreastCarcinomaEstrogenReceptorStatus_QNAME, BreastCarcinomaEstrogenReceptorStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text") + public JAXBElement createMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText value) { + return new JAXBElement(_MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText_QNAME, MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaEstrogenReceptorStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_estrogen_receptor_status") + public JAXBElement createMetastaticBreastCarcinomaEstrogenReceptorStatus(MetastaticBreastCarcinomaEstrogenReceptorStatus value) { + return new JAXBElement(_MetastaticBreastCarcinomaEstrogenReceptorStatus_QNAME, MetastaticBreastCarcinomaEstrogenReceptorStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PositiveFindingEstrogenReceptorOtherMeasurementScaleText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "positive_finding_estrogen_receptor_other_measurement_scale_text") + public JAXBElement createPositiveFindingEstrogenReceptorOtherMeasurementScaleText(PositiveFindingEstrogenReceptorOtherMeasurementScaleText value) { + return new JAXBElement(_PositiveFindingEstrogenReceptorOtherMeasurementScaleText_QNAME, PositiveFindingEstrogenReceptorOtherMeasurementScaleText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PosFindingProgesteroneReceptorOtherMeasurementScaleText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "pos_finding_progesterone_receptor_other_measurement_scale_text") + public JAXBElement createPosFindingProgesteroneReceptorOtherMeasurementScaleText(PosFindingProgesteroneReceptorOtherMeasurementScaleText value) { + return new JAXBElement(_PosFindingProgesteroneReceptorOtherMeasurementScaleText_QNAME, PosFindingProgesteroneReceptorOtherMeasurementScaleText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number") + public JAXBElement createHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber(Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber value) { + return new JAXBElement(_Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber_QNAME, Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text") + public JAXBElement createMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText value) { + return new JAXBElement(_MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText_QNAME, MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastCarcinomaProgesteroneReceptorStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "breast_carcinoma_progesterone_receptor_status") + public JAXBElement createBreastCarcinomaProgesteroneReceptorStatus(BreastCarcinomaProgesteroneReceptorStatus value) { + return new JAXBElement(_BreastCarcinomaProgesteroneReceptorStatus_QNAME, BreastCarcinomaProgesteroneReceptorStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category") + public JAXBElement createMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory(MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory value) { + return new JAXBElement(_MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory_QNAME, MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type") + public JAXBElement createMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType(MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType value) { + return new JAXBElement(_MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType_QNAME, MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category") + public JAXBElement createMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory value) { + return new JAXBElement(_MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory_QNAME, MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score") + public JAXBElement createMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore value) { + return new JAXBElement(_MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore_QNAME, MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text") + public JAXBElement createMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText(MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText value) { + return new JAXBElement(_MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText_QNAME, MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category") + public JAXBElement createMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory value) { + return new JAXBElement(_MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory_QNAME, MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BreastCarcinomaImmunohistochemistryPosCellScore }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "breast_carcinoma_immunohistochemistry_pos_cell_score") + public JAXBElement createBreastCarcinomaImmunohistochemistryPosCellScore(BreastCarcinomaImmunohistochemistryPosCellScore value) { + return new JAXBElement(_BreastCarcinomaImmunohistochemistryPosCellScore_QNAME, BreastCarcinomaImmunohistochemistryPosCellScore.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PgrDetectionMethodText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "pgr_detection_method_text") + public JAXBElement createPgrDetectionMethodText(PgrDetectionMethodText value) { + return new JAXBElement(_PgrDetectionMethodText_QNAME, PgrDetectionMethodText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaProgesteroneReceptorStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_progesterone_receptor_status") + public JAXBElement createMetastaticBreastCarcinomaProgesteroneReceptorStatus(MetastaticBreastCarcinomaProgesteroneReceptorStatus value) { + return new JAXBElement(_MetastaticBreastCarcinomaProgesteroneReceptorStatus_QNAME, MetastaticBreastCarcinomaProgesteroneReceptorStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ProgesteroneReceptorLevelCellPercentCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "progesterone_receptor_level_cell_percent_category") + public JAXBElement createProgesteroneReceptorLevelCellPercentCategory(ProgesteroneReceptorLevelCellPercentCategory value) { + return new JAXBElement(_ProgesteroneReceptorLevelCellPercentCategory_QNAME, ProgesteroneReceptorLevelCellPercentCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ErDetectionMethodText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "er_detection_method_text") + public JAXBElement createErDetectionMethodText(ErDetectionMethodText value) { + return new JAXBElement(_ErDetectionMethodText_QNAME, ErDetectionMethodText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2ImmunohistochemistryLevelResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_immunohistochemistry_level_result") + public JAXBElement createHer2ImmunohistochemistryLevelResult(Her2ImmunohistochemistryLevelResult value) { + return new JAXBElement(_Her2ImmunohistochemistryLevelResult_QNAME, Her2ImmunohistochemistryLevelResult.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text") + public JAXBElement createMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText value) { + return new JAXBElement(_MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText_QNAME, MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2NeuChromosone17SignalRatioValue }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_neu_chromosone_17_signal_ratio_value") + public JAXBElement createHer2NeuChromosone17SignalRatioValue(Her2NeuChromosone17SignalRatioValue value) { + return new JAXBElement(_Her2NeuChromosone17SignalRatioValue_QNAME, Her2NeuChromosone17SignalRatioValue.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ErLevelCellPercentageCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "er_level_cell_percentage_category") + public JAXBElement createErLevelCellPercentageCategory(ErLevelCellPercentageCategory value) { + return new JAXBElement(_ErLevelCellPercentageCategory_QNAME, ErLevelCellPercentageCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LabProcedureHer2NeuInSituHybridOutcomeType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "lab_procedure_her2_neu_in_situ_hybrid_outcome_type") + public JAXBElement createLabProcedureHer2NeuInSituHybridOutcomeType(LabProcedureHer2NeuInSituHybridOutcomeType value) { + return new JAXBElement(_LabProcedureHer2NeuInSituHybridOutcomeType_QNAME, LabProcedureHer2NeuInSituHybridOutcomeType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text") + public JAXBElement createPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText(PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText value) { + return new JAXBElement(_PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText_QNAME, PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Her2ErbbPosFindingCellPercentCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "her2_erbb_pos_finding_cell_percent_category") + public JAXBElement createHer2ErbbPosFindingCellPercentCategory(Her2ErbbPosFindingCellPercentCategory value) { + return new JAXBElement(_Her2ErbbPosFindingCellPercentCategory_QNAME, Her2ErbbPosFindingCellPercentCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score") + public JAXBElement createMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore value) { + return new JAXBElement(_MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore_QNAME, MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LabProcHer2NeuImmunohistochemistryReceptorStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "lab_proc_her2_neu_immunohistochemistry_receptor_status") + public JAXBElement createLabProcHer2NeuImmunohistochemistryReceptorStatus(LabProcHer2NeuImmunohistochemistryReceptorStatus value) { + return new JAXBElement(_LabProcHer2NeuImmunohistochemistryReceptorStatus_QNAME, LabProcHer2NeuImmunohistochemistryReceptorStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", name = "metastatic_breast_carcinoma_immunohistochemistry_progesterone_receptor_positive_finding_scale_type") + public JAXBElement createMetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType(MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType value) { + return new JAXBElement(_MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType_QNAME, MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PgrDetectionMethodText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PgrDetectionMethodText.java new file mode 100644 index 0000000..0613158 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PgrDetectionMethodText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="785" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PgrDetectionMethodText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "785"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingHer2Erbb2OtherMeasurementScaleText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingHer2Erbb2OtherMeasurementScaleText.java new file mode 100644 index 0000000..cb67c6c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingHer2Erbb2OtherMeasurementScaleText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3087479" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PosFindingHer2Erbb2OtherMeasurementScaleText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3087479"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText.java new file mode 100644 index 0000000..c167945 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131877" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3131877"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingProgesteroneReceptorOtherMeasurementScaleText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingProgesteroneReceptorOtherMeasurementScaleText.java new file mode 100644 index 0000000..1b6fc40 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PosFindingProgesteroneReceptorOtherMeasurementScaleText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3086857" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PosFindingProgesteroneReceptorOtherMeasurementScaleText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3086857"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PositiveFindingEstrogenReceptorOtherMeasurementScaleText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PositiveFindingEstrogenReceptorOtherMeasurementScaleText.java new file mode 100644 index 0000000..bb92510 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/PositiveFindingEstrogenReceptorOtherMeasurementScaleText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3086851" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PositiveFindingEstrogenReceptorOtherMeasurementScaleText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3086851"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ProgesteroneReceptorLevelCellPercentCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ProgesteroneReceptorLevelCellPercentCategory.java new file mode 100644 index 0000000..846ccf7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/_2/ProgesteroneReceptorLevelCellPercentCategory.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/clinical/brca/shared/2.7>percentByTens">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3128342" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ProgesteroneReceptorLevelCellPercentCategory { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3128342"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/NewTumorEvent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/NewTumorEvent.java new file mode 100644 index 0000000..47f2c2b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/NewTumorEvent.java @@ -0,0 +1,1153 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared.new_tumor_event._2_7._1; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaEstrogenReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.MetastaticBreastCarcinomaProgesteroneReceptorStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared._2.PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalPharmaceuticalTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalRadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfNewTumorEventAdditionalSurgeryProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventAdditionalSurgeryProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfNewTumorEventAdditionalSurgeryProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmEventOccurrenceAnatomicSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmEventType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmOccurrenceAnatomicSiteText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewTumorEventAdditionalSurgeryProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfNewTumorEventAdditionalSurgeryProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfNewTumorEventAfterInitialTreatment; + + +/** + *

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>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_new_tumor_event_after_initial_treatment"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_new_tumor_event_after_initial_treatment"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_neoplasm_event_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_neoplasm_event_occurrence_anatomic_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_neoplasm_occurrence_anatomic_site_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_tumor_event_additional_surgery_procedure"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_new_tumor_event_additional_surgery_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_new_tumor_event_additional_surgery_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_new_tumor_event_additional_surgery_procedure"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_new_tumor_event_additional_surgery_procedure"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_pharmaceutical_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_er_positive_finding_scale_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_estrogen_receptor_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_progesterone_receptor_positive_finding_scale_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_progesterone_receptor_detection_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/2.7}metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "dayOfNewTumorEventAfterInitialTreatment", + "monthOfNewTumorEventAfterInitialTreatment", + "yearOfNewTumorEventAfterInitialTreatment", + "daysToNewTumorEventAfterInitialTreatment", + "newNeoplasmEventType", + "newNeoplasmEventOccurrenceAnatomicSite", + "newNeoplasmOccurrenceAnatomicSiteText", + "newTumorEventAdditionalSurgeryProcedure", + "dayOfNewTumorEventAdditionalSurgeryProcedure", + "monthOfNewTumorEventAdditionalSurgeryProcedure", + "yearOfNewTumorEventAdditionalSurgeryProcedure", + "daysToNewTumorEventAdditionalSurgeryProcedure", + "additionalRadiationTherapy", + "additionalPharmaceuticalTherapy", + "metastaticBreastCarcinomaEstrogenReceptorStatus", + "metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory", + "metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType", + "metastaticBreastCarcinomaImmunohistochemistryErPosCellScore", + "posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText", + "metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText", + "metastaticBreastCarcinomaProgesteroneReceptorStatus", + "metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory", + "metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType", + "metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore", + "metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText", + "metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText", + "metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus", + "metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory", + "metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult", + "metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText", + "metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText", + "metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType", + "her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber", + "metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange", + "her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount", + "metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue", + "metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText", + "metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText" +}) +@XmlRootElement(name = "new_tumor_event") +public class NewTumorEvent { + + @XmlElement(name = "day_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfNewTumorEventAfterInitialTreatment dayOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "month_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfNewTumorEventAfterInitialTreatment monthOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "year_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfNewTumorEventAfterInitialTreatment yearOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "days_to_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToNewTumorEventAfterInitialTreatment daysToNewTumorEventAfterInitialTreatment; + @XmlElement(name = "new_neoplasm_event_type", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewNeoplasmEventType newNeoplasmEventType; + @XmlElement(name = "new_neoplasm_event_occurrence_anatomic_site", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewNeoplasmEventOccurrenceAnatomicSite newNeoplasmEventOccurrenceAnatomicSite; + @XmlElement(name = "new_neoplasm_occurrence_anatomic_site_text", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewNeoplasmOccurrenceAnatomicSiteText newNeoplasmOccurrenceAnatomicSiteText; + @XmlElement(name = "new_tumor_event_additional_surgery_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewTumorEventAdditionalSurgeryProcedure newTumorEventAdditionalSurgeryProcedure; + @XmlElement(name = "day_of_new_tumor_event_additional_surgery_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfNewTumorEventAdditionalSurgeryProcedure dayOfNewTumorEventAdditionalSurgeryProcedure; + @XmlElement(name = "month_of_new_tumor_event_additional_surgery_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfNewTumorEventAdditionalSurgeryProcedure monthOfNewTumorEventAdditionalSurgeryProcedure; + @XmlElement(name = "year_of_new_tumor_event_additional_surgery_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfNewTumorEventAdditionalSurgeryProcedure yearOfNewTumorEventAdditionalSurgeryProcedure; + @XmlElement(name = "days_to_new_tumor_event_additional_surgery_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToNewTumorEventAdditionalSurgeryProcedure daysToNewTumorEventAdditionalSurgeryProcedure; + @XmlElement(name = "additional_radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalRadiationTherapy additionalRadiationTherapy; + @XmlElement(name = "additional_pharmaceutical_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalPharmaceuticalTherapy additionalPharmaceuticalTherapy; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorStatus metastaticBreastCarcinomaEstrogenReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_er_positive_finding_scale_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_er_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore metastaticBreastCarcinomaImmunohistochemistryErPosCellScore; + @XmlElement(name = "pos_finding_metastatic_breast_carcinoma_estrogen_receptor_other_measuremenet_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_estrogen_receptor_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorStatus metastaticBreastCarcinomaProgesteroneReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_level_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_progesterone_receptor_positive_finding_scale_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType; + @XmlElement(name = "metastatic_breast_carcinoma_immunohistochemistry_pr_pos_cell_score", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_progesterone_receptor_other_measure_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_progesterone_receptor_detection_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_lab_proc_her2_neu_immunohistochemistry_receptor_status", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_cell_percent_category", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; + @XmlElement(name = "metastatic_breast_carcinoma_erbb2_immunohistochemistry_level_result", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_her2_erbb2_other_measure_scale_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_method_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; + @XmlElement(name = "metastatic_breast_carcinoma_lab_proc_her2_neu_in_situ_hybridization_outcome_type", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; + @XmlElement(name = "her2_neu_metastatic_breast_carcinoma_copy_analysis_input_total_number", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; + @XmlElement(name = "metastatic_breast_carcinoma_fluorescence_in_situ_hybridization_diagnostic_proc_centromere_17_signal_result_range", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; + @XmlElement(name = "her2_neu_and_centromere_17_copy_number_metastatic_breast_carcinoma_analysis_input_total_number_count", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; + @XmlElement(name = "metastatic_breast_carcinoma_her2_neu_chromosone_17_signal_ratio_value", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; + @XmlElement(name = "metastatic_breast_carcinoma_pos_finding_other_scale_measurement_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; + @XmlElement(name = "metastatic_breast_carcinoma_her2_erbb_pos_finding_fluorescence_in_situ_hybridization_calculation_method_text", namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/2.7", required = true, nillable = true) + protected MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + + /** + * Gets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public DayOfNewTumorEventAfterInitialTreatment getDayOfNewTumorEventAfterInitialTreatment() { + return dayOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public void setDayOfNewTumorEventAfterInitialTreatment(DayOfNewTumorEventAfterInitialTreatment value) { + this.dayOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public MonthOfNewTumorEventAfterInitialTreatment getMonthOfNewTumorEventAfterInitialTreatment() { + return monthOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public void setMonthOfNewTumorEventAfterInitialTreatment(MonthOfNewTumorEventAfterInitialTreatment value) { + this.monthOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public YearOfNewTumorEventAfterInitialTreatment getYearOfNewTumorEventAfterInitialTreatment() { + return yearOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public void setYearOfNewTumorEventAfterInitialTreatment(YearOfNewTumorEventAfterInitialTreatment value) { + this.yearOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public DaysToNewTumorEventAfterInitialTreatment getDaysToNewTumorEventAfterInitialTreatment() { + return daysToNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public void setDaysToNewTumorEventAfterInitialTreatment(DaysToNewTumorEventAfterInitialTreatment value) { + this.daysToNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the newNeoplasmEventType property. + * + * @return + * possible object is + * {@link NewNeoplasmEventType } + * + */ + public NewNeoplasmEventType getNewNeoplasmEventType() { + return newNeoplasmEventType; + } + + /** + * Sets the value of the newNeoplasmEventType property. + * + * @param value + * allowed object is + * {@link NewNeoplasmEventType } + * + */ + public void setNewNeoplasmEventType(NewNeoplasmEventType value) { + this.newNeoplasmEventType = value; + } + + /** + * Gets the value of the newNeoplasmEventOccurrenceAnatomicSite property. + * + * @return + * possible object is + * {@link NewNeoplasmEventOccurrenceAnatomicSite } + * + */ + public NewNeoplasmEventOccurrenceAnatomicSite getNewNeoplasmEventOccurrenceAnatomicSite() { + return newNeoplasmEventOccurrenceAnatomicSite; + } + + /** + * Sets the value of the newNeoplasmEventOccurrenceAnatomicSite property. + * + * @param value + * allowed object is + * {@link NewNeoplasmEventOccurrenceAnatomicSite } + * + */ + public void setNewNeoplasmEventOccurrenceAnatomicSite(NewNeoplasmEventOccurrenceAnatomicSite value) { + this.newNeoplasmEventOccurrenceAnatomicSite = value; + } + + /** + * Gets the value of the newNeoplasmOccurrenceAnatomicSiteText property. + * + * @return + * possible object is + * {@link NewNeoplasmOccurrenceAnatomicSiteText } + * + */ + public NewNeoplasmOccurrenceAnatomicSiteText getNewNeoplasmOccurrenceAnatomicSiteText() { + return newNeoplasmOccurrenceAnatomicSiteText; + } + + /** + * Sets the value of the newNeoplasmOccurrenceAnatomicSiteText property. + * + * @param value + * allowed object is + * {@link NewNeoplasmOccurrenceAnatomicSiteText } + * + */ + public void setNewNeoplasmOccurrenceAnatomicSiteText(NewNeoplasmOccurrenceAnatomicSiteText value) { + this.newNeoplasmOccurrenceAnatomicSiteText = value; + } + + /** + * Gets the value of the newTumorEventAdditionalSurgeryProcedure property. + * + * @return + * possible object is + * {@link NewTumorEventAdditionalSurgeryProcedure } + * + */ + public NewTumorEventAdditionalSurgeryProcedure getNewTumorEventAdditionalSurgeryProcedure() { + return newTumorEventAdditionalSurgeryProcedure; + } + + /** + * Sets the value of the newTumorEventAdditionalSurgeryProcedure property. + * + * @param value + * allowed object is + * {@link NewTumorEventAdditionalSurgeryProcedure } + * + */ + public void setNewTumorEventAdditionalSurgeryProcedure(NewTumorEventAdditionalSurgeryProcedure value) { + this.newTumorEventAdditionalSurgeryProcedure = value; + } + + /** + * Gets the value of the dayOfNewTumorEventAdditionalSurgeryProcedure property. + * + * @return + * possible object is + * {@link DayOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public DayOfNewTumorEventAdditionalSurgeryProcedure getDayOfNewTumorEventAdditionalSurgeryProcedure() { + return dayOfNewTumorEventAdditionalSurgeryProcedure; + } + + /** + * Sets the value of the dayOfNewTumorEventAdditionalSurgeryProcedure property. + * + * @param value + * allowed object is + * {@link DayOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public void setDayOfNewTumorEventAdditionalSurgeryProcedure(DayOfNewTumorEventAdditionalSurgeryProcedure value) { + this.dayOfNewTumorEventAdditionalSurgeryProcedure = value; + } + + /** + * Gets the value of the monthOfNewTumorEventAdditionalSurgeryProcedure property. + * + * @return + * possible object is + * {@link MonthOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public MonthOfNewTumorEventAdditionalSurgeryProcedure getMonthOfNewTumorEventAdditionalSurgeryProcedure() { + return monthOfNewTumorEventAdditionalSurgeryProcedure; + } + + /** + * Sets the value of the monthOfNewTumorEventAdditionalSurgeryProcedure property. + * + * @param value + * allowed object is + * {@link MonthOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public void setMonthOfNewTumorEventAdditionalSurgeryProcedure(MonthOfNewTumorEventAdditionalSurgeryProcedure value) { + this.monthOfNewTumorEventAdditionalSurgeryProcedure = value; + } + + /** + * Gets the value of the yearOfNewTumorEventAdditionalSurgeryProcedure property. + * + * @return + * possible object is + * {@link YearOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public YearOfNewTumorEventAdditionalSurgeryProcedure getYearOfNewTumorEventAdditionalSurgeryProcedure() { + return yearOfNewTumorEventAdditionalSurgeryProcedure; + } + + /** + * Sets the value of the yearOfNewTumorEventAdditionalSurgeryProcedure property. + * + * @param value + * allowed object is + * {@link YearOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public void setYearOfNewTumorEventAdditionalSurgeryProcedure(YearOfNewTumorEventAdditionalSurgeryProcedure value) { + this.yearOfNewTumorEventAdditionalSurgeryProcedure = value; + } + + /** + * Gets the value of the daysToNewTumorEventAdditionalSurgeryProcedure property. + * + * @return + * possible object is + * {@link DaysToNewTumorEventAdditionalSurgeryProcedure } + * + */ + public DaysToNewTumorEventAdditionalSurgeryProcedure getDaysToNewTumorEventAdditionalSurgeryProcedure() { + return daysToNewTumorEventAdditionalSurgeryProcedure; + } + + /** + * Sets the value of the daysToNewTumorEventAdditionalSurgeryProcedure property. + * + * @param value + * allowed object is + * {@link DaysToNewTumorEventAdditionalSurgeryProcedure } + * + */ + public void setDaysToNewTumorEventAdditionalSurgeryProcedure(DaysToNewTumorEventAdditionalSurgeryProcedure value) { + this.daysToNewTumorEventAdditionalSurgeryProcedure = value; + } + + /** + * Gets the value of the additionalRadiationTherapy property. + * + * @return + * possible object is + * {@link AdditionalRadiationTherapy } + * + */ + public AdditionalRadiationTherapy getAdditionalRadiationTherapy() { + return additionalRadiationTherapy; + } + + /** + * Sets the value of the additionalRadiationTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalRadiationTherapy } + * + */ + public void setAdditionalRadiationTherapy(AdditionalRadiationTherapy value) { + this.additionalRadiationTherapy = value; + } + + /** + * Gets the value of the additionalPharmaceuticalTherapy property. + * + * @return + * possible object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public AdditionalPharmaceuticalTherapy getAdditionalPharmaceuticalTherapy() { + return additionalPharmaceuticalTherapy; + } + + /** + * Sets the value of the additionalPharmaceuticalTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public void setAdditionalPharmaceuticalTherapy(AdditionalPharmaceuticalTherapy value) { + this.additionalPharmaceuticalTherapy = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorStatus getMetastaticBreastCarcinomaEstrogenReceptorStatus() { + return metastaticBreastCarcinomaEstrogenReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorStatus(MetastaticBreastCarcinomaEstrogenReceptorStatus value) { + this.metastaticBreastCarcinomaEstrogenReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory getMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory() { + return metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory value) { + this.metastaticBreastCarcinomaEstrogenReceptorLevelCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType getMetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType() { + return metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType(MetastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType value) { + this.metastaticBreastCarcinomaImmunohistochemistryErPositiveFindingScaleType = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryErPosCellScore property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore getMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore() { + return metastaticBreastCarcinomaImmunohistochemistryErPosCellScore; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryErPosCellScore property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryErPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryErPosCellScore value) { + this.metastaticBreastCarcinomaImmunohistochemistryErPosCellScore = value; + } + + /** + * Gets the value of the posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText property. + * + * @return + * possible object is + * {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText getPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText() { + return posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText; + } + + /** + * Sets the value of the posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText property. + * + * @param value + * allowed object is + * {@link PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText } + * + */ + public void setPosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText(PosFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText value) { + this.posFindingMetastaticBreastCarcinomaEstrogenReceptorOtherMeasuremenetScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText getMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText() { + return metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText } + * + */ + public void setMetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText(MetastaticBreastCarcinomaEstrogenReceptorDetectionMethodText value) { + this.metastaticBreastCarcinomaEstrogenReceptorDetectionMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorStatus getMetastaticBreastCarcinomaProgesteroneReceptorStatus() { + return metastaticBreastCarcinomaProgesteroneReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorStatus(MetastaticBreastCarcinomaProgesteroneReceptorStatus value) { + this.metastaticBreastCarcinomaProgesteroneReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory getMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory() { + return metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory(MetastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory value) { + this.metastaticBreastCarcinomaProgesteroneReceptorLevelCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType getMetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType() { + return metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType(MetastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType value) { + this.metastaticBreastCarcinomaImmunohistochemistryProgesteroneReceptorPositiveFindingScaleType = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore getMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore() { + return metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore; + } + + /** + * Sets the value of the metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore } + * + */ + public void setMetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore(MetastaticBreastCarcinomaImmunohistochemistryPrPosCellScore value) { + this.metastaticBreastCarcinomaImmunohistochemistryPrPosCellScore = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText getMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText() { + return metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText value) { + this.metastaticBreastCarcinomaPosFindingProgesteroneReceptorOtherMeasureScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText getMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText() { + return metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText } + * + */ + public void setMetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText(MetastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText value) { + this.metastaticBreastCarcinomaProgesteroneReceptorDetectionMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus getMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus() { + return metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus; + } + + /** + * Sets the value of the metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus } + * + */ + public void setMetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus(MetastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus value) { + this.metastaticBreastCarcinomaLabProcHer2NeuImmunohistochemistryReceptorStatus = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory getMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory() { + return metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory(MetastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory value) { + this.metastaticBreastCarcinomaHer2ErbbPosFindingCellPercentCategory = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult getMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult() { + return metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult; + } + + /** + * Sets the value of the metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult } + * + */ + public void setMetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult(MetastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult value) { + this.metastaticBreastCarcinomaErbb2ImmunohistochemistryLevelResult = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText getMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText() { + return metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText(MetastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText value) { + this.metastaticBreastCarcinomaPosFindingHer2Erbb2OtherMeasureScaleText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText getMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText() { + return metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText value) { + this.metastaticBreastCarcinomaHer2ErbbMethodCalculationMethodText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType getMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType() { + return metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType; + } + + /** + * Sets the value of the metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType } + * + */ + public void setMetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType(MetastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType value) { + this.metastaticBreastCarcinomaLabProcHer2NeuInSituHybridizationOutcomeType = value; + } + + /** + * Gets the value of the her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @return + * possible object is + * {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber getHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber() { + return her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber; + } + + /** + * Sets the value of the her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber property. + * + * @param value + * allowed object is + * {@link Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber } + * + */ + public void setHer2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber(Her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber value) { + this.her2NeuMetastaticBreastCarcinomaCopyAnalysisInputTotalNumber = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange getMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange() { + return metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange; + } + + /** + * Sets the value of the metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange } + * + */ + public void setMetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange(MetastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange value) { + this.metastaticBreastCarcinomaFluorescenceInSituHybridizationDiagnosticProcCentromere17SignalResultRange = value; + } + + /** + * Gets the value of the her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount property. + * + * @return + * possible object is + * {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount getHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount() { + return her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount; + } + + /** + * Sets the value of the her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount property. + * + * @param value + * allowed object is + * {@link Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount } + * + */ + public void setHer2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount(Her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount value) { + this.her2NeuAndCentromere17CopyNumberMetastaticBreastCarcinomaAnalysisInputTotalNumberCount = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue getMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue() { + return metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue } + * + */ + public void setMetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue(MetastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue value) { + this.metastaticBreastCarcinomaHer2NeuChromosone17SignalRatioValue = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText getMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText() { + return metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText } + * + */ + public void setMetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText(MetastaticBreastCarcinomaPosFindingOtherScaleMeasurementText value) { + this.metastaticBreastCarcinomaPosFindingOtherScaleMeasurementText = value; + } + + /** + * Gets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @return + * possible object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText getMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText() { + return metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText; + } + + /** + * Sets the value of the metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText property. + * + * @param value + * allowed object is + * {@link MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText } + * + */ + public void setMetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText(MetastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText value) { + this.metastaticBreastCarcinomaHer2ErbbPosFindingFluorescenceInSituHybridizationCalculationMethodText = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/NewTumorEvents.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/NewTumorEvents.java new file mode 100644 index 0000000..6630c0e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/NewTumorEvents.java @@ -0,0 +1,107 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared.new_tumor_event._2_7._1; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewTumorEventAfterInitialTreatment; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_tumor_event_after_initial_treatment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/brca/shared/new_tumor_event/2.7/1.0}new_tumor_event" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "newTumorEventAfterInitialTreatment", + "newTumorEvent" +}) +@XmlRootElement(name = "new_tumor_events") +public class NewTumorEvents { + + @XmlElement(name = "new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewTumorEventAfterInitialTreatment newTumorEventAfterInitialTreatment; + @XmlElement(name = "new_tumor_event") + protected List newTumorEvent; + + /** + * Gets the value of the newTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link NewTumorEventAfterInitialTreatment } + * + */ + public NewTumorEventAfterInitialTreatment getNewTumorEventAfterInitialTreatment() { + return newTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the newTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link NewTumorEventAfterInitialTreatment } + * + */ + public void setNewTumorEventAfterInitialTreatment(NewTumorEventAfterInitialTreatment value) { + this.newTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the newTumorEvent 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 newTumorEvent property. + * + *

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

+     *    getNewTumorEvent().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link NewTumorEvent } + * + * + */ + public List getNewTumorEvent() { + if (newTumorEvent == null) { + newTumorEvent = new ArrayList(); + } + return this.newTumorEvent; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/ObjectFactory.java new file mode 100644 index 0000000..f80f2ea --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/ObjectFactory.java @@ -0,0 +1,55 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared.new_tumor_event._2_7._1; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared.new_tumor_event._2_7._1 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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared.new_tumor_event._2_7._1 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link NewTumorEvents } + * + */ + public NewTumorEvents createNewTumorEvents() { + return new NewTumorEvents(); + } + + /** + * Create an instance of {@link NewTumorEvent } + * + */ + public NewTumorEvent createNewTumorEvent() { + return new NewTumorEvent(); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/package-info.java new file mode 100644 index 0000000..edd4bcf --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/brca/shared/new_tumor_event/_2_7/_1/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.12 at 05:01:33 PM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/brca/shared/new_tumor_event/2.7/1.0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca.shared.new_tumor_event._2_7._1; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/FollowUps.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/FollowUps.java new file mode 100644 index 0000000..0a89773 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/FollowUps.java @@ -0,0 +1,79 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.followup._2_7._1.FollowUp; + + +/** + *

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://tcga.nci/bcr/xml/clinical/kirc/followup/2.7/1.0}follow_up" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "followUp" +}) +@XmlRootElement(name = "follow_ups") +public class FollowUps { + + @XmlElement(name = "follow_up", namespace = "http://tcga.nci/bcr/xml/clinical/kirc/followup/2.7/1.0") + protected List followUp; + + /** + * Gets the value of the followUp 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 followUp property. + * + *

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

+     *    getFollowUp().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link FollowUp } + * + * + */ + public List getFollowUp() { + if (followUp == null) { + followUp = new ArrayList(); + } + return this.followUp; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/ObjectFactory.java new file mode 100644 index 0000000..c464ce7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/ObjectFactory.java @@ -0,0 +1,63 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc._2; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc._2 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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link Patient } + * + */ + public Patient createPatient() { + return new Patient(); + } + + /** + * Create an instance of {@link FollowUps } + * + */ + public FollowUps createFollowUps() { + return new FollowUps(); + } + + /** + * Create an instance of {@link TcgaBcr } + * + */ + public TcgaBcr createTcgaBcr() { + return new TcgaBcr(); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/Patient.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/Patient.java new file mode 100644 index 0000000..3588e7c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/Patient.java @@ -0,0 +1,2156 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.AdditionalStudies; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1.NewTumorEvents; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2.Drugs; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.Radiations; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AgeAtInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.EasternCancerOncologyGroup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Ethnicity; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Icd10; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.IcdO3Histology; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.IcdO3Site; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.InformedConsentVerified; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.KarnofskyPerformanceScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.LactateDehydrogenaseResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Laterality; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.LymphNodeExaminedCount; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.NumberPackYearsSmoked; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PerformanceStatusScaleTiming; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PersonNeoplasmCancerStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PostoperativeRxTx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PrimaryLymphNodePresentationAssessment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PrimaryTherapyOutcomeSuccess; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RaceList; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.StoppedSmokingYear; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TargetedMolecularTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TissueProspectiveCollectionIndicator; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TissueRetrospectiveCollectionIndicator; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TumorTissueSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.VitalStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfTobaccoSmokingOnset; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.ErythrocyteSedimentationRateResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.HemoglobinResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.NumberOfLymphnodesPositive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.PlateletQualitativeResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.SerumCalciumResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.WhiteCellCountResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.StageEvent; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.BcrPatientBarcode; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.BcrPatientUuid; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Gender; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HistologicalType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HistoryOfNeoadjuvantTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.NeoplasmHistologicGrade; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.OtherDx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.PatientId; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.TissueSourceSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.TobaccoSmokingHistory; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}additional_studies" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}tumor_tissue_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}histological_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}other_dx"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}gender"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}vital_status"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_birth"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_birth"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_birth"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_birth"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_known_alive"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_known_alive"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_known_alive"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_known_alive"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_death"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_death"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_followup"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_followup"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}race_list"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}bcr_patient_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}tissue_source_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}patient_id"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}bcr_patient_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}history_of_neoadjuvant_treatment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}informed_consent_verified"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}icd_o_3_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}icd_o_3_histology"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}icd_10"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}tissue_prospective_collection_indicator" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}tissue_retrospective_collection_indicator" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}ethnicity"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}person_neoplasm_cancer_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}performance_status_scale_timing"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_initial_pathologic_diagnosis"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_initial_pathologic_diagnosis"/>
+ *           </sequence>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_initial_pathologic_diagnosis"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}age_at_initial_pathologic_diagnosis"/>
+ *           </sequence>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_initial_pathologic_diagnosis"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_form_completion"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_form_completion"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}stage_event"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}laterality"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}lactate_dehydrogenase_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7}serum_calcium_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7}hemoglobin_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7}platelet_qualitative_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7}white_cell_count_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7}erythrocyte_sedimentation_rate_result"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}lymph_node_examined_count"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7}number_of_lymphnodes_positive"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}karnofsky_performance_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}eastern_cancer_oncology_group"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}primary_lymph_node_presentation_assessment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}neoplasm_histologic_grade"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}tobacco_smoking_history"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_tobacco_smoking_onset"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}stopped_smoking_year"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}number_pack_years_smoked"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}targeted_molecular_therapy" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}postoperative_rx_tx" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}radiation_therapy" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}primary_therapy_outcome_success" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/kirc/shared/new_tumor_event/2.7/1.0}new_tumor_events" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}drugs"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}radiations"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/kirc/2.7}follow_ups"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "additionalStudies", + "tumorTissueSite", + "histologicalType", + "otherDx", + "gender", + "vitalStatus", + "dayOfBirth", + "monthOfBirth", + "yearOfBirth", + "daysToBirth", + "dayOfLastKnownAlive", + "monthOfLastKnownAlive", + "yearOfLastKnownAlive", + "daysToLastKnownAlive", + "dayOfDeath", + "monthOfDeath", + "yearOfDeath", + "daysToDeath", + "dayOfLastFollowup", + "monthOfLastFollowup", + "yearOfLastFollowup", + "daysToLastFollowup", + "raceList", + "bcrPatientBarcode", + "tissueSourceSite", + "patientId", + "bcrPatientUuid", + "historyOfNeoadjuvantTreatment", + "informedConsentVerified", + "icdO3Site", + "icdO3Histology", + "icd10", + "tissueProspectiveCollectionIndicator", + "tissueRetrospectiveCollectionIndicator", + "ethnicity", + "personNeoplasmCancerStatus", + "performanceStatusScaleTiming", + "dayOfInitialPathologicDiagnosis", + "monthOfInitialPathologicDiagnosis", + "daysToInitialPathologicDiagnosis", + "ageAtInitialPathologicDiagnosis", + "yearOfInitialPathologicDiagnosis", + "dayOfFormCompletion", + "monthOfFormCompletion", + "yearOfFormCompletion", + "daysToFormCompletion", + "stageEvent", + "laterality", + "lactateDehydrogenaseResult", + "serumCalciumResult", + "hemoglobinResult", + "plateletQualitativeResult", + "whiteCellCountResult", + "erythrocyteSedimentationRateResult", + "lymphNodeExaminedCount", + "numberOfLymphnodesPositive", + "karnofskyPerformanceScore", + "easternCancerOncologyGroup", + "primaryLymphNodePresentationAssessment", + "neoplasmHistologicGrade", + "tobaccoSmokingHistory", + "yearOfTobaccoSmokingOnset", + "stoppedSmokingYear", + "numberPackYearsSmoked", + "targetedMolecularTherapy", + "postoperativeRxTx", + "radiationTherapy", + "primaryTherapyOutcomeSuccess", + "newTumorEvents", + "drugs", + "radiations", + "followUps" +}) +@XmlRootElement(name = "patient") +public class Patient { + + @XmlElement(name = "additional_studies", namespace = "http://tcga.nci/bcr/xml/administration/2.7") + protected AdditionalStudies additionalStudies; + @XmlElement(name = "tumor_tissue_site", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected TumorTissueSite tumorTissueSite; + @XmlElement(name = "histological_type", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true, nillable = true) + protected HistologicalType histologicalType; + @XmlElement(name = "other_dx", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected OtherDx otherDx; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected Gender gender; + @XmlElement(name = "vital_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected VitalStatus vitalStatus; + @XmlElement(name = "day_of_birth", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfBirth dayOfBirth; + @XmlElement(name = "month_of_birth", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfBirth monthOfBirth; + @XmlElement(name = "year_of_birth", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfBirth yearOfBirth; + @XmlElement(name = "days_to_birth", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToBirth daysToBirth; + @XmlElement(name = "day_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfLastKnownAlive dayOfLastKnownAlive; + @XmlElement(name = "month_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfLastKnownAlive monthOfLastKnownAlive; + @XmlElement(name = "year_of_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfLastKnownAlive yearOfLastKnownAlive; + @XmlElement(name = "days_to_last_known_alive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastKnownAlive daysToLastKnownAlive; + @XmlElement(name = "day_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfDeath dayOfDeath; + @XmlElement(name = "month_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfDeath monthOfDeath; + @XmlElement(name = "year_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfDeath yearOfDeath; + @XmlElement(name = "days_to_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToDeath daysToDeath; + @XmlElement(name = "day_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfLastFollowup dayOfLastFollowup; + @XmlElement(name = "month_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfLastFollowup monthOfLastFollowup; + @XmlElement(name = "year_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfLastFollowup yearOfLastFollowup; + @XmlElement(name = "days_to_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastFollowup daysToLastFollowup; + @XmlElement(name = "race_list", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RaceList raceList; + @XmlElement(name = "bcr_patient_barcode", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected BcrPatientBarcode bcrPatientBarcode; + @XmlElement(name = "tissue_source_site", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected TissueSourceSite tissueSourceSite; + @XmlElement(name = "patient_id", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected PatientId patientId; + @XmlElement(name = "bcr_patient_uuid", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected BcrPatientUuid bcrPatientUuid; + @XmlElement(name = "history_of_neoadjuvant_treatment", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true) + protected HistoryOfNeoadjuvantTreatment historyOfNeoadjuvantTreatment; + @XmlElement(name = "informed_consent_verified", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected InformedConsentVerified informedConsentVerified; + @XmlElement(name = "icd_o_3_site", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected IcdO3Site icdO3Site; + @XmlElement(name = "icd_o_3_histology", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected IcdO3Histology icdO3Histology; + @XmlElement(name = "icd_10", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected Icd10 icd10; + @XmlElement(name = "tissue_prospective_collection_indicator", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected TissueProspectiveCollectionIndicator tissueProspectiveCollectionIndicator; + @XmlElement(name = "tissue_retrospective_collection_indicator", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected TissueRetrospectiveCollectionIndicator tissueRetrospectiveCollectionIndicator; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected Ethnicity ethnicity; + @XmlElement(name = "person_neoplasm_cancer_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PersonNeoplasmCancerStatus personNeoplasmCancerStatus; + @XmlElement(name = "performance_status_scale_timing", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected PerformanceStatusScaleTiming performanceStatusScaleTiming; + @XmlElement(name = "day_of_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfInitialPathologicDiagnosis dayOfInitialPathologicDiagnosis; + @XmlElement(name = "month_of_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfInitialPathologicDiagnosis monthOfInitialPathologicDiagnosis; + @XmlElement(name = "days_to_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToInitialPathologicDiagnosis daysToInitialPathologicDiagnosis; + @XmlElement(name = "age_at_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected AgeAtInitialPathologicDiagnosis ageAtInitialPathologicDiagnosis; + @XmlElement(name = "year_of_initial_pathologic_diagnosis", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected YearOfInitialPathologicDiagnosis yearOfInitialPathologicDiagnosis; + @XmlElement(name = "day_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfFormCompletion dayOfFormCompletion; + @XmlElement(name = "month_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfFormCompletion monthOfFormCompletion; + @XmlElement(name = "year_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfFormCompletion yearOfFormCompletion; + @XmlElement(name = "days_to_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToFormCompletion daysToFormCompletion; + @XmlElement(name = "stage_event", namespace = "http://tcga.nci/bcr/xml/clinical/shared/stage/2.7", required = true) + protected StageEvent stageEvent; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected Laterality laterality; + @XmlElement(name = "lactate_dehydrogenase_result", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected LactateDehydrogenaseResult lactateDehydrogenaseResult; + @XmlElement(name = "serum_calcium_result", namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", required = true, nillable = true) + protected SerumCalciumResult serumCalciumResult; + @XmlElement(name = "hemoglobin_result", namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", required = true, nillable = true) + protected HemoglobinResult hemoglobinResult; + @XmlElement(name = "platelet_qualitative_result", namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", required = true, nillable = true) + protected PlateletQualitativeResult plateletQualitativeResult; + @XmlElement(name = "white_cell_count_result", namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", required = true, nillable = true) + protected WhiteCellCountResult whiteCellCountResult; + @XmlElement(name = "erythrocyte_sedimentation_rate_result", namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", required = true, nillable = true) + protected ErythrocyteSedimentationRateResult erythrocyteSedimentationRateResult; + @XmlElement(name = "lymph_node_examined_count", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected LymphNodeExaminedCount lymphNodeExaminedCount; + @XmlElement(name = "number_of_lymphnodes_positive", namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", required = true, nillable = true) + protected NumberOfLymphnodesPositive numberOfLymphnodesPositive; + @XmlElement(name = "karnofsky_performance_score", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected KarnofskyPerformanceScore karnofskyPerformanceScore; + @XmlElement(name = "eastern_cancer_oncology_group", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected EasternCancerOncologyGroup easternCancerOncologyGroup; + @XmlElement(name = "primary_lymph_node_presentation_assessment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PrimaryLymphNodePresentationAssessment primaryLymphNodePresentationAssessment; + @XmlElement(name = "neoplasm_histologic_grade", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true, nillable = true) + protected NeoplasmHistologicGrade neoplasmHistologicGrade; + @XmlElement(name = "tobacco_smoking_history", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true, nillable = true) + protected TobaccoSmokingHistory tobaccoSmokingHistory; + @XmlElement(name = "year_of_tobacco_smoking_onset", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected YearOfTobaccoSmokingOnset yearOfTobaccoSmokingOnset; + @XmlElement(name = "stopped_smoking_year", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected StoppedSmokingYear stoppedSmokingYear; + @XmlElement(name = "number_pack_years_smoked", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected NumberPackYearsSmoked numberPackYearsSmoked; + @XmlElement(name = "targeted_molecular_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected TargetedMolecularTherapy targetedMolecularTherapy; + @XmlElement(name = "postoperative_rx_tx", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected PostoperativeRxTx postoperativeRxTx; + @XmlElement(name = "radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected RadiationTherapy radiationTherapy; + @XmlElement(name = "primary_therapy_outcome_success", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected PrimaryTherapyOutcomeSuccess primaryTherapyOutcomeSuccess; + @XmlElement(name = "new_tumor_events", namespace = "http://tcga.nci/bcr/xml/clinical/kirc/shared/new_tumor_event/2.7/1.0") + protected NewTumorEvents newTumorEvents; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7", required = true) + protected Drugs drugs; + @XmlElement(namespace = "http://tcga.nci/bcr/xml/clinical/radiation/2.7", required = true) + protected Radiations radiations; + @XmlElement(name = "follow_ups", required = true) + protected FollowUps followUps; + + /** + * Gets the value of the additionalStudies property. + * + * @return + * possible object is + * {@link AdditionalStudies } + * + */ + public AdditionalStudies getAdditionalStudies() { + return additionalStudies; + } + + /** + * Sets the value of the additionalStudies property. + * + * @param value + * allowed object is + * {@link AdditionalStudies } + * + */ + public void setAdditionalStudies(AdditionalStudies value) { + this.additionalStudies = value; + } + + /** + * Gets the value of the tumorTissueSite property. + * + * @return + * possible object is + * {@link TumorTissueSite } + * + */ + public TumorTissueSite getTumorTissueSite() { + return tumorTissueSite; + } + + /** + * Sets the value of the tumorTissueSite property. + * + * @param value + * allowed object is + * {@link TumorTissueSite } + * + */ + public void setTumorTissueSite(TumorTissueSite value) { + this.tumorTissueSite = value; + } + + /** + * Gets the value of the histologicalType property. + * + * @return + * possible object is + * {@link HistologicalType } + * + */ + public HistologicalType getHistologicalType() { + return histologicalType; + } + + /** + * Sets the value of the histologicalType property. + * + * @param value + * allowed object is + * {@link HistologicalType } + * + */ + public void setHistologicalType(HistologicalType value) { + this.histologicalType = value; + } + + /** + * Gets the value of the otherDx property. + * + * @return + * possible object is + * {@link OtherDx } + * + */ + public OtherDx getOtherDx() { + return otherDx; + } + + /** + * Sets the value of the otherDx property. + * + * @param value + * allowed object is + * {@link OtherDx } + * + */ + public void setOtherDx(OtherDx value) { + this.otherDx = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link Gender } + * + */ + public Gender getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link Gender } + * + */ + public void setGender(Gender value) { + this.gender = value; + } + + /** + * Gets the value of the vitalStatus property. + * + * @return + * possible object is + * {@link VitalStatus } + * + */ + public VitalStatus getVitalStatus() { + return vitalStatus; + } + + /** + * Sets the value of the vitalStatus property. + * + * @param value + * allowed object is + * {@link VitalStatus } + * + */ + public void setVitalStatus(VitalStatus value) { + this.vitalStatus = value; + } + + /** + * Gets the value of the dayOfBirth property. + * + * @return + * possible object is + * {@link DayOfBirth } + * + */ + public DayOfBirth getDayOfBirth() { + return dayOfBirth; + } + + /** + * Sets the value of the dayOfBirth property. + * + * @param value + * allowed object is + * {@link DayOfBirth } + * + */ + public void setDayOfBirth(DayOfBirth value) { + this.dayOfBirth = value; + } + + /** + * Gets the value of the monthOfBirth property. + * + * @return + * possible object is + * {@link MonthOfBirth } + * + */ + public MonthOfBirth getMonthOfBirth() { + return monthOfBirth; + } + + /** + * Sets the value of the monthOfBirth property. + * + * @param value + * allowed object is + * {@link MonthOfBirth } + * + */ + public void setMonthOfBirth(MonthOfBirth value) { + this.monthOfBirth = value; + } + + /** + * Gets the value of the yearOfBirth property. + * + * @return + * possible object is + * {@link YearOfBirth } + * + */ + public YearOfBirth getYearOfBirth() { + return yearOfBirth; + } + + /** + * Sets the value of the yearOfBirth property. + * + * @param value + * allowed object is + * {@link YearOfBirth } + * + */ + public void setYearOfBirth(YearOfBirth value) { + this.yearOfBirth = value; + } + + /** + * Gets the value of the daysToBirth property. + * + * @return + * possible object is + * {@link DaysToBirth } + * + */ + public DaysToBirth getDaysToBirth() { + return daysToBirth; + } + + /** + * Sets the value of the daysToBirth property. + * + * @param value + * allowed object is + * {@link DaysToBirth } + * + */ + public void setDaysToBirth(DaysToBirth value) { + this.daysToBirth = value; + } + + /** + * Gets the value of the dayOfLastKnownAlive property. + * + * @return + * possible object is + * {@link DayOfLastKnownAlive } + * + */ + public DayOfLastKnownAlive getDayOfLastKnownAlive() { + return dayOfLastKnownAlive; + } + + /** + * Sets the value of the dayOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link DayOfLastKnownAlive } + * + */ + public void setDayOfLastKnownAlive(DayOfLastKnownAlive value) { + this.dayOfLastKnownAlive = value; + } + + /** + * Gets the value of the monthOfLastKnownAlive property. + * + * @return + * possible object is + * {@link MonthOfLastKnownAlive } + * + */ + public MonthOfLastKnownAlive getMonthOfLastKnownAlive() { + return monthOfLastKnownAlive; + } + + /** + * Sets the value of the monthOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link MonthOfLastKnownAlive } + * + */ + public void setMonthOfLastKnownAlive(MonthOfLastKnownAlive value) { + this.monthOfLastKnownAlive = value; + } + + /** + * Gets the value of the yearOfLastKnownAlive property. + * + * @return + * possible object is + * {@link YearOfLastKnownAlive } + * + */ + public YearOfLastKnownAlive getYearOfLastKnownAlive() { + return yearOfLastKnownAlive; + } + + /** + * Sets the value of the yearOfLastKnownAlive property. + * + * @param value + * allowed object is + * {@link YearOfLastKnownAlive } + * + */ + public void setYearOfLastKnownAlive(YearOfLastKnownAlive value) { + this.yearOfLastKnownAlive = value; + } + + /** + * Gets the value of the daysToLastKnownAlive property. + * + * @return + * possible object is + * {@link DaysToLastKnownAlive } + * + */ + public DaysToLastKnownAlive getDaysToLastKnownAlive() { + return daysToLastKnownAlive; + } + + /** + * Sets the value of the daysToLastKnownAlive property. + * + * @param value + * allowed object is + * {@link DaysToLastKnownAlive } + * + */ + public void setDaysToLastKnownAlive(DaysToLastKnownAlive value) { + this.daysToLastKnownAlive = value; + } + + /** + * Gets the value of the dayOfDeath property. + * + * @return + * possible object is + * {@link DayOfDeath } + * + */ + public DayOfDeath getDayOfDeath() { + return dayOfDeath; + } + + /** + * Sets the value of the dayOfDeath property. + * + * @param value + * allowed object is + * {@link DayOfDeath } + * + */ + public void setDayOfDeath(DayOfDeath value) { + this.dayOfDeath = value; + } + + /** + * Gets the value of the monthOfDeath property. + * + * @return + * possible object is + * {@link MonthOfDeath } + * + */ + public MonthOfDeath getMonthOfDeath() { + return monthOfDeath; + } + + /** + * Sets the value of the monthOfDeath property. + * + * @param value + * allowed object is + * {@link MonthOfDeath } + * + */ + public void setMonthOfDeath(MonthOfDeath value) { + this.monthOfDeath = value; + } + + /** + * Gets the value of the yearOfDeath property. + * + * @return + * possible object is + * {@link YearOfDeath } + * + */ + public YearOfDeath getYearOfDeath() { + return yearOfDeath; + } + + /** + * Sets the value of the yearOfDeath property. + * + * @param value + * allowed object is + * {@link YearOfDeath } + * + */ + public void setYearOfDeath(YearOfDeath value) { + this.yearOfDeath = value; + } + + /** + * Gets the value of the daysToDeath property. + * + * @return + * possible object is + * {@link DaysToDeath } + * + */ + public DaysToDeath getDaysToDeath() { + return daysToDeath; + } + + /** + * Sets the value of the daysToDeath property. + * + * @param value + * allowed object is + * {@link DaysToDeath } + * + */ + public void setDaysToDeath(DaysToDeath value) { + this.daysToDeath = value; + } + + /** + * Gets the value of the dayOfLastFollowup property. + * + * @return + * possible object is + * {@link DayOfLastFollowup } + * + */ + public DayOfLastFollowup getDayOfLastFollowup() { + return dayOfLastFollowup; + } + + /** + * Sets the value of the dayOfLastFollowup property. + * + * @param value + * allowed object is + * {@link DayOfLastFollowup } + * + */ + public void setDayOfLastFollowup(DayOfLastFollowup value) { + this.dayOfLastFollowup = value; + } + + /** + * Gets the value of the monthOfLastFollowup property. + * + * @return + * possible object is + * {@link MonthOfLastFollowup } + * + */ + public MonthOfLastFollowup getMonthOfLastFollowup() { + return monthOfLastFollowup; + } + + /** + * Sets the value of the monthOfLastFollowup property. + * + * @param value + * allowed object is + * {@link MonthOfLastFollowup } + * + */ + public void setMonthOfLastFollowup(MonthOfLastFollowup value) { + this.monthOfLastFollowup = value; + } + + /** + * Gets the value of the yearOfLastFollowup property. + * + * @return + * possible object is + * {@link YearOfLastFollowup } + * + */ + public YearOfLastFollowup getYearOfLastFollowup() { + return yearOfLastFollowup; + } + + /** + * Sets the value of the yearOfLastFollowup property. + * + * @param value + * allowed object is + * {@link YearOfLastFollowup } + * + */ + public void setYearOfLastFollowup(YearOfLastFollowup value) { + this.yearOfLastFollowup = value; + } + + /** + * Gets the value of the daysToLastFollowup property. + * + * @return + * possible object is + * {@link DaysToLastFollowup } + * + */ + public DaysToLastFollowup getDaysToLastFollowup() { + return daysToLastFollowup; + } + + /** + * Sets the value of the daysToLastFollowup property. + * + * @param value + * allowed object is + * {@link DaysToLastFollowup } + * + */ + public void setDaysToLastFollowup(DaysToLastFollowup value) { + this.daysToLastFollowup = value; + } + + /** + * Gets the value of the raceList property. + * + * @return + * possible object is + * {@link RaceList } + * + */ + public RaceList getRaceList() { + return raceList; + } + + /** + * Sets the value of the raceList property. + * + * @param value + * allowed object is + * {@link RaceList } + * + */ + public void setRaceList(RaceList value) { + this.raceList = value; + } + + /** + * Gets the value of the bcrPatientBarcode property. + * + * @return + * possible object is + * {@link BcrPatientBarcode } + * + */ + public BcrPatientBarcode getBcrPatientBarcode() { + return bcrPatientBarcode; + } + + /** + * Sets the value of the bcrPatientBarcode property. + * + * @param value + * allowed object is + * {@link BcrPatientBarcode } + * + */ + public void setBcrPatientBarcode(BcrPatientBarcode value) { + this.bcrPatientBarcode = value; + } + + /** + * Gets the value of the tissueSourceSite property. + * + * @return + * possible object is + * {@link TissueSourceSite } + * + */ + public TissueSourceSite getTissueSourceSite() { + return tissueSourceSite; + } + + /** + * Sets the value of the tissueSourceSite property. + * + * @param value + * allowed object is + * {@link TissueSourceSite } + * + */ + public void setTissueSourceSite(TissueSourceSite value) { + this.tissueSourceSite = value; + } + + /** + * Gets the value of the patientId property. + * + * @return + * possible object is + * {@link PatientId } + * + */ + public PatientId getPatientId() { + return patientId; + } + + /** + * Sets the value of the patientId property. + * + * @param value + * allowed object is + * {@link PatientId } + * + */ + public void setPatientId(PatientId value) { + this.patientId = value; + } + + /** + * Gets the value of the bcrPatientUuid property. + * + * @return + * possible object is + * {@link BcrPatientUuid } + * + */ + public BcrPatientUuid getBcrPatientUuid() { + return bcrPatientUuid; + } + + /** + * Sets the value of the bcrPatientUuid property. + * + * @param value + * allowed object is + * {@link BcrPatientUuid } + * + */ + public void setBcrPatientUuid(BcrPatientUuid value) { + this.bcrPatientUuid = value; + } + + /** + * Gets the value of the historyOfNeoadjuvantTreatment property. + * + * @return + * possible object is + * {@link HistoryOfNeoadjuvantTreatment } + * + */ + public HistoryOfNeoadjuvantTreatment getHistoryOfNeoadjuvantTreatment() { + return historyOfNeoadjuvantTreatment; + } + + /** + * Sets the value of the historyOfNeoadjuvantTreatment property. + * + * @param value + * allowed object is + * {@link HistoryOfNeoadjuvantTreatment } + * + */ + public void setHistoryOfNeoadjuvantTreatment(HistoryOfNeoadjuvantTreatment value) { + this.historyOfNeoadjuvantTreatment = value; + } + + /** + * Gets the value of the informedConsentVerified property. + * + * @return + * possible object is + * {@link InformedConsentVerified } + * + */ + public InformedConsentVerified getInformedConsentVerified() { + return informedConsentVerified; + } + + /** + * Sets the value of the informedConsentVerified property. + * + * @param value + * allowed object is + * {@link InformedConsentVerified } + * + */ + public void setInformedConsentVerified(InformedConsentVerified value) { + this.informedConsentVerified = value; + } + + /** + * Gets the value of the icdO3Site property. + * + * @return + * possible object is + * {@link IcdO3Site } + * + */ + public IcdO3Site getIcdO3Site() { + return icdO3Site; + } + + /** + * Sets the value of the icdO3Site property. + * + * @param value + * allowed object is + * {@link IcdO3Site } + * + */ + public void setIcdO3Site(IcdO3Site value) { + this.icdO3Site = value; + } + + /** + * Gets the value of the icdO3Histology property. + * + * @return + * possible object is + * {@link IcdO3Histology } + * + */ + public IcdO3Histology getIcdO3Histology() { + return icdO3Histology; + } + + /** + * Sets the value of the icdO3Histology property. + * + * @param value + * allowed object is + * {@link IcdO3Histology } + * + */ + public void setIcdO3Histology(IcdO3Histology value) { + this.icdO3Histology = value; + } + + /** + * Gets the value of the icd10 property. + * + * @return + * possible object is + * {@link Icd10 } + * + */ + public Icd10 getIcd10() { + return icd10; + } + + /** + * Sets the value of the icd10 property. + * + * @param value + * allowed object is + * {@link Icd10 } + * + */ + public void setIcd10(Icd10 value) { + this.icd10 = value; + } + + /** + * Gets the value of the tissueProspectiveCollectionIndicator property. + * + * @return + * possible object is + * {@link TissueProspectiveCollectionIndicator } + * + */ + public TissueProspectiveCollectionIndicator getTissueProspectiveCollectionIndicator() { + return tissueProspectiveCollectionIndicator; + } + + /** + * Sets the value of the tissueProspectiveCollectionIndicator property. + * + * @param value + * allowed object is + * {@link TissueProspectiveCollectionIndicator } + * + */ + public void setTissueProspectiveCollectionIndicator(TissueProspectiveCollectionIndicator value) { + this.tissueProspectiveCollectionIndicator = value; + } + + /** + * Gets the value of the tissueRetrospectiveCollectionIndicator property. + * + * @return + * possible object is + * {@link TissueRetrospectiveCollectionIndicator } + * + */ + public TissueRetrospectiveCollectionIndicator getTissueRetrospectiveCollectionIndicator() { + return tissueRetrospectiveCollectionIndicator; + } + + /** + * Sets the value of the tissueRetrospectiveCollectionIndicator property. + * + * @param value + * allowed object is + * {@link TissueRetrospectiveCollectionIndicator } + * + */ + public void setTissueRetrospectiveCollectionIndicator(TissueRetrospectiveCollectionIndicator value) { + this.tissueRetrospectiveCollectionIndicator = value; + } + + /** + * Gets the value of the ethnicity property. + * + * @return + * possible object is + * {@link Ethnicity } + * + */ + public Ethnicity getEthnicity() { + return ethnicity; + } + + /** + * Sets the value of the ethnicity property. + * + * @param value + * allowed object is + * {@link Ethnicity } + * + */ + public void setEthnicity(Ethnicity value) { + this.ethnicity = value; + } + + /** + * Gets the value of the personNeoplasmCancerStatus property. + * + * @return + * possible object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public PersonNeoplasmCancerStatus getPersonNeoplasmCancerStatus() { + return personNeoplasmCancerStatus; + } + + /** + * Sets the value of the personNeoplasmCancerStatus property. + * + * @param value + * allowed object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public void setPersonNeoplasmCancerStatus(PersonNeoplasmCancerStatus value) { + this.personNeoplasmCancerStatus = value; + } + + /** + * Gets the value of the performanceStatusScaleTiming property. + * + * @return + * possible object is + * {@link PerformanceStatusScaleTiming } + * + */ + public PerformanceStatusScaleTiming getPerformanceStatusScaleTiming() { + return performanceStatusScaleTiming; + } + + /** + * Sets the value of the performanceStatusScaleTiming property. + * + * @param value + * allowed object is + * {@link PerformanceStatusScaleTiming } + * + */ + public void setPerformanceStatusScaleTiming(PerformanceStatusScaleTiming value) { + this.performanceStatusScaleTiming = value; + } + + /** + * Gets the value of the dayOfInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link DayOfInitialPathologicDiagnosis } + * + */ + public DayOfInitialPathologicDiagnosis getDayOfInitialPathologicDiagnosis() { + return dayOfInitialPathologicDiagnosis; + } + + /** + * Sets the value of the dayOfInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link DayOfInitialPathologicDiagnosis } + * + */ + public void setDayOfInitialPathologicDiagnosis(DayOfInitialPathologicDiagnosis value) { + this.dayOfInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the monthOfInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link MonthOfInitialPathologicDiagnosis } + * + */ + public MonthOfInitialPathologicDiagnosis getMonthOfInitialPathologicDiagnosis() { + return monthOfInitialPathologicDiagnosis; + } + + /** + * Sets the value of the monthOfInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link MonthOfInitialPathologicDiagnosis } + * + */ + public void setMonthOfInitialPathologicDiagnosis(MonthOfInitialPathologicDiagnosis value) { + this.monthOfInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the daysToInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link DaysToInitialPathologicDiagnosis } + * + */ + public DaysToInitialPathologicDiagnosis getDaysToInitialPathologicDiagnosis() { + return daysToInitialPathologicDiagnosis; + } + + /** + * Sets the value of the daysToInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link DaysToInitialPathologicDiagnosis } + * + */ + public void setDaysToInitialPathologicDiagnosis(DaysToInitialPathologicDiagnosis value) { + this.daysToInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the ageAtInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link AgeAtInitialPathologicDiagnosis } + * + */ + public AgeAtInitialPathologicDiagnosis getAgeAtInitialPathologicDiagnosis() { + return ageAtInitialPathologicDiagnosis; + } + + /** + * Sets the value of the ageAtInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link AgeAtInitialPathologicDiagnosis } + * + */ + public void setAgeAtInitialPathologicDiagnosis(AgeAtInitialPathologicDiagnosis value) { + this.ageAtInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the yearOfInitialPathologicDiagnosis property. + * + * @return + * possible object is + * {@link YearOfInitialPathologicDiagnosis } + * + */ + public YearOfInitialPathologicDiagnosis getYearOfInitialPathologicDiagnosis() { + return yearOfInitialPathologicDiagnosis; + } + + /** + * Sets the value of the yearOfInitialPathologicDiagnosis property. + * + * @param value + * allowed object is + * {@link YearOfInitialPathologicDiagnosis } + * + */ + public void setYearOfInitialPathologicDiagnosis(YearOfInitialPathologicDiagnosis value) { + this.yearOfInitialPathologicDiagnosis = value; + } + + /** + * Gets the value of the dayOfFormCompletion property. + * + * @return + * possible object is + * {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion getDayOfFormCompletion() { + return dayOfFormCompletion; + } + + /** + * Sets the value of the dayOfFormCompletion property. + * + * @param value + * allowed object is + * {@link DayOfFormCompletion } + * + */ + public void setDayOfFormCompletion(DayOfFormCompletion value) { + this.dayOfFormCompletion = value; + } + + /** + * Gets the value of the monthOfFormCompletion property. + * + * @return + * possible object is + * {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion getMonthOfFormCompletion() { + return monthOfFormCompletion; + } + + /** + * Sets the value of the monthOfFormCompletion property. + * + * @param value + * allowed object is + * {@link MonthOfFormCompletion } + * + */ + public void setMonthOfFormCompletion(MonthOfFormCompletion value) { + this.monthOfFormCompletion = value; + } + + /** + * Gets the value of the yearOfFormCompletion property. + * + * @return + * possible object is + * {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion getYearOfFormCompletion() { + return yearOfFormCompletion; + } + + /** + * Sets the value of the yearOfFormCompletion property. + * + * @param value + * allowed object is + * {@link YearOfFormCompletion } + * + */ + public void setYearOfFormCompletion(YearOfFormCompletion value) { + this.yearOfFormCompletion = value; + } + + /** + * Gets the value of the daysToFormCompletion property. + * + * @return + * possible object is + * {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion getDaysToFormCompletion() { + return daysToFormCompletion; + } + + /** + * Sets the value of the daysToFormCompletion property. + * + * @param value + * allowed object is + * {@link DaysToFormCompletion } + * + */ + public void setDaysToFormCompletion(DaysToFormCompletion value) { + this.daysToFormCompletion = value; + } + + /** + * Gets the value of the stageEvent property. + * + * @return + * possible object is + * {@link StageEvent } + * + */ + public StageEvent getStageEvent() { + return stageEvent; + } + + /** + * Sets the value of the stageEvent property. + * + * @param value + * allowed object is + * {@link StageEvent } + * + */ + public void setStageEvent(StageEvent value) { + this.stageEvent = value; + } + + /** + * Gets the value of the laterality property. + * + * @return + * possible object is + * {@link Laterality } + * + */ + public Laterality getLaterality() { + return laterality; + } + + /** + * Sets the value of the laterality property. + * + * @param value + * allowed object is + * {@link Laterality } + * + */ + public void setLaterality(Laterality value) { + this.laterality = value; + } + + /** + * Gets the value of the lactateDehydrogenaseResult property. + * + * @return + * possible object is + * {@link LactateDehydrogenaseResult } + * + */ + public LactateDehydrogenaseResult getLactateDehydrogenaseResult() { + return lactateDehydrogenaseResult; + } + + /** + * Sets the value of the lactateDehydrogenaseResult property. + * + * @param value + * allowed object is + * {@link LactateDehydrogenaseResult } + * + */ + public void setLactateDehydrogenaseResult(LactateDehydrogenaseResult value) { + this.lactateDehydrogenaseResult = value; + } + + /** + * Gets the value of the serumCalciumResult property. + * + * @return + * possible object is + * {@link SerumCalciumResult } + * + */ + public SerumCalciumResult getSerumCalciumResult() { + return serumCalciumResult; + } + + /** + * Sets the value of the serumCalciumResult property. + * + * @param value + * allowed object is + * {@link SerumCalciumResult } + * + */ + public void setSerumCalciumResult(SerumCalciumResult value) { + this.serumCalciumResult = value; + } + + /** + * Gets the value of the hemoglobinResult property. + * + * @return + * possible object is + * {@link HemoglobinResult } + * + */ + public HemoglobinResult getHemoglobinResult() { + return hemoglobinResult; + } + + /** + * Sets the value of the hemoglobinResult property. + * + * @param value + * allowed object is + * {@link HemoglobinResult } + * + */ + public void setHemoglobinResult(HemoglobinResult value) { + this.hemoglobinResult = value; + } + + /** + * Gets the value of the plateletQualitativeResult property. + * + * @return + * possible object is + * {@link PlateletQualitativeResult } + * + */ + public PlateletQualitativeResult getPlateletQualitativeResult() { + return plateletQualitativeResult; + } + + /** + * Sets the value of the plateletQualitativeResult property. + * + * @param value + * allowed object is + * {@link PlateletQualitativeResult } + * + */ + public void setPlateletQualitativeResult(PlateletQualitativeResult value) { + this.plateletQualitativeResult = value; + } + + /** + * Gets the value of the whiteCellCountResult property. + * + * @return + * possible object is + * {@link WhiteCellCountResult } + * + */ + public WhiteCellCountResult getWhiteCellCountResult() { + return whiteCellCountResult; + } + + /** + * Sets the value of the whiteCellCountResult property. + * + * @param value + * allowed object is + * {@link WhiteCellCountResult } + * + */ + public void setWhiteCellCountResult(WhiteCellCountResult value) { + this.whiteCellCountResult = value; + } + + /** + * Gets the value of the erythrocyteSedimentationRateResult property. + * + * @return + * possible object is + * {@link ErythrocyteSedimentationRateResult } + * + */ + public ErythrocyteSedimentationRateResult getErythrocyteSedimentationRateResult() { + return erythrocyteSedimentationRateResult; + } + + /** + * Sets the value of the erythrocyteSedimentationRateResult property. + * + * @param value + * allowed object is + * {@link ErythrocyteSedimentationRateResult } + * + */ + public void setErythrocyteSedimentationRateResult(ErythrocyteSedimentationRateResult value) { + this.erythrocyteSedimentationRateResult = value; + } + + /** + * Gets the value of the lymphNodeExaminedCount property. + * + * @return + * possible object is + * {@link LymphNodeExaminedCount } + * + */ + public LymphNodeExaminedCount getLymphNodeExaminedCount() { + return lymphNodeExaminedCount; + } + + /** + * Sets the value of the lymphNodeExaminedCount property. + * + * @param value + * allowed object is + * {@link LymphNodeExaminedCount } + * + */ + public void setLymphNodeExaminedCount(LymphNodeExaminedCount value) { + this.lymphNodeExaminedCount = value; + } + + /** + * Gets the value of the numberOfLymphnodesPositive property. + * + * @return + * possible object is + * {@link NumberOfLymphnodesPositive } + * + */ + public NumberOfLymphnodesPositive getNumberOfLymphnodesPositive() { + return numberOfLymphnodesPositive; + } + + /** + * Sets the value of the numberOfLymphnodesPositive property. + * + * @param value + * allowed object is + * {@link NumberOfLymphnodesPositive } + * + */ + public void setNumberOfLymphnodesPositive(NumberOfLymphnodesPositive value) { + this.numberOfLymphnodesPositive = value; + } + + /** + * Gets the value of the karnofskyPerformanceScore property. + * + * @return + * possible object is + * {@link KarnofskyPerformanceScore } + * + */ + public KarnofskyPerformanceScore getKarnofskyPerformanceScore() { + return karnofskyPerformanceScore; + } + + /** + * Sets the value of the karnofskyPerformanceScore property. + * + * @param value + * allowed object is + * {@link KarnofskyPerformanceScore } + * + */ + public void setKarnofskyPerformanceScore(KarnofskyPerformanceScore value) { + this.karnofskyPerformanceScore = value; + } + + /** + * Gets the value of the easternCancerOncologyGroup property. + * + * @return + * possible object is + * {@link EasternCancerOncologyGroup } + * + */ + public EasternCancerOncologyGroup getEasternCancerOncologyGroup() { + return easternCancerOncologyGroup; + } + + /** + * Sets the value of the easternCancerOncologyGroup property. + * + * @param value + * allowed object is + * {@link EasternCancerOncologyGroup } + * + */ + public void setEasternCancerOncologyGroup(EasternCancerOncologyGroup value) { + this.easternCancerOncologyGroup = value; + } + + /** + * Gets the value of the primaryLymphNodePresentationAssessment property. + * + * @return + * possible object is + * {@link PrimaryLymphNodePresentationAssessment } + * + */ + public PrimaryLymphNodePresentationAssessment getPrimaryLymphNodePresentationAssessment() { + return primaryLymphNodePresentationAssessment; + } + + /** + * Sets the value of the primaryLymphNodePresentationAssessment property. + * + * @param value + * allowed object is + * {@link PrimaryLymphNodePresentationAssessment } + * + */ + public void setPrimaryLymphNodePresentationAssessment(PrimaryLymphNodePresentationAssessment value) { + this.primaryLymphNodePresentationAssessment = value; + } + + /** + * Gets the value of the neoplasmHistologicGrade property. + * + * @return + * possible object is + * {@link NeoplasmHistologicGrade } + * + */ + public NeoplasmHistologicGrade getNeoplasmHistologicGrade() { + return neoplasmHistologicGrade; + } + + /** + * Sets the value of the neoplasmHistologicGrade property. + * + * @param value + * allowed object is + * {@link NeoplasmHistologicGrade } + * + */ + public void setNeoplasmHistologicGrade(NeoplasmHistologicGrade value) { + this.neoplasmHistologicGrade = value; + } + + /** + * Gets the value of the tobaccoSmokingHistory property. + * + * @return + * possible object is + * {@link TobaccoSmokingHistory } + * + */ + public TobaccoSmokingHistory getTobaccoSmokingHistory() { + return tobaccoSmokingHistory; + } + + /** + * Sets the value of the tobaccoSmokingHistory property. + * + * @param value + * allowed object is + * {@link TobaccoSmokingHistory } + * + */ + public void setTobaccoSmokingHistory(TobaccoSmokingHistory value) { + this.tobaccoSmokingHistory = value; + } + + /** + * Gets the value of the yearOfTobaccoSmokingOnset property. + * + * @return + * possible object is + * {@link YearOfTobaccoSmokingOnset } + * + */ + public YearOfTobaccoSmokingOnset getYearOfTobaccoSmokingOnset() { + return yearOfTobaccoSmokingOnset; + } + + /** + * Sets the value of the yearOfTobaccoSmokingOnset property. + * + * @param value + * allowed object is + * {@link YearOfTobaccoSmokingOnset } + * + */ + public void setYearOfTobaccoSmokingOnset(YearOfTobaccoSmokingOnset value) { + this.yearOfTobaccoSmokingOnset = value; + } + + /** + * Gets the value of the stoppedSmokingYear property. + * + * @return + * possible object is + * {@link StoppedSmokingYear } + * + */ + public StoppedSmokingYear getStoppedSmokingYear() { + return stoppedSmokingYear; + } + + /** + * Sets the value of the stoppedSmokingYear property. + * + * @param value + * allowed object is + * {@link StoppedSmokingYear } + * + */ + public void setStoppedSmokingYear(StoppedSmokingYear value) { + this.stoppedSmokingYear = value; + } + + /** + * Gets the value of the numberPackYearsSmoked property. + * + * @return + * possible object is + * {@link NumberPackYearsSmoked } + * + */ + public NumberPackYearsSmoked getNumberPackYearsSmoked() { + return numberPackYearsSmoked; + } + + /** + * Sets the value of the numberPackYearsSmoked property. + * + * @param value + * allowed object is + * {@link NumberPackYearsSmoked } + * + */ + public void setNumberPackYearsSmoked(NumberPackYearsSmoked value) { + this.numberPackYearsSmoked = value; + } + + /** + * Gets the value of the targetedMolecularTherapy property. + * + * @return + * possible object is + * {@link TargetedMolecularTherapy } + * + */ + public TargetedMolecularTherapy getTargetedMolecularTherapy() { + return targetedMolecularTherapy; + } + + /** + * Sets the value of the targetedMolecularTherapy property. + * + * @param value + * allowed object is + * {@link TargetedMolecularTherapy } + * + */ + public void setTargetedMolecularTherapy(TargetedMolecularTherapy value) { + this.targetedMolecularTherapy = value; + } + + /** + * Gets the value of the postoperativeRxTx property. + * + * @return + * possible object is + * {@link PostoperativeRxTx } + * + */ + public PostoperativeRxTx getPostoperativeRxTx() { + return postoperativeRxTx; + } + + /** + * Sets the value of the postoperativeRxTx property. + * + * @param value + * allowed object is + * {@link PostoperativeRxTx } + * + */ + public void setPostoperativeRxTx(PostoperativeRxTx value) { + this.postoperativeRxTx = value; + } + + /** + * Gets the value of the radiationTherapy property. + * + * @return + * possible object is + * {@link RadiationTherapy } + * + */ + public RadiationTherapy getRadiationTherapy() { + return radiationTherapy; + } + + /** + * Sets the value of the radiationTherapy property. + * + * @param value + * allowed object is + * {@link RadiationTherapy } + * + */ + public void setRadiationTherapy(RadiationTherapy value) { + this.radiationTherapy = value; + } + + /** + * Gets the value of the primaryTherapyOutcomeSuccess property. + * + * @return + * possible object is + * {@link PrimaryTherapyOutcomeSuccess } + * + */ + public PrimaryTherapyOutcomeSuccess getPrimaryTherapyOutcomeSuccess() { + return primaryTherapyOutcomeSuccess; + } + + /** + * Sets the value of the primaryTherapyOutcomeSuccess property. + * + * @param value + * allowed object is + * {@link PrimaryTherapyOutcomeSuccess } + * + */ + public void setPrimaryTherapyOutcomeSuccess(PrimaryTherapyOutcomeSuccess value) { + this.primaryTherapyOutcomeSuccess = value; + } + + /** + * Gets the value of the newTumorEvents property. + * + * @return + * possible object is + * {@link NewTumorEvents } + * + */ + public NewTumorEvents getNewTumorEvents() { + return newTumorEvents; + } + + /** + * Sets the value of the newTumorEvents property. + * + * @param value + * allowed object is + * {@link NewTumorEvents } + * + */ + public void setNewTumorEvents(NewTumorEvents value) { + this.newTumorEvents = value; + } + + /** + * Gets the value of the drugs property. + * + * @return + * possible object is + * {@link Drugs } + * + */ + public Drugs getDrugs() { + return drugs; + } + + /** + * Sets the value of the drugs property. + * + * @param value + * allowed object is + * {@link Drugs } + * + */ + public void setDrugs(Drugs value) { + this.drugs = value; + } + + /** + * Gets the value of the radiations property. + * + * @return + * possible object is + * {@link Radiations } + * + */ + public Radiations getRadiations() { + return radiations; + } + + /** + * Sets the value of the radiations property. + * + * @param value + * allowed object is + * {@link Radiations } + * + */ + public void setRadiations(Radiations value) { + this.radiations = value; + } + + /** + * Gets the value of the followUps property. + * + * @return + * possible object is + * {@link FollowUps } + * + */ + public FollowUps getFollowUps() { + return followUps; + } + + /** + * Sets the value of the followUps property. + * + * @param value + * allowed object is + * {@link FollowUps } + * + */ + public void setFollowUps(FollowUps value) { + this.followUps = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/TcgaBcr.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/TcgaBcr.java new file mode 100644 index 0000000..426ea68 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/TcgaBcr.java @@ -0,0 +1,133 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.administration._2.Admin; + + +/** + *

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://tcga.nci/bcr/xml/administration/2.7}admin"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/kirc/2.7}patient"/>
+ *       </sequence>
+ *       <attribute name="schemaVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" fixed="2.7" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "admin", + "patient" +}) +@XmlRootElement(name = "tcga_bcr") +public class TcgaBcr { + + @XmlElement(namespace = "http://tcga.nci/bcr/xml/administration/2.7", required = true) + protected Admin admin; + @XmlElement(required = true) + protected Patient patient; + @XmlAttribute(name = "schemaVersion", required = true) + protected BigDecimal schemaVersion; + + /** + * Gets the value of the admin property. + * + * @return + * possible object is + * {@link Admin } + * + */ + public Admin getAdmin() { + return admin; + } + + /** + * Sets the value of the admin property. + * + * @param value + * allowed object is + * {@link Admin } + * + */ + public void setAdmin(Admin value) { + this.admin = value; + } + + /** + * Gets the value of the patient property. + * + * @return + * possible object is + * {@link Patient } + * + */ + public Patient getPatient() { + return patient; + } + + /** + * Sets the value of the patient property. + * + * @param value + * allowed object is + * {@link Patient } + * + */ + public void setPatient(Patient value) { + this.patient = value; + } + + /** + * Gets the value of the schemaVersion property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSchemaVersion() { + if (schemaVersion == null) { + return new BigDecimal("2.7"); + } else { + return schemaVersion; + } + } + + /** + * Sets the value of the schemaVersion property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSchemaVersion(BigDecimal value) { + this.schemaVersion = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/package-info.java new file mode 100644 index 0000000..d940615 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/kirc/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/FollowUp.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/FollowUp.java new file mode 100644 index 0000000..389aa0f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/FollowUp.java @@ -0,0 +1,1374 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.followup._2_7._1; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BcrFollowupBarcode; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BcrFollowupUuid; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.EasternCancerOncologyGroup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.FollowupCaseReportFormSubmissionReason; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.FollowupTreatmentSuccess; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.KarnofskyPerformanceScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.LostFollowUp; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PerformanceStatusScaleTiming; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PersonNeoplasmCancerStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PostoperativeRxTx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PrimaryTherapyOutcomeSuccess; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TargetedMolecularTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.VitalStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalPharmaceuticalTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalRadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfNewTumorEventAfterInitialTreatment; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}bcr_followup_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}bcr_followup_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}lost_follow_up" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}radiation_therapy" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}followup_treatment_success" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}primary_therapy_outcome_success" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}vital_status"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_last_followup"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_last_followup"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_last_followup"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_death"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_death"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_death"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_tumor_event_after_initial_treatment" minOccurs="0"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_new_tumor_event_after_initial_treatment"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_new_tumor_event_after_initial_treatment"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_surgery_locoregional_procedure"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_additional_surgery_locoregional_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_additional_surgery_locoregional_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_additional_surgery_locoregional_procedure"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_additional_surgery_locoregional_procedure"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}person_neoplasm_cancer_status"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}targeted_molecular_therapy" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}postoperative_rx_tx" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_pharmaceutical_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_surgery_metastatic_procedure"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_additional_surgery_metastatic_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_additional_surgery_metastatic_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_additional_surgery_metastatic_procedure"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_additional_surgery_metastatic_procedure"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_form_completion"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_form_completion"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}followup_case_report_form_submission_reason"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}karnofsky_performance_score"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}eastern_cancer_oncology_group"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}performance_status_scale_timing"/>
+ *       </sequence>
+ *       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" default="1.0" />
+ *       <attribute name="sequence" type="{http://www.w3.org/2001/XMLSchema}integer" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcrFollowupBarcode", + "bcrFollowupUuid", + "lostFollowUp", + "radiationTherapy", + "followupTreatmentSuccess", + "primaryTherapyOutcomeSuccess", + "vitalStatus", + "dayOfLastFollowup", + "monthOfLastFollowup", + "yearOfLastFollowup", + "daysToLastFollowup", + "dayOfDeath", + "monthOfDeath", + "yearOfDeath", + "daysToDeath", + "newTumorEventAfterInitialTreatment", + "dayOfNewTumorEventAfterInitialTreatment", + "monthOfNewTumorEventAfterInitialTreatment", + "yearOfNewTumorEventAfterInitialTreatment", + "daysToNewTumorEventAfterInitialTreatment", + "additionalSurgeryLocoregionalProcedure", + "dayOfAdditionalSurgeryLocoregionalProcedure", + "monthOfAdditionalSurgeryLocoregionalProcedure", + "yearOfAdditionalSurgeryLocoregionalProcedure", + "daysToAdditionalSurgeryLocoregionalProcedure", + "personNeoplasmCancerStatus", + "additionalRadiationTherapy", + "targetedMolecularTherapy", + "postoperativeRxTx", + "additionalPharmaceuticalTherapy", + "additionalSurgeryMetastaticProcedure", + "dayOfAdditionalSurgeryMetastaticProcedure", + "monthOfAdditionalSurgeryMetastaticProcedure", + "yearOfAdditionalSurgeryMetastaticProcedure", + "daysToAdditionalSurgeryMetastaticProcedure", + "dayOfFormCompletion", + "monthOfFormCompletion", + "yearOfFormCompletion", + "daysToFormCompletion", + "followupCaseReportFormSubmissionReason", + "karnofskyPerformanceScore", + "easternCancerOncologyGroup", + "performanceStatusScaleTiming" +}) +@XmlRootElement(name = "follow_up") +public class FollowUp { + + @XmlElement(name = "bcr_followup_barcode", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected BcrFollowupBarcode bcrFollowupBarcode; + @XmlElement(name = "bcr_followup_uuid", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected BcrFollowupUuid bcrFollowupUuid; + @XmlElement(name = "lost_follow_up", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected LostFollowUp lostFollowUp; + @XmlElement(name = "radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected RadiationTherapy radiationTherapy; + @XmlElement(name = "followup_treatment_success", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected FollowupTreatmentSuccess followupTreatmentSuccess; + @XmlElement(name = "primary_therapy_outcome_success", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected PrimaryTherapyOutcomeSuccess primaryTherapyOutcomeSuccess; + @XmlElement(name = "vital_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected VitalStatus vitalStatus; + @XmlElement(name = "day_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfLastFollowup dayOfLastFollowup; + @XmlElement(name = "month_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfLastFollowup monthOfLastFollowup; + @XmlElement(name = "year_of_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfLastFollowup yearOfLastFollowup; + @XmlElement(name = "days_to_last_followup", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToLastFollowup daysToLastFollowup; + @XmlElement(name = "day_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DayOfDeath dayOfDeath; + @XmlElement(name = "month_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected MonthOfDeath monthOfDeath; + @XmlElement(name = "year_of_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected YearOfDeath yearOfDeath; + @XmlElement(name = "days_to_death", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToDeath daysToDeath; + @XmlElement(name = "new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected NewTumorEventAfterInitialTreatment newTumorEventAfterInitialTreatment; + @XmlElement(name = "day_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfNewTumorEventAfterInitialTreatment dayOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "month_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfNewTumorEventAfterInitialTreatment monthOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "year_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfNewTumorEventAfterInitialTreatment yearOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "days_to_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToNewTumorEventAfterInitialTreatment daysToNewTumorEventAfterInitialTreatment; + @XmlElement(name = "additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalSurgeryLocoregionalProcedure additionalSurgeryLocoregionalProcedure; + @XmlElement(name = "day_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfAdditionalSurgeryLocoregionalProcedure dayOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "month_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfAdditionalSurgeryLocoregionalProcedure monthOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "year_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfAdditionalSurgeryLocoregionalProcedure yearOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "days_to_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToAdditionalSurgeryLocoregionalProcedure daysToAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "person_neoplasm_cancer_status", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected PersonNeoplasmCancerStatus personNeoplasmCancerStatus; + @XmlElement(name = "additional_radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalRadiationTherapy additionalRadiationTherapy; + @XmlElement(name = "targeted_molecular_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected TargetedMolecularTherapy targetedMolecularTherapy; + @XmlElement(name = "postoperative_rx_tx", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected PostoperativeRxTx postoperativeRxTx; + @XmlElement(name = "additional_pharmaceutical_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalPharmaceuticalTherapy additionalPharmaceuticalTherapy; + @XmlElement(name = "additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalSurgeryMetastaticProcedure additionalSurgeryMetastaticProcedure; + @XmlElement(name = "day_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfAdditionalSurgeryMetastaticProcedure dayOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "month_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfAdditionalSurgeryMetastaticProcedure monthOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "year_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfAdditionalSurgeryMetastaticProcedure yearOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "days_to_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToAdditionalSurgeryMetastaticProcedure daysToAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "day_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfFormCompletion dayOfFormCompletion; + @XmlElement(name = "month_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfFormCompletion monthOfFormCompletion; + @XmlElement(name = "year_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfFormCompletion yearOfFormCompletion; + @XmlElement(name = "days_to_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToFormCompletion daysToFormCompletion; + @XmlElement(name = "followup_case_report_form_submission_reason", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected FollowupCaseReportFormSubmissionReason followupCaseReportFormSubmissionReason; + @XmlElement(name = "karnofsky_performance_score", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected KarnofskyPerformanceScore karnofskyPerformanceScore; + @XmlElement(name = "eastern_cancer_oncology_group", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected EasternCancerOncologyGroup easternCancerOncologyGroup; + @XmlElement(name = "performance_status_scale_timing", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected PerformanceStatusScaleTiming performanceStatusScaleTiming; + @XmlAttribute(name = "version") + protected String version; + @XmlAttribute(name = "sequence") + protected BigInteger sequence; + + /** + * Gets the value of the bcrFollowupBarcode property. + * + * @return + * possible object is + * {@link BcrFollowupBarcode } + * + */ + public BcrFollowupBarcode getBcrFollowupBarcode() { + return bcrFollowupBarcode; + } + + /** + * Sets the value of the bcrFollowupBarcode property. + * + * @param value + * allowed object is + * {@link BcrFollowupBarcode } + * + */ + public void setBcrFollowupBarcode(BcrFollowupBarcode value) { + this.bcrFollowupBarcode = value; + } + + /** + * Gets the value of the bcrFollowupUuid property. + * + * @return + * possible object is + * {@link BcrFollowupUuid } + * + */ + public BcrFollowupUuid getBcrFollowupUuid() { + return bcrFollowupUuid; + } + + /** + * Sets the value of the bcrFollowupUuid property. + * + * @param value + * allowed object is + * {@link BcrFollowupUuid } + * + */ + public void setBcrFollowupUuid(BcrFollowupUuid value) { + this.bcrFollowupUuid = value; + } + + /** + * Gets the value of the lostFollowUp property. + * + * @return + * possible object is + * {@link LostFollowUp } + * + */ + public LostFollowUp getLostFollowUp() { + return lostFollowUp; + } + + /** + * Sets the value of the lostFollowUp property. + * + * @param value + * allowed object is + * {@link LostFollowUp } + * + */ + public void setLostFollowUp(LostFollowUp value) { + this.lostFollowUp = value; + } + + /** + * Gets the value of the radiationTherapy property. + * + * @return + * possible object is + * {@link RadiationTherapy } + * + */ + public RadiationTherapy getRadiationTherapy() { + return radiationTherapy; + } + + /** + * Sets the value of the radiationTherapy property. + * + * @param value + * allowed object is + * {@link RadiationTherapy } + * + */ + public void setRadiationTherapy(RadiationTherapy value) { + this.radiationTherapy = value; + } + + /** + * Gets the value of the followupTreatmentSuccess property. + * + * @return + * possible object is + * {@link FollowupTreatmentSuccess } + * + */ + public FollowupTreatmentSuccess getFollowupTreatmentSuccess() { + return followupTreatmentSuccess; + } + + /** + * Sets the value of the followupTreatmentSuccess property. + * + * @param value + * allowed object is + * {@link FollowupTreatmentSuccess } + * + */ + public void setFollowupTreatmentSuccess(FollowupTreatmentSuccess value) { + this.followupTreatmentSuccess = value; + } + + /** + * Gets the value of the primaryTherapyOutcomeSuccess property. + * + * @return + * possible object is + * {@link PrimaryTherapyOutcomeSuccess } + * + */ + public PrimaryTherapyOutcomeSuccess getPrimaryTherapyOutcomeSuccess() { + return primaryTherapyOutcomeSuccess; + } + + /** + * Sets the value of the primaryTherapyOutcomeSuccess property. + * + * @param value + * allowed object is + * {@link PrimaryTherapyOutcomeSuccess } + * + */ + public void setPrimaryTherapyOutcomeSuccess(PrimaryTherapyOutcomeSuccess value) { + this.primaryTherapyOutcomeSuccess = value; + } + + /** + * Gets the value of the vitalStatus property. + * + * @return + * possible object is + * {@link VitalStatus } + * + */ + public VitalStatus getVitalStatus() { + return vitalStatus; + } + + /** + * Sets the value of the vitalStatus property. + * + * @param value + * allowed object is + * {@link VitalStatus } + * + */ + public void setVitalStatus(VitalStatus value) { + this.vitalStatus = value; + } + + /** + * Gets the value of the dayOfLastFollowup property. + * + * @return + * possible object is + * {@link DayOfLastFollowup } + * + */ + public DayOfLastFollowup getDayOfLastFollowup() { + return dayOfLastFollowup; + } + + /** + * Sets the value of the dayOfLastFollowup property. + * + * @param value + * allowed object is + * {@link DayOfLastFollowup } + * + */ + public void setDayOfLastFollowup(DayOfLastFollowup value) { + this.dayOfLastFollowup = value; + } + + /** + * Gets the value of the monthOfLastFollowup property. + * + * @return + * possible object is + * {@link MonthOfLastFollowup } + * + */ + public MonthOfLastFollowup getMonthOfLastFollowup() { + return monthOfLastFollowup; + } + + /** + * Sets the value of the monthOfLastFollowup property. + * + * @param value + * allowed object is + * {@link MonthOfLastFollowup } + * + */ + public void setMonthOfLastFollowup(MonthOfLastFollowup value) { + this.monthOfLastFollowup = value; + } + + /** + * Gets the value of the yearOfLastFollowup property. + * + * @return + * possible object is + * {@link YearOfLastFollowup } + * + */ + public YearOfLastFollowup getYearOfLastFollowup() { + return yearOfLastFollowup; + } + + /** + * Sets the value of the yearOfLastFollowup property. + * + * @param value + * allowed object is + * {@link YearOfLastFollowup } + * + */ + public void setYearOfLastFollowup(YearOfLastFollowup value) { + this.yearOfLastFollowup = value; + } + + /** + * Gets the value of the daysToLastFollowup property. + * + * @return + * possible object is + * {@link DaysToLastFollowup } + * + */ + public DaysToLastFollowup getDaysToLastFollowup() { + return daysToLastFollowup; + } + + /** + * Sets the value of the daysToLastFollowup property. + * + * @param value + * allowed object is + * {@link DaysToLastFollowup } + * + */ + public void setDaysToLastFollowup(DaysToLastFollowup value) { + this.daysToLastFollowup = value; + } + + /** + * Gets the value of the dayOfDeath property. + * + * @return + * possible object is + * {@link DayOfDeath } + * + */ + public DayOfDeath getDayOfDeath() { + return dayOfDeath; + } + + /** + * Sets the value of the dayOfDeath property. + * + * @param value + * allowed object is + * {@link DayOfDeath } + * + */ + public void setDayOfDeath(DayOfDeath value) { + this.dayOfDeath = value; + } + + /** + * Gets the value of the monthOfDeath property. + * + * @return + * possible object is + * {@link MonthOfDeath } + * + */ + public MonthOfDeath getMonthOfDeath() { + return monthOfDeath; + } + + /** + * Sets the value of the monthOfDeath property. + * + * @param value + * allowed object is + * {@link MonthOfDeath } + * + */ + public void setMonthOfDeath(MonthOfDeath value) { + this.monthOfDeath = value; + } + + /** + * Gets the value of the yearOfDeath property. + * + * @return + * possible object is + * {@link YearOfDeath } + * + */ + public YearOfDeath getYearOfDeath() { + return yearOfDeath; + } + + /** + * Sets the value of the yearOfDeath property. + * + * @param value + * allowed object is + * {@link YearOfDeath } + * + */ + public void setYearOfDeath(YearOfDeath value) { + this.yearOfDeath = value; + } + + /** + * Gets the value of the daysToDeath property. + * + * @return + * possible object is + * {@link DaysToDeath } + * + */ + public DaysToDeath getDaysToDeath() { + return daysToDeath; + } + + /** + * Sets the value of the daysToDeath property. + * + * @param value + * allowed object is + * {@link DaysToDeath } + * + */ + public void setDaysToDeath(DaysToDeath value) { + this.daysToDeath = value; + } + + /** + * Gets the value of the newTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link NewTumorEventAfterInitialTreatment } + * + */ + public NewTumorEventAfterInitialTreatment getNewTumorEventAfterInitialTreatment() { + return newTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the newTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link NewTumorEventAfterInitialTreatment } + * + */ + public void setNewTumorEventAfterInitialTreatment(NewTumorEventAfterInitialTreatment value) { + this.newTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public DayOfNewTumorEventAfterInitialTreatment getDayOfNewTumorEventAfterInitialTreatment() { + return dayOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public void setDayOfNewTumorEventAfterInitialTreatment(DayOfNewTumorEventAfterInitialTreatment value) { + this.dayOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public MonthOfNewTumorEventAfterInitialTreatment getMonthOfNewTumorEventAfterInitialTreatment() { + return monthOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public void setMonthOfNewTumorEventAfterInitialTreatment(MonthOfNewTumorEventAfterInitialTreatment value) { + this.monthOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public YearOfNewTumorEventAfterInitialTreatment getYearOfNewTumorEventAfterInitialTreatment() { + return yearOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public void setYearOfNewTumorEventAfterInitialTreatment(YearOfNewTumorEventAfterInitialTreatment value) { + this.yearOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public DaysToNewTumorEventAfterInitialTreatment getDaysToNewTumorEventAfterInitialTreatment() { + return daysToNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public void setDaysToNewTumorEventAfterInitialTreatment(DaysToNewTumorEventAfterInitialTreatment value) { + this.daysToNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the additionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public AdditionalSurgeryLocoregionalProcedure getAdditionalSurgeryLocoregionalProcedure() { + return additionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the additionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public void setAdditionalSurgeryLocoregionalProcedure(AdditionalSurgeryLocoregionalProcedure value) { + this.additionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the dayOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link DayOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public DayOfAdditionalSurgeryLocoregionalProcedure getDayOfAdditionalSurgeryLocoregionalProcedure() { + return dayOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the dayOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link DayOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setDayOfAdditionalSurgeryLocoregionalProcedure(DayOfAdditionalSurgeryLocoregionalProcedure value) { + this.dayOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the monthOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link MonthOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public MonthOfAdditionalSurgeryLocoregionalProcedure getMonthOfAdditionalSurgeryLocoregionalProcedure() { + return monthOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the monthOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link MonthOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setMonthOfAdditionalSurgeryLocoregionalProcedure(MonthOfAdditionalSurgeryLocoregionalProcedure value) { + this.monthOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the yearOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link YearOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public YearOfAdditionalSurgeryLocoregionalProcedure getYearOfAdditionalSurgeryLocoregionalProcedure() { + return yearOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the yearOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link YearOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setYearOfAdditionalSurgeryLocoregionalProcedure(YearOfAdditionalSurgeryLocoregionalProcedure value) { + this.yearOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the daysToAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link DaysToAdditionalSurgeryLocoregionalProcedure } + * + */ + public DaysToAdditionalSurgeryLocoregionalProcedure getDaysToAdditionalSurgeryLocoregionalProcedure() { + return daysToAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the daysToAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link DaysToAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setDaysToAdditionalSurgeryLocoregionalProcedure(DaysToAdditionalSurgeryLocoregionalProcedure value) { + this.daysToAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the personNeoplasmCancerStatus property. + * + * @return + * possible object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public PersonNeoplasmCancerStatus getPersonNeoplasmCancerStatus() { + return personNeoplasmCancerStatus; + } + + /** + * Sets the value of the personNeoplasmCancerStatus property. + * + * @param value + * allowed object is + * {@link PersonNeoplasmCancerStatus } + * + */ + public void setPersonNeoplasmCancerStatus(PersonNeoplasmCancerStatus value) { + this.personNeoplasmCancerStatus = value; + } + + /** + * Gets the value of the additionalRadiationTherapy property. + * + * @return + * possible object is + * {@link AdditionalRadiationTherapy } + * + */ + public AdditionalRadiationTherapy getAdditionalRadiationTherapy() { + return additionalRadiationTherapy; + } + + /** + * Sets the value of the additionalRadiationTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalRadiationTherapy } + * + */ + public void setAdditionalRadiationTherapy(AdditionalRadiationTherapy value) { + this.additionalRadiationTherapy = value; + } + + /** + * Gets the value of the targetedMolecularTherapy property. + * + * @return + * possible object is + * {@link TargetedMolecularTherapy } + * + */ + public TargetedMolecularTherapy getTargetedMolecularTherapy() { + return targetedMolecularTherapy; + } + + /** + * Sets the value of the targetedMolecularTherapy property. + * + * @param value + * allowed object is + * {@link TargetedMolecularTherapy } + * + */ + public void setTargetedMolecularTherapy(TargetedMolecularTherapy value) { + this.targetedMolecularTherapy = value; + } + + /** + * Gets the value of the postoperativeRxTx property. + * + * @return + * possible object is + * {@link PostoperativeRxTx } + * + */ + public PostoperativeRxTx getPostoperativeRxTx() { + return postoperativeRxTx; + } + + /** + * Sets the value of the postoperativeRxTx property. + * + * @param value + * allowed object is + * {@link PostoperativeRxTx } + * + */ + public void setPostoperativeRxTx(PostoperativeRxTx value) { + this.postoperativeRxTx = value; + } + + /** + * Gets the value of the additionalPharmaceuticalTherapy property. + * + * @return + * possible object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public AdditionalPharmaceuticalTherapy getAdditionalPharmaceuticalTherapy() { + return additionalPharmaceuticalTherapy; + } + + /** + * Sets the value of the additionalPharmaceuticalTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public void setAdditionalPharmaceuticalTherapy(AdditionalPharmaceuticalTherapy value) { + this.additionalPharmaceuticalTherapy = value; + } + + /** + * Gets the value of the additionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link AdditionalSurgeryMetastaticProcedure } + * + */ + public AdditionalSurgeryMetastaticProcedure getAdditionalSurgeryMetastaticProcedure() { + return additionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the additionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link AdditionalSurgeryMetastaticProcedure } + * + */ + public void setAdditionalSurgeryMetastaticProcedure(AdditionalSurgeryMetastaticProcedure value) { + this.additionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the dayOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public DayOfAdditionalSurgeryMetastaticProcedure getDayOfAdditionalSurgeryMetastaticProcedure() { + return dayOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the dayOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setDayOfAdditionalSurgeryMetastaticProcedure(DayOfAdditionalSurgeryMetastaticProcedure value) { + this.dayOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the monthOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public MonthOfAdditionalSurgeryMetastaticProcedure getMonthOfAdditionalSurgeryMetastaticProcedure() { + return monthOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the monthOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setMonthOfAdditionalSurgeryMetastaticProcedure(MonthOfAdditionalSurgeryMetastaticProcedure value) { + this.monthOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the yearOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public YearOfAdditionalSurgeryMetastaticProcedure getYearOfAdditionalSurgeryMetastaticProcedure() { + return yearOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the yearOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setYearOfAdditionalSurgeryMetastaticProcedure(YearOfAdditionalSurgeryMetastaticProcedure value) { + this.yearOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the daysToAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public DaysToAdditionalSurgeryMetastaticProcedure getDaysToAdditionalSurgeryMetastaticProcedure() { + return daysToAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the daysToAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public void setDaysToAdditionalSurgeryMetastaticProcedure(DaysToAdditionalSurgeryMetastaticProcedure value) { + this.daysToAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the dayOfFormCompletion property. + * + * @return + * possible object is + * {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion getDayOfFormCompletion() { + return dayOfFormCompletion; + } + + /** + * Sets the value of the dayOfFormCompletion property. + * + * @param value + * allowed object is + * {@link DayOfFormCompletion } + * + */ + public void setDayOfFormCompletion(DayOfFormCompletion value) { + this.dayOfFormCompletion = value; + } + + /** + * Gets the value of the monthOfFormCompletion property. + * + * @return + * possible object is + * {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion getMonthOfFormCompletion() { + return monthOfFormCompletion; + } + + /** + * Sets the value of the monthOfFormCompletion property. + * + * @param value + * allowed object is + * {@link MonthOfFormCompletion } + * + */ + public void setMonthOfFormCompletion(MonthOfFormCompletion value) { + this.monthOfFormCompletion = value; + } + + /** + * Gets the value of the yearOfFormCompletion property. + * + * @return + * possible object is + * {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion getYearOfFormCompletion() { + return yearOfFormCompletion; + } + + /** + * Sets the value of the yearOfFormCompletion property. + * + * @param value + * allowed object is + * {@link YearOfFormCompletion } + * + */ + public void setYearOfFormCompletion(YearOfFormCompletion value) { + this.yearOfFormCompletion = value; + } + + /** + * Gets the value of the daysToFormCompletion property. + * + * @return + * possible object is + * {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion getDaysToFormCompletion() { + return daysToFormCompletion; + } + + /** + * Sets the value of the daysToFormCompletion property. + * + * @param value + * allowed object is + * {@link DaysToFormCompletion } + * + */ + public void setDaysToFormCompletion(DaysToFormCompletion value) { + this.daysToFormCompletion = value; + } + + /** + * Gets the value of the followupCaseReportFormSubmissionReason property. + * + * @return + * possible object is + * {@link FollowupCaseReportFormSubmissionReason } + * + */ + public FollowupCaseReportFormSubmissionReason getFollowupCaseReportFormSubmissionReason() { + return followupCaseReportFormSubmissionReason; + } + + /** + * Sets the value of the followupCaseReportFormSubmissionReason property. + * + * @param value + * allowed object is + * {@link FollowupCaseReportFormSubmissionReason } + * + */ + public void setFollowupCaseReportFormSubmissionReason(FollowupCaseReportFormSubmissionReason value) { + this.followupCaseReportFormSubmissionReason = value; + } + + /** + * Gets the value of the karnofskyPerformanceScore property. + * + * @return + * possible object is + * {@link KarnofskyPerformanceScore } + * + */ + public KarnofskyPerformanceScore getKarnofskyPerformanceScore() { + return karnofskyPerformanceScore; + } + + /** + * Sets the value of the karnofskyPerformanceScore property. + * + * @param value + * allowed object is + * {@link KarnofskyPerformanceScore } + * + */ + public void setKarnofskyPerformanceScore(KarnofskyPerformanceScore value) { + this.karnofskyPerformanceScore = value; + } + + /** + * Gets the value of the easternCancerOncologyGroup property. + * + * @return + * possible object is + * {@link EasternCancerOncologyGroup } + * + */ + public EasternCancerOncologyGroup getEasternCancerOncologyGroup() { + return easternCancerOncologyGroup; + } + + /** + * Sets the value of the easternCancerOncologyGroup property. + * + * @param value + * allowed object is + * {@link EasternCancerOncologyGroup } + * + */ + public void setEasternCancerOncologyGroup(EasternCancerOncologyGroup value) { + this.easternCancerOncologyGroup = value; + } + + /** + * Gets the value of the performanceStatusScaleTiming property. + * + * @return + * possible object is + * {@link PerformanceStatusScaleTiming } + * + */ + public PerformanceStatusScaleTiming getPerformanceStatusScaleTiming() { + return performanceStatusScaleTiming; + } + + /** + * Sets the value of the performanceStatusScaleTiming property. + * + * @param value + * allowed object is + * {@link PerformanceStatusScaleTiming } + * + */ + public void setPerformanceStatusScaleTiming(PerformanceStatusScaleTiming value) { + this.performanceStatusScaleTiming = value; + } + + /** + * Gets the value of the version property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersion() { + if (version == null) { + return "1.0"; + } else { + 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 sequence property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSequence() { + return sequence; + } + + /** + * Sets the value of the sequence property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSequence(BigInteger value) { + this.sequence = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/ObjectFactory.java new file mode 100644 index 0000000..80e43c6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/ObjectFactory.java @@ -0,0 +1,47 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.followup._2_7._1; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.followup._2_7._1 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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.followup._2_7._1 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link FollowUp } + * + */ + public FollowUp createFollowUp() { + return new FollowUp(); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/package-info.java new file mode 100644 index 0000000..8ff9837 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/followup/_2_7/_1/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/kirc/followup/2.7/1.0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.followup._2_7._1; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/LocoregionalProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/LocoregionalProcedure.java new file mode 100644 index 0000000..b1a5786 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/LocoregionalProcedure.java @@ -0,0 +1,192 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfAdditionalSurgeryLocoregionalProcedure; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_surgery_locoregional_procedure"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_additional_surgery_locoregional_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_additional_surgery_locoregional_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_additional_surgery_locoregional_procedure"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_additional_surgery_locoregional_procedure"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "additionalSurgeryLocoregionalProcedure", + "dayOfAdditionalSurgeryLocoregionalProcedure", + "monthOfAdditionalSurgeryLocoregionalProcedure", + "yearOfAdditionalSurgeryLocoregionalProcedure", + "daysToAdditionalSurgeryLocoregionalProcedure" +}) +@XmlRootElement(name = "locoregional_procedure") +public class LocoregionalProcedure { + + @XmlElement(name = "additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalSurgeryLocoregionalProcedure additionalSurgeryLocoregionalProcedure; + @XmlElement(name = "day_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfAdditionalSurgeryLocoregionalProcedure dayOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "month_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfAdditionalSurgeryLocoregionalProcedure monthOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "year_of_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfAdditionalSurgeryLocoregionalProcedure yearOfAdditionalSurgeryLocoregionalProcedure; + @XmlElement(name = "days_to_additional_surgery_locoregional_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToAdditionalSurgeryLocoregionalProcedure daysToAdditionalSurgeryLocoregionalProcedure; + + /** + * Gets the value of the additionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public AdditionalSurgeryLocoregionalProcedure getAdditionalSurgeryLocoregionalProcedure() { + return additionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the additionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public void setAdditionalSurgeryLocoregionalProcedure(AdditionalSurgeryLocoregionalProcedure value) { + this.additionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the dayOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link DayOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public DayOfAdditionalSurgeryLocoregionalProcedure getDayOfAdditionalSurgeryLocoregionalProcedure() { + return dayOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the dayOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link DayOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setDayOfAdditionalSurgeryLocoregionalProcedure(DayOfAdditionalSurgeryLocoregionalProcedure value) { + this.dayOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the monthOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link MonthOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public MonthOfAdditionalSurgeryLocoregionalProcedure getMonthOfAdditionalSurgeryLocoregionalProcedure() { + return monthOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the monthOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link MonthOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setMonthOfAdditionalSurgeryLocoregionalProcedure(MonthOfAdditionalSurgeryLocoregionalProcedure value) { + this.monthOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the yearOfAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link YearOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public YearOfAdditionalSurgeryLocoregionalProcedure getYearOfAdditionalSurgeryLocoregionalProcedure() { + return yearOfAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the yearOfAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link YearOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setYearOfAdditionalSurgeryLocoregionalProcedure(YearOfAdditionalSurgeryLocoregionalProcedure value) { + this.yearOfAdditionalSurgeryLocoregionalProcedure = value; + } + + /** + * Gets the value of the daysToAdditionalSurgeryLocoregionalProcedure property. + * + * @return + * possible object is + * {@link DaysToAdditionalSurgeryLocoregionalProcedure } + * + */ + public DaysToAdditionalSurgeryLocoregionalProcedure getDaysToAdditionalSurgeryLocoregionalProcedure() { + return daysToAdditionalSurgeryLocoregionalProcedure; + } + + /** + * Sets the value of the daysToAdditionalSurgeryLocoregionalProcedure property. + * + * @param value + * allowed object is + * {@link DaysToAdditionalSurgeryLocoregionalProcedure } + * + */ + public void setDaysToAdditionalSurgeryLocoregionalProcedure(DaysToAdditionalSurgeryLocoregionalProcedure value) { + this.daysToAdditionalSurgeryLocoregionalProcedure = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/MetastaticProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/MetastaticProcedure.java new file mode 100644 index 0000000..0a79a12 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/MetastaticProcedure.java @@ -0,0 +1,192 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfAdditionalSurgeryMetastaticProcedure; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_surgery_metastatic_procedure"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_additional_surgery_metastatic_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_additional_surgery_metastatic_procedure"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_additional_surgery_metastatic_procedure"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_additional_surgery_metastatic_procedure"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "additionalSurgeryMetastaticProcedure", + "dayOfAdditionalSurgeryMetastaticProcedure", + "monthOfAdditionalSurgeryMetastaticProcedure", + "yearOfAdditionalSurgeryMetastaticProcedure", + "daysToAdditionalSurgeryMetastaticProcedure" +}) +@XmlRootElement(name = "metastatic_procedure") +public class MetastaticProcedure { + + @XmlElement(name = "additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalSurgeryMetastaticProcedure additionalSurgeryMetastaticProcedure; + @XmlElement(name = "day_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfAdditionalSurgeryMetastaticProcedure dayOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "month_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfAdditionalSurgeryMetastaticProcedure monthOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "year_of_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfAdditionalSurgeryMetastaticProcedure yearOfAdditionalSurgeryMetastaticProcedure; + @XmlElement(name = "days_to_additional_surgery_metastatic_procedure", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToAdditionalSurgeryMetastaticProcedure daysToAdditionalSurgeryMetastaticProcedure; + + /** + * Gets the value of the additionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link AdditionalSurgeryMetastaticProcedure } + * + */ + public AdditionalSurgeryMetastaticProcedure getAdditionalSurgeryMetastaticProcedure() { + return additionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the additionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link AdditionalSurgeryMetastaticProcedure } + * + */ + public void setAdditionalSurgeryMetastaticProcedure(AdditionalSurgeryMetastaticProcedure value) { + this.additionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the dayOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public DayOfAdditionalSurgeryMetastaticProcedure getDayOfAdditionalSurgeryMetastaticProcedure() { + return dayOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the dayOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setDayOfAdditionalSurgeryMetastaticProcedure(DayOfAdditionalSurgeryMetastaticProcedure value) { + this.dayOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the monthOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public MonthOfAdditionalSurgeryMetastaticProcedure getMonthOfAdditionalSurgeryMetastaticProcedure() { + return monthOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the monthOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setMonthOfAdditionalSurgeryMetastaticProcedure(MonthOfAdditionalSurgeryMetastaticProcedure value) { + this.monthOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the yearOfAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public YearOfAdditionalSurgeryMetastaticProcedure getYearOfAdditionalSurgeryMetastaticProcedure() { + return yearOfAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the yearOfAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public void setYearOfAdditionalSurgeryMetastaticProcedure(YearOfAdditionalSurgeryMetastaticProcedure value) { + this.yearOfAdditionalSurgeryMetastaticProcedure = value; + } + + /** + * Gets the value of the daysToAdditionalSurgeryMetastaticProcedure property. + * + * @return + * possible object is + * {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public DaysToAdditionalSurgeryMetastaticProcedure getDaysToAdditionalSurgeryMetastaticProcedure() { + return daysToAdditionalSurgeryMetastaticProcedure; + } + + /** + * Sets the value of the daysToAdditionalSurgeryMetastaticProcedure property. + * + * @param value + * allowed object is + * {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public void setDaysToAdditionalSurgeryMetastaticProcedure(DaysToAdditionalSurgeryMetastaticProcedure value) { + this.daysToAdditionalSurgeryMetastaticProcedure = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/NewTumorEvent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/NewTumorEvent.java new file mode 100644 index 0000000..e2da751 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/NewTumorEvent.java @@ -0,0 +1,277 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalPharmaceuticalTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.AdditionalRadiationTherapy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DayOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.MonthOfNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.YearOfNewTumorEventAfterInitialTreatment; + + +/** + *

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>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}day_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}month_of_new_tumor_event_after_initial_treatment"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}year_of_new_tumor_event_after_initial_treatment"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}days_to_new_tumor_event_after_initial_treatment"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/kirc/shared/new_tumor_event/2.7/1.0}locoregional_procedure"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/kirc/shared/new_tumor_event/2.7/1.0}metastatic_procedure"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_radiation_therapy"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}additional_pharmaceutical_therapy"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "dayOfNewTumorEventAfterInitialTreatment", + "monthOfNewTumorEventAfterInitialTreatment", + "yearOfNewTumorEventAfterInitialTreatment", + "daysToNewTumorEventAfterInitialTreatment", + "locoregionalProcedure", + "metastaticProcedure", + "additionalRadiationTherapy", + "additionalPharmaceuticalTherapy" +}) +@XmlRootElement(name = "new_tumor_event") +public class NewTumorEvent { + + @XmlElement(name = "day_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected DayOfNewTumorEventAfterInitialTreatment dayOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "month_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected MonthOfNewTumorEventAfterInitialTreatment monthOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "year_of_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", nillable = true) + protected YearOfNewTumorEventAfterInitialTreatment yearOfNewTumorEventAfterInitialTreatment; + @XmlElement(name = "days_to_new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") + protected DaysToNewTumorEventAfterInitialTreatment daysToNewTumorEventAfterInitialTreatment; + @XmlElement(name = "locoregional_procedure", required = true) + protected LocoregionalProcedure locoregionalProcedure; + @XmlElement(name = "metastatic_procedure", required = true) + protected MetastaticProcedure metastaticProcedure; + @XmlElement(name = "additional_radiation_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalRadiationTherapy additionalRadiationTherapy; + @XmlElement(name = "additional_pharmaceutical_therapy", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected AdditionalPharmaceuticalTherapy additionalPharmaceuticalTherapy; + + /** + * Gets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public DayOfNewTumorEventAfterInitialTreatment getDayOfNewTumorEventAfterInitialTreatment() { + return dayOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the dayOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public void setDayOfNewTumorEventAfterInitialTreatment(DayOfNewTumorEventAfterInitialTreatment value) { + this.dayOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public MonthOfNewTumorEventAfterInitialTreatment getMonthOfNewTumorEventAfterInitialTreatment() { + return monthOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the monthOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public void setMonthOfNewTumorEventAfterInitialTreatment(MonthOfNewTumorEventAfterInitialTreatment value) { + this.monthOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public YearOfNewTumorEventAfterInitialTreatment getYearOfNewTumorEventAfterInitialTreatment() { + return yearOfNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the yearOfNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public void setYearOfNewTumorEventAfterInitialTreatment(YearOfNewTumorEventAfterInitialTreatment value) { + this.yearOfNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public DaysToNewTumorEventAfterInitialTreatment getDaysToNewTumorEventAfterInitialTreatment() { + return daysToNewTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the daysToNewTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public void setDaysToNewTumorEventAfterInitialTreatment(DaysToNewTumorEventAfterInitialTreatment value) { + this.daysToNewTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the locoregionalProcedure property. + * + * @return + * possible object is + * {@link LocoregionalProcedure } + * + */ + public LocoregionalProcedure getLocoregionalProcedure() { + return locoregionalProcedure; + } + + /** + * Sets the value of the locoregionalProcedure property. + * + * @param value + * allowed object is + * {@link LocoregionalProcedure } + * + */ + public void setLocoregionalProcedure(LocoregionalProcedure value) { + this.locoregionalProcedure = value; + } + + /** + * Gets the value of the metastaticProcedure property. + * + * @return + * possible object is + * {@link MetastaticProcedure } + * + */ + public MetastaticProcedure getMetastaticProcedure() { + return metastaticProcedure; + } + + /** + * Sets the value of the metastaticProcedure property. + * + * @param value + * allowed object is + * {@link MetastaticProcedure } + * + */ + public void setMetastaticProcedure(MetastaticProcedure value) { + this.metastaticProcedure = value; + } + + /** + * Gets the value of the additionalRadiationTherapy property. + * + * @return + * possible object is + * {@link AdditionalRadiationTherapy } + * + */ + public AdditionalRadiationTherapy getAdditionalRadiationTherapy() { + return additionalRadiationTherapy; + } + + /** + * Sets the value of the additionalRadiationTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalRadiationTherapy } + * + */ + public void setAdditionalRadiationTherapy(AdditionalRadiationTherapy value) { + this.additionalRadiationTherapy = value; + } + + /** + * Gets the value of the additionalPharmaceuticalTherapy property. + * + * @return + * possible object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public AdditionalPharmaceuticalTherapy getAdditionalPharmaceuticalTherapy() { + return additionalPharmaceuticalTherapy; + } + + /** + * Sets the value of the additionalPharmaceuticalTherapy property. + * + * @param value + * allowed object is + * {@link AdditionalPharmaceuticalTherapy } + * + */ + public void setAdditionalPharmaceuticalTherapy(AdditionalPharmaceuticalTherapy value) { + this.additionalPharmaceuticalTherapy = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/NewTumorEvents.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/NewTumorEvents.java new file mode 100644 index 0000000..a5d9c1f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/NewTumorEvents.java @@ -0,0 +1,107 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewTumorEventAfterInitialTreatment; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7}new_tumor_event_after_initial_treatment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/kirc/shared/new_tumor_event/2.7/1.0}new_tumor_event" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "newTumorEventAfterInitialTreatment", + "newTumorEvent" +}) +@XmlRootElement(name = "new_tumor_events") +public class NewTumorEvents { + + @XmlElement(name = "new_tumor_event_after_initial_treatment", namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", required = true, nillable = true) + protected NewTumorEventAfterInitialTreatment newTumorEventAfterInitialTreatment; + @XmlElement(name = "new_tumor_event") + protected List newTumorEvent; + + /** + * Gets the value of the newTumorEventAfterInitialTreatment property. + * + * @return + * possible object is + * {@link NewTumorEventAfterInitialTreatment } + * + */ + public NewTumorEventAfterInitialTreatment getNewTumorEventAfterInitialTreatment() { + return newTumorEventAfterInitialTreatment; + } + + /** + * Sets the value of the newTumorEventAfterInitialTreatment property. + * + * @param value + * allowed object is + * {@link NewTumorEventAfterInitialTreatment } + * + */ + public void setNewTumorEventAfterInitialTreatment(NewTumorEventAfterInitialTreatment value) { + this.newTumorEventAfterInitialTreatment = value; + } + + /** + * Gets the value of the newTumorEvent 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 newTumorEvent property. + * + *

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

+     *    getNewTumorEvent().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link NewTumorEvent } + * + * + */ + public List getNewTumorEvent() { + if (newTumorEvent == null) { + newTumorEvent = new ArrayList(); + } + return this.newTumorEvent; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/ObjectFactory.java new file mode 100644 index 0000000..53c3c44 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/ObjectFactory.java @@ -0,0 +1,71 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1 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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link NewTumorEvents } + * + */ + public NewTumorEvents createNewTumorEvents() { + return new NewTumorEvents(); + } + + /** + * Create an instance of {@link NewTumorEvent } + * + */ + public NewTumorEvent createNewTumorEvent() { + return new NewTumorEvent(); + } + + /** + * Create an instance of {@link LocoregionalProcedure } + * + */ + public LocoregionalProcedure createLocoregionalProcedure() { + return new LocoregionalProcedure(); + } + + /** + * Create an instance of {@link MetastaticProcedure } + * + */ + public MetastaticProcedure createMetastaticProcedure() { + return new MetastaticProcedure(); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/package-info.java new file mode 100644 index 0000000..46ae258 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/kirc/shared/new_tumor_event/_2_7/_1/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/kirc/shared/new_tumor_event/2.7/1.0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.kirc.shared.new_tumor_event._2_7._1; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/BcrDrugBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/BcrDrugBarcode.java new file mode 100644 index 0000000..cd42ed5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/BcrDrugBarcode.java @@ -0,0 +1,331 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.15" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_drug_barcode") +public class BcrDrugBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.15"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/BcrDrugUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/BcrDrugUuid.java new file mode 100644 index 0000000..5b780e2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/BcrDrugUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_drug_uuid") +public class BcrDrugUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/ClinicalTrailDrugClassification.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/ClinicalTrailDrugClassification.java new file mode 100644 index 0000000..e8f96d0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/ClinicalTrailDrugClassification.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3378323" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "clinical_trail_drug_classification") +public class ClinicalTrailDrugClassification { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3378323"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DayOfDrugTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DayOfDrugTherapyEnd.java new file mode 100644 index 0000000..a088e65 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DayOfDrugTherapyEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103078" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_drug_therapy_end") +public class DayOfDrugTherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3103078"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DayOfDrugTherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DayOfDrugTherapyStart.java new file mode 100644 index 0000000..fd7c58e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DayOfDrugTherapyStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103070" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_drug_therapy_start") +public class DayOfDrugTherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3103070"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DaysToDrugTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DaysToDrugTherapyEnd.java new file mode 100644 index 0000000..23b9e0e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DaysToDrugTherapyEnd.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3392470" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_drug_therapy_end") +public class DaysToDrugTherapyEnd + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DaysToDrugTherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DaysToDrugTherapyStart.java new file mode 100644 index 0000000..62fb2e2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DaysToDrugTherapyStart.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3392465" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_drug_therapy_start") +public class DaysToDrugTherapyStart + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/Drug.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/Drug.java new file mode 100644 index 0000000..f686861 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/Drug.java @@ -0,0 +1,1136 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MeasureOfResponse; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PharmRegimen; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PharmRegimenOther; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RegimenIndication; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RegimenIndicationNotes; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.DayOfStemCellTransplantation; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.DaysToStemCellTransplantation; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.MonthOfStemCellTransplantation; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.YearOfStemCellTransplantation; + + +/** + *

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://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}tx_on_clinical_trial"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}regimen_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}bcr_drug_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}bcr_drug_uuid"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}total_dose"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}total_dose_units"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}prescribed_dose"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}prescribed_dose_units"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}number_cycles"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}day_of_drug_therapy_start"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}month_of_drug_therapy_start"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}year_of_drug_therapy_start"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}days_to_drug_therapy_start"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}day_of_drug_therapy_end"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}month_of_drug_therapy_end"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}year_of_drug_therapy_end"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}days_to_drug_therapy_end"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}history_prior_systemic_therapy" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}therapy_types"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}drug_name"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}clinical_trail_drug_classification"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}stem_cell_transplantation" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}stem_cell_transplantation_type" minOccurs="0"/>
+ *         <choice minOccurs="0">
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7}day_of_stem_cell_transplantation"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7}month_of_stem_cell_transplantation"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7}year_of_stem_cell_transplantation"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7}days_to_stem_cell_transplantation"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}pharm_regimen" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}pharm_regimen_other" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}regimen_indication"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}regimen_indication_notes"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}route_of_administrations"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}therapy_ongoing"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}measure_of_response"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_form_completion"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_form_completion"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "txOnClinicalTrial", + "regimenNumber", + "bcrDrugBarcode", + "bcrDrugUuid", + "totalDose", + "totalDoseUnits", + "prescribedDose", + "prescribedDoseUnits", + "numberCycles", + "dayOfDrugTherapyStart", + "monthOfDrugTherapyStart", + "yearOfDrugTherapyStart", + "daysToDrugTherapyStart", + "dayOfDrugTherapyEnd", + "monthOfDrugTherapyEnd", + "yearOfDrugTherapyEnd", + "daysToDrugTherapyEnd", + "historyPriorSystemicTherapy", + "therapyTypes", + "drugName", + "clinicalTrailDrugClassification", + "stemCellTransplantation", + "stemCellTransplantationType", + "dayOfStemCellTransplantation", + "monthOfStemCellTransplantation", + "yearOfStemCellTransplantation", + "daysToStemCellTransplantation", + "pharmRegimen", + "pharmRegimenOther", + "regimenIndication", + "regimenIndicationNotes", + "routeOfAdministrations", + "therapyOngoing", + "measureOfResponse", + "dayOfFormCompletion", + "monthOfFormCompletion", + "yearOfFormCompletion", + "daysToFormCompletion" +}) +@XmlRootElement(name = "drug") +public class Drug { + + @XmlElement(name = "tx_on_clinical_trial", required = true) + protected TxOnClinicalTrial txOnClinicalTrial; + @XmlElement(name = "regimen_number", required = true) + protected RegimenNumber regimenNumber; + @XmlElement(name = "bcr_drug_barcode", required = true) + protected BcrDrugBarcode bcrDrugBarcode; + @XmlElement(name = "bcr_drug_uuid", required = true) + protected BcrDrugUuid bcrDrugUuid; + @XmlElement(name = "total_dose", required = true) + protected TotalDose totalDose; + @XmlElement(name = "total_dose_units", required = true) + protected TotalDoseUnits totalDoseUnits; + @XmlElement(name = "prescribed_dose", required = true) + protected PrescribedDose prescribedDose; + @XmlElement(name = "prescribed_dose_units", required = true) + protected PrescribedDoseUnits prescribedDoseUnits; + @XmlElement(name = "number_cycles", required = true) + protected NumberCycles numberCycles; + @XmlElement(name = "day_of_drug_therapy_start") + protected DayOfDrugTherapyStart dayOfDrugTherapyStart; + @XmlElement(name = "month_of_drug_therapy_start") + protected MonthOfDrugTherapyStart monthOfDrugTherapyStart; + @XmlElement(name = "year_of_drug_therapy_start") + protected YearOfDrugTherapyStart yearOfDrugTherapyStart; + @XmlElement(name = "days_to_drug_therapy_start") + protected DaysToDrugTherapyStart daysToDrugTherapyStart; + @XmlElement(name = "day_of_drug_therapy_end") + protected DayOfDrugTherapyEnd dayOfDrugTherapyEnd; + @XmlElement(name = "month_of_drug_therapy_end") + protected MonthOfDrugTherapyEnd monthOfDrugTherapyEnd; + @XmlElement(name = "year_of_drug_therapy_end") + protected YearOfDrugTherapyEnd yearOfDrugTherapyEnd; + @XmlElement(name = "days_to_drug_therapy_end") + protected DaysToDrugTherapyEnd daysToDrugTherapyEnd; + @XmlElement(name = "history_prior_systemic_therapy", nillable = true) + protected HistoryPriorSystemicTherapy historyPriorSystemicTherapy; + @XmlElement(name = "therapy_types", required = true) + protected TherapyTypes therapyTypes; + @XmlElement(name = "drug_name", required = true) + protected DrugName drugName; + @XmlElement(name = "clinical_trail_drug_classification", required = true) + protected ClinicalTrailDrugClassification clinicalTrailDrugClassification; + @XmlElement(name = "stem_cell_transplantation") + protected StemCellTransplantation stemCellTransplantation; + @XmlElement(name = "stem_cell_transplantation_type") + protected StemCellTransplantationType stemCellTransplantationType; + @XmlElement(name = "day_of_stem_cell_transplantation", namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7") + protected DayOfStemCellTransplantation dayOfStemCellTransplantation; + @XmlElement(name = "month_of_stem_cell_transplantation", namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7") + protected MonthOfStemCellTransplantation monthOfStemCellTransplantation; + @XmlElement(name = "year_of_stem_cell_transplantation", namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7") + protected YearOfStemCellTransplantation yearOfStemCellTransplantation; + @XmlElement(name = "days_to_stem_cell_transplantation", namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7") + protected DaysToStemCellTransplantation daysToStemCellTransplantation; + @XmlElement(name = "pharm_regimen", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected PharmRegimen pharmRegimen; + @XmlElement(name = "pharm_regimen_other", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected PharmRegimenOther pharmRegimenOther; + @XmlElement(name = "regimen_indication", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RegimenIndication regimenIndication; + @XmlElement(name = "regimen_indication_notes", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RegimenIndicationNotes regimenIndicationNotes; + @XmlElement(name = "route_of_administrations", required = true) + protected RouteOfAdministrations routeOfAdministrations; + @XmlElement(name = "therapy_ongoing", required = true) + protected TherapyOngoing therapyOngoing; + @XmlElement(name = "measure_of_response", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected MeasureOfResponse measureOfResponse; + @XmlElement(name = "day_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfFormCompletion dayOfFormCompletion; + @XmlElement(name = "month_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfFormCompletion monthOfFormCompletion; + @XmlElement(name = "year_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfFormCompletion yearOfFormCompletion; + @XmlElement(name = "days_to_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToFormCompletion daysToFormCompletion; + + /** + * Gets the value of the txOnClinicalTrial property. + * + * @return + * possible object is + * {@link TxOnClinicalTrial } + * + */ + public TxOnClinicalTrial getTxOnClinicalTrial() { + return txOnClinicalTrial; + } + + /** + * Sets the value of the txOnClinicalTrial property. + * + * @param value + * allowed object is + * {@link TxOnClinicalTrial } + * + */ + public void setTxOnClinicalTrial(TxOnClinicalTrial value) { + this.txOnClinicalTrial = value; + } + + /** + * Gets the value of the regimenNumber property. + * + * @return + * possible object is + * {@link RegimenNumber } + * + */ + public RegimenNumber getRegimenNumber() { + return regimenNumber; + } + + /** + * Sets the value of the regimenNumber property. + * + * @param value + * allowed object is + * {@link RegimenNumber } + * + */ + public void setRegimenNumber(RegimenNumber value) { + this.regimenNumber = value; + } + + /** + * Gets the value of the bcrDrugBarcode property. + * + * @return + * possible object is + * {@link BcrDrugBarcode } + * + */ + public BcrDrugBarcode getBcrDrugBarcode() { + return bcrDrugBarcode; + } + + /** + * Sets the value of the bcrDrugBarcode property. + * + * @param value + * allowed object is + * {@link BcrDrugBarcode } + * + */ + public void setBcrDrugBarcode(BcrDrugBarcode value) { + this.bcrDrugBarcode = value; + } + + /** + * Gets the value of the bcrDrugUuid property. + * + * @return + * possible object is + * {@link BcrDrugUuid } + * + */ + public BcrDrugUuid getBcrDrugUuid() { + return bcrDrugUuid; + } + + /** + * Sets the value of the bcrDrugUuid property. + * + * @param value + * allowed object is + * {@link BcrDrugUuid } + * + */ + public void setBcrDrugUuid(BcrDrugUuid value) { + this.bcrDrugUuid = value; + } + + /** + * Gets the value of the totalDose property. + * + * @return + * possible object is + * {@link TotalDose } + * + */ + public TotalDose getTotalDose() { + return totalDose; + } + + /** + * Sets the value of the totalDose property. + * + * @param value + * allowed object is + * {@link TotalDose } + * + */ + public void setTotalDose(TotalDose value) { + this.totalDose = value; + } + + /** + * Gets the value of the totalDoseUnits property. + * + * @return + * possible object is + * {@link TotalDoseUnits } + * + */ + public TotalDoseUnits getTotalDoseUnits() { + return totalDoseUnits; + } + + /** + * Sets the value of the totalDoseUnits property. + * + * @param value + * allowed object is + * {@link TotalDoseUnits } + * + */ + public void setTotalDoseUnits(TotalDoseUnits value) { + this.totalDoseUnits = value; + } + + /** + * Gets the value of the prescribedDose property. + * + * @return + * possible object is + * {@link PrescribedDose } + * + */ + public PrescribedDose getPrescribedDose() { + return prescribedDose; + } + + /** + * Sets the value of the prescribedDose property. + * + * @param value + * allowed object is + * {@link PrescribedDose } + * + */ + public void setPrescribedDose(PrescribedDose value) { + this.prescribedDose = value; + } + + /** + * Gets the value of the prescribedDoseUnits property. + * + * @return + * possible object is + * {@link PrescribedDoseUnits } + * + */ + public PrescribedDoseUnits getPrescribedDoseUnits() { + return prescribedDoseUnits; + } + + /** + * Sets the value of the prescribedDoseUnits property. + * + * @param value + * allowed object is + * {@link PrescribedDoseUnits } + * + */ + public void setPrescribedDoseUnits(PrescribedDoseUnits value) { + this.prescribedDoseUnits = value; + } + + /** + * Gets the value of the numberCycles property. + * + * @return + * possible object is + * {@link NumberCycles } + * + */ + public NumberCycles getNumberCycles() { + return numberCycles; + } + + /** + * Sets the value of the numberCycles property. + * + * @param value + * allowed object is + * {@link NumberCycles } + * + */ + public void setNumberCycles(NumberCycles value) { + this.numberCycles = value; + } + + /** + * Gets the value of the dayOfDrugTherapyStart property. + * + * @return + * possible object is + * {@link DayOfDrugTherapyStart } + * + */ + public DayOfDrugTherapyStart getDayOfDrugTherapyStart() { + return dayOfDrugTherapyStart; + } + + /** + * Sets the value of the dayOfDrugTherapyStart property. + * + * @param value + * allowed object is + * {@link DayOfDrugTherapyStart } + * + */ + public void setDayOfDrugTherapyStart(DayOfDrugTherapyStart value) { + this.dayOfDrugTherapyStart = value; + } + + /** + * Gets the value of the monthOfDrugTherapyStart property. + * + * @return + * possible object is + * {@link MonthOfDrugTherapyStart } + * + */ + public MonthOfDrugTherapyStart getMonthOfDrugTherapyStart() { + return monthOfDrugTherapyStart; + } + + /** + * Sets the value of the monthOfDrugTherapyStart property. + * + * @param value + * allowed object is + * {@link MonthOfDrugTherapyStart } + * + */ + public void setMonthOfDrugTherapyStart(MonthOfDrugTherapyStart value) { + this.monthOfDrugTherapyStart = value; + } + + /** + * Gets the value of the yearOfDrugTherapyStart property. + * + * @return + * possible object is + * {@link YearOfDrugTherapyStart } + * + */ + public YearOfDrugTherapyStart getYearOfDrugTherapyStart() { + return yearOfDrugTherapyStart; + } + + /** + * Sets the value of the yearOfDrugTherapyStart property. + * + * @param value + * allowed object is + * {@link YearOfDrugTherapyStart } + * + */ + public void setYearOfDrugTherapyStart(YearOfDrugTherapyStart value) { + this.yearOfDrugTherapyStart = value; + } + + /** + * Gets the value of the daysToDrugTherapyStart property. + * + * @return + * possible object is + * {@link DaysToDrugTherapyStart } + * + */ + public DaysToDrugTherapyStart getDaysToDrugTherapyStart() { + return daysToDrugTherapyStart; + } + + /** + * Sets the value of the daysToDrugTherapyStart property. + * + * @param value + * allowed object is + * {@link DaysToDrugTherapyStart } + * + */ + public void setDaysToDrugTherapyStart(DaysToDrugTherapyStart value) { + this.daysToDrugTherapyStart = value; + } + + /** + * Gets the value of the dayOfDrugTherapyEnd property. + * + * @return + * possible object is + * {@link DayOfDrugTherapyEnd } + * + */ + public DayOfDrugTherapyEnd getDayOfDrugTherapyEnd() { + return dayOfDrugTherapyEnd; + } + + /** + * Sets the value of the dayOfDrugTherapyEnd property. + * + * @param value + * allowed object is + * {@link DayOfDrugTherapyEnd } + * + */ + public void setDayOfDrugTherapyEnd(DayOfDrugTherapyEnd value) { + this.dayOfDrugTherapyEnd = value; + } + + /** + * Gets the value of the monthOfDrugTherapyEnd property. + * + * @return + * possible object is + * {@link MonthOfDrugTherapyEnd } + * + */ + public MonthOfDrugTherapyEnd getMonthOfDrugTherapyEnd() { + return monthOfDrugTherapyEnd; + } + + /** + * Sets the value of the monthOfDrugTherapyEnd property. + * + * @param value + * allowed object is + * {@link MonthOfDrugTherapyEnd } + * + */ + public void setMonthOfDrugTherapyEnd(MonthOfDrugTherapyEnd value) { + this.monthOfDrugTherapyEnd = value; + } + + /** + * Gets the value of the yearOfDrugTherapyEnd property. + * + * @return + * possible object is + * {@link YearOfDrugTherapyEnd } + * + */ + public YearOfDrugTherapyEnd getYearOfDrugTherapyEnd() { + return yearOfDrugTherapyEnd; + } + + /** + * Sets the value of the yearOfDrugTherapyEnd property. + * + * @param value + * allowed object is + * {@link YearOfDrugTherapyEnd } + * + */ + public void setYearOfDrugTherapyEnd(YearOfDrugTherapyEnd value) { + this.yearOfDrugTherapyEnd = value; + } + + /** + * Gets the value of the daysToDrugTherapyEnd property. + * + * @return + * possible object is + * {@link DaysToDrugTherapyEnd } + * + */ + public DaysToDrugTherapyEnd getDaysToDrugTherapyEnd() { + return daysToDrugTherapyEnd; + } + + /** + * Sets the value of the daysToDrugTherapyEnd property. + * + * @param value + * allowed object is + * {@link DaysToDrugTherapyEnd } + * + */ + public void setDaysToDrugTherapyEnd(DaysToDrugTherapyEnd value) { + this.daysToDrugTherapyEnd = value; + } + + /** + * Gets the value of the historyPriorSystemicTherapy property. + * + * @return + * possible object is + * {@link HistoryPriorSystemicTherapy } + * + */ + public HistoryPriorSystemicTherapy getHistoryPriorSystemicTherapy() { + return historyPriorSystemicTherapy; + } + + /** + * Sets the value of the historyPriorSystemicTherapy property. + * + * @param value + * allowed object is + * {@link HistoryPriorSystemicTherapy } + * + */ + public void setHistoryPriorSystemicTherapy(HistoryPriorSystemicTherapy value) { + this.historyPriorSystemicTherapy = value; + } + + /** + * Gets the value of the therapyTypes property. + * + * @return + * possible object is + * {@link TherapyTypes } + * + */ + public TherapyTypes getTherapyTypes() { + return therapyTypes; + } + + /** + * Sets the value of the therapyTypes property. + * + * @param value + * allowed object is + * {@link TherapyTypes } + * + */ + public void setTherapyTypes(TherapyTypes value) { + this.therapyTypes = value; + } + + /** + * Gets the value of the drugName property. + * + * @return + * possible object is + * {@link DrugName } + * + */ + public DrugName getDrugName() { + return drugName; + } + + /** + * Sets the value of the drugName property. + * + * @param value + * allowed object is + * {@link DrugName } + * + */ + public void setDrugName(DrugName value) { + this.drugName = value; + } + + /** + * Gets the value of the clinicalTrailDrugClassification property. + * + * @return + * possible object is + * {@link ClinicalTrailDrugClassification } + * + */ + public ClinicalTrailDrugClassification getClinicalTrailDrugClassification() { + return clinicalTrailDrugClassification; + } + + /** + * Sets the value of the clinicalTrailDrugClassification property. + * + * @param value + * allowed object is + * {@link ClinicalTrailDrugClassification } + * + */ + public void setClinicalTrailDrugClassification(ClinicalTrailDrugClassification value) { + this.clinicalTrailDrugClassification = value; + } + + /** + * Gets the value of the stemCellTransplantation property. + * + * @return + * possible object is + * {@link StemCellTransplantation } + * + */ + public StemCellTransplantation getStemCellTransplantation() { + return stemCellTransplantation; + } + + /** + * Sets the value of the stemCellTransplantation property. + * + * @param value + * allowed object is + * {@link StemCellTransplantation } + * + */ + public void setStemCellTransplantation(StemCellTransplantation value) { + this.stemCellTransplantation = value; + } + + /** + * Gets the value of the stemCellTransplantationType property. + * + * @return + * possible object is + * {@link StemCellTransplantationType } + * + */ + public StemCellTransplantationType getStemCellTransplantationType() { + return stemCellTransplantationType; + } + + /** + * Sets the value of the stemCellTransplantationType property. + * + * @param value + * allowed object is + * {@link StemCellTransplantationType } + * + */ + public void setStemCellTransplantationType(StemCellTransplantationType value) { + this.stemCellTransplantationType = value; + } + + /** + * Gets the value of the dayOfStemCellTransplantation property. + * + * @return + * possible object is + * {@link DayOfStemCellTransplantation } + * + */ + public DayOfStemCellTransplantation getDayOfStemCellTransplantation() { + return dayOfStemCellTransplantation; + } + + /** + * Sets the value of the dayOfStemCellTransplantation property. + * + * @param value + * allowed object is + * {@link DayOfStemCellTransplantation } + * + */ + public void setDayOfStemCellTransplantation(DayOfStemCellTransplantation value) { + this.dayOfStemCellTransplantation = value; + } + + /** + * Gets the value of the monthOfStemCellTransplantation property. + * + * @return + * possible object is + * {@link MonthOfStemCellTransplantation } + * + */ + public MonthOfStemCellTransplantation getMonthOfStemCellTransplantation() { + return monthOfStemCellTransplantation; + } + + /** + * Sets the value of the monthOfStemCellTransplantation property. + * + * @param value + * allowed object is + * {@link MonthOfStemCellTransplantation } + * + */ + public void setMonthOfStemCellTransplantation(MonthOfStemCellTransplantation value) { + this.monthOfStemCellTransplantation = value; + } + + /** + * Gets the value of the yearOfStemCellTransplantation property. + * + * @return + * possible object is + * {@link YearOfStemCellTransplantation } + * + */ + public YearOfStemCellTransplantation getYearOfStemCellTransplantation() { + return yearOfStemCellTransplantation; + } + + /** + * Sets the value of the yearOfStemCellTransplantation property. + * + * @param value + * allowed object is + * {@link YearOfStemCellTransplantation } + * + */ + public void setYearOfStemCellTransplantation(YearOfStemCellTransplantation value) { + this.yearOfStemCellTransplantation = value; + } + + /** + * Gets the value of the daysToStemCellTransplantation property. + * + * @return + * possible object is + * {@link DaysToStemCellTransplantation } + * + */ + public DaysToStemCellTransplantation getDaysToStemCellTransplantation() { + return daysToStemCellTransplantation; + } + + /** + * Sets the value of the daysToStemCellTransplantation property. + * + * @param value + * allowed object is + * {@link DaysToStemCellTransplantation } + * + */ + public void setDaysToStemCellTransplantation(DaysToStemCellTransplantation value) { + this.daysToStemCellTransplantation = value; + } + + /** + * Gets the value of the pharmRegimen property. + * + * @return + * possible object is + * {@link PharmRegimen } + * + */ + public PharmRegimen getPharmRegimen() { + return pharmRegimen; + } + + /** + * Sets the value of the pharmRegimen property. + * + * @param value + * allowed object is + * {@link PharmRegimen } + * + */ + public void setPharmRegimen(PharmRegimen value) { + this.pharmRegimen = value; + } + + /** + * Gets the value of the pharmRegimenOther property. + * + * @return + * possible object is + * {@link PharmRegimenOther } + * + */ + public PharmRegimenOther getPharmRegimenOther() { + return pharmRegimenOther; + } + + /** + * Sets the value of the pharmRegimenOther property. + * + * @param value + * allowed object is + * {@link PharmRegimenOther } + * + */ + public void setPharmRegimenOther(PharmRegimenOther value) { + this.pharmRegimenOther = value; + } + + /** + * Gets the value of the regimenIndication property. + * + * @return + * possible object is + * {@link RegimenIndication } + * + */ + public RegimenIndication getRegimenIndication() { + return regimenIndication; + } + + /** + * Sets the value of the regimenIndication property. + * + * @param value + * allowed object is + * {@link RegimenIndication } + * + */ + public void setRegimenIndication(RegimenIndication value) { + this.regimenIndication = value; + } + + /** + * Gets the value of the regimenIndicationNotes property. + * + * @return + * possible object is + * {@link RegimenIndicationNotes } + * + */ + public RegimenIndicationNotes getRegimenIndicationNotes() { + return regimenIndicationNotes; + } + + /** + * Sets the value of the regimenIndicationNotes property. + * + * @param value + * allowed object is + * {@link RegimenIndicationNotes } + * + */ + public void setRegimenIndicationNotes(RegimenIndicationNotes value) { + this.regimenIndicationNotes = value; + } + + /** + * Gets the value of the routeOfAdministrations property. + * + * @return + * possible object is + * {@link RouteOfAdministrations } + * + */ + public RouteOfAdministrations getRouteOfAdministrations() { + return routeOfAdministrations; + } + + /** + * Sets the value of the routeOfAdministrations property. + * + * @param value + * allowed object is + * {@link RouteOfAdministrations } + * + */ + public void setRouteOfAdministrations(RouteOfAdministrations value) { + this.routeOfAdministrations = value; + } + + /** + * Gets the value of the therapyOngoing property. + * + * @return + * possible object is + * {@link TherapyOngoing } + * + */ + public TherapyOngoing getTherapyOngoing() { + return therapyOngoing; + } + + /** + * Sets the value of the therapyOngoing property. + * + * @param value + * allowed object is + * {@link TherapyOngoing } + * + */ + public void setTherapyOngoing(TherapyOngoing value) { + this.therapyOngoing = value; + } + + /** + * Gets the value of the measureOfResponse property. + * + * @return + * possible object is + * {@link MeasureOfResponse } + * + */ + public MeasureOfResponse getMeasureOfResponse() { + return measureOfResponse; + } + + /** + * Sets the value of the measureOfResponse property. + * + * @param value + * allowed object is + * {@link MeasureOfResponse } + * + */ + public void setMeasureOfResponse(MeasureOfResponse value) { + this.measureOfResponse = value; + } + + /** + * Gets the value of the dayOfFormCompletion property. + * + * @return + * possible object is + * {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion getDayOfFormCompletion() { + return dayOfFormCompletion; + } + + /** + * Sets the value of the dayOfFormCompletion property. + * + * @param value + * allowed object is + * {@link DayOfFormCompletion } + * + */ + public void setDayOfFormCompletion(DayOfFormCompletion value) { + this.dayOfFormCompletion = value; + } + + /** + * Gets the value of the monthOfFormCompletion property. + * + * @return + * possible object is + * {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion getMonthOfFormCompletion() { + return monthOfFormCompletion; + } + + /** + * Sets the value of the monthOfFormCompletion property. + * + * @param value + * allowed object is + * {@link MonthOfFormCompletion } + * + */ + public void setMonthOfFormCompletion(MonthOfFormCompletion value) { + this.monthOfFormCompletion = value; + } + + /** + * Gets the value of the yearOfFormCompletion property. + * + * @return + * possible object is + * {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion getYearOfFormCompletion() { + return yearOfFormCompletion; + } + + /** + * Sets the value of the yearOfFormCompletion property. + * + * @param value + * allowed object is + * {@link YearOfFormCompletion } + * + */ + public void setYearOfFormCompletion(YearOfFormCompletion value) { + this.yearOfFormCompletion = value; + } + + /** + * Gets the value of the daysToFormCompletion property. + * + * @return + * possible object is + * {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion getDaysToFormCompletion() { + return daysToFormCompletion; + } + + /** + * Sets the value of the daysToFormCompletion property. + * + * @param value + * allowed object is + * {@link DaysToFormCompletion } + * + */ + public void setDaysToFormCompletion(DaysToFormCompletion value) { + this.daysToFormCompletion = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DrugName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DrugName.java new file mode 100644 index 0000000..2cad786 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/DrugName.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2975232" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.10" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "drug_name") +public class DrugName { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2975232"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.10"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/Drugs.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/Drugs.java new file mode 100644 index 0000000..f428c1b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/Drugs.java @@ -0,0 +1,76 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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 maxOccurs="unbounded" minOccurs="0">
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}drug"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "drug" +}) +@XmlRootElement(name = "drugs") +public class Drugs { + + protected List drug; + + /** + * Gets the value of the drug 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 drug property. + * + *

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

+     *    getDrug().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Drug } + * + * + */ + public List getDrug() { + if (drug == null) { + drug = new ArrayList(); + } + return this.drug; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/HistoryPriorSystemicTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/HistoryPriorSystemicTherapy.java new file mode 100644 index 0000000..d6eb66a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/HistoryPriorSystemicTherapy.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2006961" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HistoryPriorSystemicTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2006961"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/MonthOfDrugTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/MonthOfDrugTherapyEnd.java new file mode 100644 index 0000000..1cc3b63 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/MonthOfDrugTherapyEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103080" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_drug_therapy_end") +public class MonthOfDrugTherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3103080"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/MonthOfDrugTherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/MonthOfDrugTherapyStart.java new file mode 100644 index 0000000..729a5a4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/MonthOfDrugTherapyStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103072" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_drug_therapy_start") +public class MonthOfDrugTherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3103072"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/NumberCycles.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/NumberCycles.java new file mode 100644 index 0000000..273ce6f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/NumberCycles.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="62590" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "number_cycles") +public class NumberCycles { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "62590"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/ObjectFactory.java new file mode 100644 index 0000000..981ed1a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/ObjectFactory.java @@ -0,0 +1,292 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2 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 _HistoryPriorSystemicTherapy_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7", "history_prior_systemic_therapy"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link Drugs } + * + */ + public Drugs createDrugs() { + return new Drugs(); + } + + /** + * Create an instance of {@link Drug } + * + */ + public Drug createDrug() { + return new Drug(); + } + + /** + * Create an instance of {@link TxOnClinicalTrial } + * + */ + public TxOnClinicalTrial createTxOnClinicalTrial() { + return new TxOnClinicalTrial(); + } + + /** + * Create an instance of {@link RegimenNumber } + * + */ + public RegimenNumber createRegimenNumber() { + return new RegimenNumber(); + } + + /** + * Create an instance of {@link BcrDrugBarcode } + * + */ + public BcrDrugBarcode createBcrDrugBarcode() { + return new BcrDrugBarcode(); + } + + /** + * Create an instance of {@link BcrDrugUuid } + * + */ + public BcrDrugUuid createBcrDrugUuid() { + return new BcrDrugUuid(); + } + + /** + * Create an instance of {@link TotalDose } + * + */ + public TotalDose createTotalDose() { + return new TotalDose(); + } + + /** + * Create an instance of {@link TotalDoseUnits } + * + */ + public TotalDoseUnits createTotalDoseUnits() { + return new TotalDoseUnits(); + } + + /** + * Create an instance of {@link PrescribedDose } + * + */ + public PrescribedDose createPrescribedDose() { + return new PrescribedDose(); + } + + /** + * Create an instance of {@link PrescribedDoseUnits } + * + */ + public PrescribedDoseUnits createPrescribedDoseUnits() { + return new PrescribedDoseUnits(); + } + + /** + * Create an instance of {@link NumberCycles } + * + */ + public NumberCycles createNumberCycles() { + return new NumberCycles(); + } + + /** + * Create an instance of {@link DayOfDrugTherapyStart } + * + */ + public DayOfDrugTherapyStart createDayOfDrugTherapyStart() { + return new DayOfDrugTherapyStart(); + } + + /** + * Create an instance of {@link MonthOfDrugTherapyStart } + * + */ + public MonthOfDrugTherapyStart createMonthOfDrugTherapyStart() { + return new MonthOfDrugTherapyStart(); + } + + /** + * Create an instance of {@link YearOfDrugTherapyStart } + * + */ + public YearOfDrugTherapyStart createYearOfDrugTherapyStart() { + return new YearOfDrugTherapyStart(); + } + + /** + * Create an instance of {@link DaysToDrugTherapyStart } + * + */ + public DaysToDrugTherapyStart createDaysToDrugTherapyStart() { + return new DaysToDrugTherapyStart(); + } + + /** + * Create an instance of {@link DayOfDrugTherapyEnd } + * + */ + public DayOfDrugTherapyEnd createDayOfDrugTherapyEnd() { + return new DayOfDrugTherapyEnd(); + } + + /** + * Create an instance of {@link MonthOfDrugTherapyEnd } + * + */ + public MonthOfDrugTherapyEnd createMonthOfDrugTherapyEnd() { + return new MonthOfDrugTherapyEnd(); + } + + /** + * Create an instance of {@link YearOfDrugTherapyEnd } + * + */ + public YearOfDrugTherapyEnd createYearOfDrugTherapyEnd() { + return new YearOfDrugTherapyEnd(); + } + + /** + * Create an instance of {@link DaysToDrugTherapyEnd } + * + */ + public DaysToDrugTherapyEnd createDaysToDrugTherapyEnd() { + return new DaysToDrugTherapyEnd(); + } + + /** + * Create an instance of {@link HistoryPriorSystemicTherapy } + * + */ + public HistoryPriorSystemicTherapy createHistoryPriorSystemicTherapy() { + return new HistoryPriorSystemicTherapy(); + } + + /** + * Create an instance of {@link TherapyTypes } + * + */ + public TherapyTypes createTherapyTypes() { + return new TherapyTypes(); + } + + /** + * Create an instance of {@link TherapyType } + * + */ + public TherapyType createTherapyType() { + return new TherapyType(); + } + + /** + * Create an instance of {@link TherapyTypeNotes } + * + */ + public TherapyTypeNotes createTherapyTypeNotes() { + return new TherapyTypeNotes(); + } + + /** + * Create an instance of {@link DrugName } + * + */ + public DrugName createDrugName() { + return new DrugName(); + } + + /** + * Create an instance of {@link ClinicalTrailDrugClassification } + * + */ + public ClinicalTrailDrugClassification createClinicalTrailDrugClassification() { + return new ClinicalTrailDrugClassification(); + } + + /** + * Create an instance of {@link StemCellTransplantation } + * + */ + public StemCellTransplantation createStemCellTransplantation() { + return new StemCellTransplantation(); + } + + /** + * Create an instance of {@link StemCellTransplantationType } + * + */ + public StemCellTransplantationType createStemCellTransplantationType() { + return new StemCellTransplantationType(); + } + + /** + * Create an instance of {@link RouteOfAdministrations } + * + */ + public RouteOfAdministrations createRouteOfAdministrations() { + return new RouteOfAdministrations(); + } + + /** + * Create an instance of {@link RouteOfAdministration } + * + */ + public RouteOfAdministration createRouteOfAdministration() { + return new RouteOfAdministration(); + } + + /** + * Create an instance of {@link TherapyOngoing } + * + */ + public TherapyOngoing createTherapyOngoing() { + return new TherapyOngoing(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistoryPriorSystemicTherapy }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7", name = "history_prior_systemic_therapy") + public JAXBElement createHistoryPriorSystemicTherapy(HistoryPriorSystemicTherapy value) { + return new JAXBElement(_HistoryPriorSystemicTherapy_QNAME, HistoryPriorSystemicTherapy.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/PrescribedDose.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/PrescribedDose.java new file mode 100644 index 0000000..9945b74 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/PrescribedDose.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2184728" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "prescribed_dose") +public class PrescribedDose { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2184728"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.1"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/PrescribedDoseUnits.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/PrescribedDoseUnits.java new file mode 100644 index 0000000..ff80fd4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/PrescribedDoseUnits.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3065815" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "prescribed_dose_units") +public class PrescribedDoseUnits { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3065815"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.1"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RegimenNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RegimenNumber.java new file mode 100644 index 0000000..d8edd45 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RegimenNumber.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2744948" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "regimen_number") +public class RegimenNumber { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2744948"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.1"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RouteOfAdministration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RouteOfAdministration.java new file mode 100644 index 0000000..41d8076 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RouteOfAdministration.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2003586" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "route_of_administration") +public class RouteOfAdministration + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RouteOfAdministrations.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RouteOfAdministrations.java new file mode 100644 index 0000000..4eddb4c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/RouteOfAdministrations.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}route_of_administration" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "routeOfAdministration" +}) +@XmlRootElement(name = "route_of_administrations") +public class RouteOfAdministrations { + + @XmlElement(name = "route_of_administration", required = true) + protected List routeOfAdministration; + + /** + * Gets the value of the routeOfAdministration 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 routeOfAdministration property. + * + *

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

+     *    getRouteOfAdministration().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RouteOfAdministration } + * + * + */ + public List getRouteOfAdministration() { + if (routeOfAdministration == null) { + routeOfAdministration = new ArrayList(); + } + return this.routeOfAdministration; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/StemCellTransplantation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/StemCellTransplantation.java new file mode 100644 index 0000000..851ee92 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/StemCellTransplantation.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3090688" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "stem_cell_transplantation") +public class StemCellTransplantation { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3090688"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/StemCellTransplantationType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/StemCellTransplantationType.java new file mode 100644 index 0000000..d74c5f6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/StemCellTransplantationType.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2730901" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "stem_cell_transplantation_type") +public class StemCellTransplantationType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyOngoing.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyOngoing.java new file mode 100644 index 0000000..743f5c6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyOngoing.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103479" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "therapy_ongoing") +public class TherapyOngoing { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3103479"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyType.java new file mode 100644 index 0000000..31fb6cd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyType.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2793530" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "therapy_type") +public class TherapyType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyTypeNotes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyTypeNotes.java new file mode 100644 index 0000000..8e3f3d1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyTypeNotes.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2001762" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "therapy_type_notes") +public class TherapyTypeNotes + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyTypes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyTypes.java new file mode 100644 index 0000000..4e43e9d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TherapyTypes.java @@ -0,0 +1,106 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}therapy_type" maxOccurs="unbounded"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7}therapy_type_notes"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "therapyType", + "therapyTypeNotes" +}) +@XmlRootElement(name = "therapy_types") +public class TherapyTypes { + + @XmlElement(name = "therapy_type", required = true) + protected List therapyType; + @XmlElement(name = "therapy_type_notes", required = true) + protected TherapyTypeNotes therapyTypeNotes; + + /** + * Gets the value of the therapyType 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 therapyType property. + * + *

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

+     *    getTherapyType().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link TherapyType } + * + * + */ + public List getTherapyType() { + if (therapyType == null) { + therapyType = new ArrayList(); + } + return this.therapyType; + } + + /** + * Gets the value of the therapyTypeNotes property. + * + * @return + * possible object is + * {@link TherapyTypeNotes } + * + */ + public TherapyTypeNotes getTherapyTypeNotes() { + return therapyTypeNotes; + } + + /** + * Sets the value of the therapyTypeNotes property. + * + * @param value + * allowed object is + * {@link TherapyTypeNotes } + * + */ + public void setTherapyTypeNotes(TherapyTypeNotes value) { + this.therapyTypeNotes = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TotalDose.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TotalDose.java new file mode 100644 index 0000000..95c6235 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TotalDose.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="1515" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "total_dose") +public class TotalDose { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "1515"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.1"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TotalDoseUnits.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TotalDoseUnits.java new file mode 100644 index 0000000..7f524f7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TotalDoseUnits.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3088785" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "total_dose_units") +public class TotalDoseUnits { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3088785"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.1"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TxOnClinicalTrial.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TxOnClinicalTrial.java new file mode 100644 index 0000000..6ad1fbf --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/TxOnClinicalTrial.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3925111" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "tx_on_clinical_trial") +public class TxOnClinicalTrial { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3925111"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/YearOfDrugTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/YearOfDrugTherapyEnd.java new file mode 100644 index 0000000..17af680 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/YearOfDrugTherapyEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103082" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_drug_therapy_end") +public class YearOfDrugTherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3103082"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/YearOfDrugTherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/YearOfDrugTherapyStart.java new file mode 100644 index 0000000..e55bf50 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/YearOfDrugTherapyStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103074" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_drug_therapy_start") +public class YearOfDrugTherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3103074"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/package-info.java new file mode 100644 index 0000000..339c084 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/pharmaceutical/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/pharmaceutical/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/AnatomicTreatmentSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/AnatomicTreatmentSite.java new file mode 100644 index 0000000..884ba0f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/AnatomicTreatmentSite.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2793522" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "anatomic_treatment_site") +public class AnatomicTreatmentSite + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/BcrRadiationBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/BcrRadiationBarcode.java new file mode 100644 index 0000000..8c04d04 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/BcrRadiationBarcode.java @@ -0,0 +1,331 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.15" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_radiation_barcode") +public class BcrRadiationBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.15"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/BcrRadiationUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/BcrRadiationUuid.java new file mode 100644 index 0000000..aa4cb34 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/BcrRadiationUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_radiation_uuid") +public class BcrRadiationUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/CourseNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/CourseNumber.java new file mode 100644 index 0000000..3123432 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/CourseNumber.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2732184" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class CourseNumber { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2732184"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DayOfRadiationTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DayOfRadiationTherapyEnd.java new file mode 100644 index 0000000..fcf4dd3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DayOfRadiationTherapyEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897108" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_radiation_therapy_end") +public class DayOfRadiationTherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897108"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DayOfRadiationTherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DayOfRadiationTherapyStart.java new file mode 100644 index 0000000..43b4584 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DayOfRadiationTherapyStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897102" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_radiation_therapy_start") +public class DayOfRadiationTherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897102"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DaysToRadiationTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DaysToRadiationTherapyEnd.java new file mode 100644 index 0000000..f0d94fb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DaysToRadiationTherapyEnd.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008333" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_radiation_therapy_end") +public class DaysToRadiationTherapyEnd + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DaysToRadiationTherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DaysToRadiationTherapyStart.java new file mode 100644 index 0000000..feb4cdd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/DaysToRadiationTherapyStart.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008313" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_radiation_therapy_start") +public class DaysToRadiationTherapyStart + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/MonthOfRadiationTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/MonthOfRadiationTherapyEnd.java new file mode 100644 index 0000000..c37448a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/MonthOfRadiationTherapyEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897106" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_radiation_therapy_end") +public class MonthOfRadiationTherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897106"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/MonthOfRadiationTherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/MonthOfRadiationTherapyStart.java new file mode 100644 index 0000000..8c4f336 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/MonthOfRadiationTherapyStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897100" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_radiation_therapy_start") +public class MonthOfRadiationTherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897100"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Numfractions.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Numfractions.java new file mode 100644 index 0000000..777b4f4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Numfractions.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="61465" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Numfractions + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/ObjectFactory.java new file mode 100644 index 0000000..5cfcd73 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/ObjectFactory.java @@ -0,0 +1,276 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2 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 _CourseNumber_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/radiation/2.7", "course_number"); + private final static QName _Numfractions_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/radiation/2.7", "numfractions"); + private final static QName _RadiationDosage_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/radiation/2.7", "radiation_dosage"); + private final static QName _RadiationDosageMetastasis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/radiation/2.7", "radiation_dosage_metastasis"); + private final static QName _RadiationTreatmentOngoing_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/radiation/2.7", "radiation_treatment_ongoing"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link Radiations } + * + */ + public Radiations createRadiations() { + return new Radiations(); + } + + /** + * Create an instance of {@link Radiation } + * + */ + public Radiation createRadiation() { + return new Radiation(); + } + + /** + * Create an instance of {@link BcrRadiationBarcode } + * + */ + public BcrRadiationBarcode createBcrRadiationBarcode() { + return new BcrRadiationBarcode(); + } + + /** + * Create an instance of {@link BcrRadiationUuid } + * + */ + public BcrRadiationUuid createBcrRadiationUuid() { + return new BcrRadiationUuid(); + } + + /** + * Create an instance of {@link DayOfRadiationTherapyStart } + * + */ + public DayOfRadiationTherapyStart createDayOfRadiationTherapyStart() { + return new DayOfRadiationTherapyStart(); + } + + /** + * Create an instance of {@link MonthOfRadiationTherapyStart } + * + */ + public MonthOfRadiationTherapyStart createMonthOfRadiationTherapyStart() { + return new MonthOfRadiationTherapyStart(); + } + + /** + * Create an instance of {@link YearOfRadiationTherapyStart } + * + */ + public YearOfRadiationTherapyStart createYearOfRadiationTherapyStart() { + return new YearOfRadiationTherapyStart(); + } + + /** + * Create an instance of {@link DaysToRadiationTherapyStart } + * + */ + public DaysToRadiationTherapyStart createDaysToRadiationTherapyStart() { + return new DaysToRadiationTherapyStart(); + } + + /** + * Create an instance of {@link DayOfRadiationTherapyEnd } + * + */ + public DayOfRadiationTherapyEnd createDayOfRadiationTherapyEnd() { + return new DayOfRadiationTherapyEnd(); + } + + /** + * Create an instance of {@link MonthOfRadiationTherapyEnd } + * + */ + public MonthOfRadiationTherapyEnd createMonthOfRadiationTherapyEnd() { + return new MonthOfRadiationTherapyEnd(); + } + + /** + * Create an instance of {@link YearOfRadiationTherapyEnd } + * + */ + public YearOfRadiationTherapyEnd createYearOfRadiationTherapyEnd() { + return new YearOfRadiationTherapyEnd(); + } + + /** + * Create an instance of {@link DaysToRadiationTherapyEnd } + * + */ + public DaysToRadiationTherapyEnd createDaysToRadiationTherapyEnd() { + return new DaysToRadiationTherapyEnd(); + } + + /** + * Create an instance of {@link PriorRadiationTypeMetastasis } + * + */ + public PriorRadiationTypeMetastasis createPriorRadiationTypeMetastasis() { + return new PriorRadiationTypeMetastasis(); + } + + /** + * Create an instance of {@link PriorRadiationTypeNotesMetastasis } + * + */ + public PriorRadiationTypeNotesMetastasis createPriorRadiationTypeNotesMetastasis() { + return new PriorRadiationTypeNotesMetastasis(); + } + + /** + * Create an instance of {@link RadiationDosageMetastasis } + * + */ + public RadiationDosageMetastasis createRadiationDosageMetastasis() { + return new RadiationDosageMetastasis(); + } + + /** + * Create an instance of {@link RadiationType } + * + */ + public RadiationType createRadiationType() { + return new RadiationType(); + } + + /** + * Create an instance of {@link RadiationTypeNotes } + * + */ + public RadiationTypeNotes createRadiationTypeNotes() { + return new RadiationTypeNotes(); + } + + /** + * Create an instance of {@link RadiationDosage } + * + */ + public RadiationDosage createRadiationDosage() { + return new RadiationDosage(); + } + + /** + * Create an instance of {@link Units } + * + */ + public Units createUnits() { + return new Units(); + } + + /** + * Create an instance of {@link Numfractions } + * + */ + public Numfractions createNumfractions() { + return new Numfractions(); + } + + /** + * Create an instance of {@link AnatomicTreatmentSite } + * + */ + public AnatomicTreatmentSite createAnatomicTreatmentSite() { + return new AnatomicTreatmentSite(); + } + + /** + * Create an instance of {@link RadiationTreatmentOngoing } + * + */ + public RadiationTreatmentOngoing createRadiationTreatmentOngoing() { + return new RadiationTreatmentOngoing(); + } + + /** + * Create an instance of {@link CourseNumber } + * + */ + public CourseNumber createCourseNumber() { + return new CourseNumber(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CourseNumber }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/radiation/2.7", name = "course_number") + public JAXBElement createCourseNumber(CourseNumber value) { + return new JAXBElement(_CourseNumber_QNAME, CourseNumber.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Numfractions }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/radiation/2.7", name = "numfractions") + public JAXBElement createNumfractions(Numfractions value) { + return new JAXBElement(_Numfractions_QNAME, Numfractions.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RadiationDosage }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/radiation/2.7", name = "radiation_dosage") + public JAXBElement createRadiationDosage(RadiationDosage value) { + return new JAXBElement(_RadiationDosage_QNAME, RadiationDosage.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RadiationDosageMetastasis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/radiation/2.7", name = "radiation_dosage_metastasis") + public JAXBElement createRadiationDosageMetastasis(RadiationDosageMetastasis value) { + return new JAXBElement(_RadiationDosageMetastasis_QNAME, RadiationDosageMetastasis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RadiationTreatmentOngoing }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/radiation/2.7", name = "radiation_treatment_ongoing") + public JAXBElement createRadiationTreatmentOngoing(RadiationTreatmentOngoing value) { + return new JAXBElement(_RadiationTreatmentOngoing_QNAME, RadiationTreatmentOngoing.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/PriorRadiationTypeMetastasis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/PriorRadiationTypeMetastasis.java new file mode 100644 index 0000000..25e0515 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/PriorRadiationTypeMetastasis.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4887011" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "prior_radiation_type_metastasis") +public class PriorRadiationTypeMetastasis + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/PriorRadiationTypeNotesMetastasis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/PriorRadiationTypeNotesMetastasis.java new file mode 100644 index 0000000..f8b07c6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/PriorRadiationTypeNotesMetastasis.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4887041" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "prior_radiation_type_notes_metastasis") +public class PriorRadiationTypeNotesMetastasis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4887041"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Radiation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Radiation.java new file mode 100644 index 0000000..d75e757 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Radiation.java @@ -0,0 +1,846 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DayOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MeasureOfResponse; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MonthOfFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RegimenIndication; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RegimenIndicationNotes; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.YearOfFormCompletion; + + +/** + *

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://tcga.nci/bcr/xml/clinical/radiation/2.7}bcr_radiation_barcode"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}bcr_radiation_uuid"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}day_of_radiation_therapy_start"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}month_of_radiation_therapy_start"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}year_of_radiation_therapy_start"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}days_to_radiation_therapy_start"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}day_of_radiation_therapy_end"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}month_of_radiation_therapy_end"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}year_of_radiation_therapy_end"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}days_to_radiation_therapy_end"/>
+ *         </choice>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}prior_radiation_type_metastasis" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}prior_radiation_type_notes_metastasis" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}radiation_dosage_metastasis" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}radiation_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}radiation_type_notes"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}radiation_dosage"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}units"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}numfractions"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}anatomic_treatment_site"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}regimen_indication"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}regimen_indication_notes"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}radiation_treatment_ongoing"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}course_number"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}measure_of_response"/>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_form_completion"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_form_completion"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_form_completion"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bcrRadiationBarcode", + "bcrRadiationUuid", + "dayOfRadiationTherapyStart", + "monthOfRadiationTherapyStart", + "yearOfRadiationTherapyStart", + "daysToRadiationTherapyStart", + "dayOfRadiationTherapyEnd", + "monthOfRadiationTherapyEnd", + "yearOfRadiationTherapyEnd", + "daysToRadiationTherapyEnd", + "priorRadiationTypeMetastasis", + "priorRadiationTypeNotesMetastasis", + "radiationDosageMetastasis", + "radiationType", + "radiationTypeNotes", + "radiationDosage", + "units", + "numfractions", + "anatomicTreatmentSite", + "regimenIndication", + "regimenIndicationNotes", + "radiationTreatmentOngoing", + "courseNumber", + "measureOfResponse", + "dayOfFormCompletion", + "monthOfFormCompletion", + "yearOfFormCompletion", + "daysToFormCompletion" +}) +@XmlRootElement(name = "radiation") +public class Radiation { + + @XmlElement(name = "bcr_radiation_barcode", required = true) + protected BcrRadiationBarcode bcrRadiationBarcode; + @XmlElement(name = "bcr_radiation_uuid", required = true) + protected BcrRadiationUuid bcrRadiationUuid; + @XmlElement(name = "day_of_radiation_therapy_start") + protected DayOfRadiationTherapyStart dayOfRadiationTherapyStart; + @XmlElement(name = "month_of_radiation_therapy_start") + protected MonthOfRadiationTherapyStart monthOfRadiationTherapyStart; + @XmlElement(name = "year_of_radiation_therapy_start") + protected YearOfRadiationTherapyStart yearOfRadiationTherapyStart; + @XmlElement(name = "days_to_radiation_therapy_start") + protected DaysToRadiationTherapyStart daysToRadiationTherapyStart; + @XmlElement(name = "day_of_radiation_therapy_end") + protected DayOfRadiationTherapyEnd dayOfRadiationTherapyEnd; + @XmlElement(name = "month_of_radiation_therapy_end") + protected MonthOfRadiationTherapyEnd monthOfRadiationTherapyEnd; + @XmlElement(name = "year_of_radiation_therapy_end") + protected YearOfRadiationTherapyEnd yearOfRadiationTherapyEnd; + @XmlElement(name = "days_to_radiation_therapy_end") + protected DaysToRadiationTherapyEnd daysToRadiationTherapyEnd; + @XmlElement(name = "prior_radiation_type_metastasis") + protected PriorRadiationTypeMetastasis priorRadiationTypeMetastasis; + @XmlElement(name = "prior_radiation_type_notes_metastasis") + protected PriorRadiationTypeNotesMetastasis priorRadiationTypeNotesMetastasis; + @XmlElement(name = "radiation_dosage_metastasis", nillable = true) + protected RadiationDosageMetastasis radiationDosageMetastasis; + @XmlElement(name = "radiation_type", required = true) + protected RadiationType radiationType; + @XmlElement(name = "radiation_type_notes", required = true) + protected RadiationTypeNotes radiationTypeNotes; + @XmlElement(name = "radiation_dosage", required = true, nillable = true) + protected RadiationDosage radiationDosage; + @XmlElement(required = true) + protected Units units; + @XmlElement(required = true, nillable = true) + protected Numfractions numfractions; + @XmlElement(name = "anatomic_treatment_site", required = true) + protected AnatomicTreatmentSite anatomicTreatmentSite; + @XmlElement(name = "regimen_indication", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RegimenIndication regimenIndication; + @XmlElement(name = "regimen_indication_notes", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true) + protected RegimenIndicationNotes regimenIndicationNotes; + @XmlElement(name = "radiation_treatment_ongoing", required = true, nillable = true) + protected RadiationTreatmentOngoing radiationTreatmentOngoing; + @XmlElement(name = "course_number", required = true, nillable = true) + protected CourseNumber courseNumber; + @XmlElement(name = "measure_of_response", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", required = true, nillable = true) + protected MeasureOfResponse measureOfResponse; + @XmlElement(name = "day_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected DayOfFormCompletion dayOfFormCompletion; + @XmlElement(name = "month_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected MonthOfFormCompletion monthOfFormCompletion; + @XmlElement(name = "year_of_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", nillable = true) + protected YearOfFormCompletion yearOfFormCompletion; + @XmlElement(name = "days_to_form_completion", namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7") + protected DaysToFormCompletion daysToFormCompletion; + + /** + * Gets the value of the bcrRadiationBarcode property. + * + * @return + * possible object is + * {@link BcrRadiationBarcode } + * + */ + public BcrRadiationBarcode getBcrRadiationBarcode() { + return bcrRadiationBarcode; + } + + /** + * Sets the value of the bcrRadiationBarcode property. + * + * @param value + * allowed object is + * {@link BcrRadiationBarcode } + * + */ + public void setBcrRadiationBarcode(BcrRadiationBarcode value) { + this.bcrRadiationBarcode = value; + } + + /** + * Gets the value of the bcrRadiationUuid property. + * + * @return + * possible object is + * {@link BcrRadiationUuid } + * + */ + public BcrRadiationUuid getBcrRadiationUuid() { + return bcrRadiationUuid; + } + + /** + * Sets the value of the bcrRadiationUuid property. + * + * @param value + * allowed object is + * {@link BcrRadiationUuid } + * + */ + public void setBcrRadiationUuid(BcrRadiationUuid value) { + this.bcrRadiationUuid = value; + } + + /** + * Gets the value of the dayOfRadiationTherapyStart property. + * + * @return + * possible object is + * {@link DayOfRadiationTherapyStart } + * + */ + public DayOfRadiationTherapyStart getDayOfRadiationTherapyStart() { + return dayOfRadiationTherapyStart; + } + + /** + * Sets the value of the dayOfRadiationTherapyStart property. + * + * @param value + * allowed object is + * {@link DayOfRadiationTherapyStart } + * + */ + public void setDayOfRadiationTherapyStart(DayOfRadiationTherapyStart value) { + this.dayOfRadiationTherapyStart = value; + } + + /** + * Gets the value of the monthOfRadiationTherapyStart property. + * + * @return + * possible object is + * {@link MonthOfRadiationTherapyStart } + * + */ + public MonthOfRadiationTherapyStart getMonthOfRadiationTherapyStart() { + return monthOfRadiationTherapyStart; + } + + /** + * Sets the value of the monthOfRadiationTherapyStart property. + * + * @param value + * allowed object is + * {@link MonthOfRadiationTherapyStart } + * + */ + public void setMonthOfRadiationTherapyStart(MonthOfRadiationTherapyStart value) { + this.monthOfRadiationTherapyStart = value; + } + + /** + * Gets the value of the yearOfRadiationTherapyStart property. + * + * @return + * possible object is + * {@link YearOfRadiationTherapyStart } + * + */ + public YearOfRadiationTherapyStart getYearOfRadiationTherapyStart() { + return yearOfRadiationTherapyStart; + } + + /** + * Sets the value of the yearOfRadiationTherapyStart property. + * + * @param value + * allowed object is + * {@link YearOfRadiationTherapyStart } + * + */ + public void setYearOfRadiationTherapyStart(YearOfRadiationTherapyStart value) { + this.yearOfRadiationTherapyStart = value; + } + + /** + * Gets the value of the daysToRadiationTherapyStart property. + * + * @return + * possible object is + * {@link DaysToRadiationTherapyStart } + * + */ + public DaysToRadiationTherapyStart getDaysToRadiationTherapyStart() { + return daysToRadiationTherapyStart; + } + + /** + * Sets the value of the daysToRadiationTherapyStart property. + * + * @param value + * allowed object is + * {@link DaysToRadiationTherapyStart } + * + */ + public void setDaysToRadiationTherapyStart(DaysToRadiationTherapyStart value) { + this.daysToRadiationTherapyStart = value; + } + + /** + * Gets the value of the dayOfRadiationTherapyEnd property. + * + * @return + * possible object is + * {@link DayOfRadiationTherapyEnd } + * + */ + public DayOfRadiationTherapyEnd getDayOfRadiationTherapyEnd() { + return dayOfRadiationTherapyEnd; + } + + /** + * Sets the value of the dayOfRadiationTherapyEnd property. + * + * @param value + * allowed object is + * {@link DayOfRadiationTherapyEnd } + * + */ + public void setDayOfRadiationTherapyEnd(DayOfRadiationTherapyEnd value) { + this.dayOfRadiationTherapyEnd = value; + } + + /** + * Gets the value of the monthOfRadiationTherapyEnd property. + * + * @return + * possible object is + * {@link MonthOfRadiationTherapyEnd } + * + */ + public MonthOfRadiationTherapyEnd getMonthOfRadiationTherapyEnd() { + return monthOfRadiationTherapyEnd; + } + + /** + * Sets the value of the monthOfRadiationTherapyEnd property. + * + * @param value + * allowed object is + * {@link MonthOfRadiationTherapyEnd } + * + */ + public void setMonthOfRadiationTherapyEnd(MonthOfRadiationTherapyEnd value) { + this.monthOfRadiationTherapyEnd = value; + } + + /** + * Gets the value of the yearOfRadiationTherapyEnd property. + * + * @return + * possible object is + * {@link YearOfRadiationTherapyEnd } + * + */ + public YearOfRadiationTherapyEnd getYearOfRadiationTherapyEnd() { + return yearOfRadiationTherapyEnd; + } + + /** + * Sets the value of the yearOfRadiationTherapyEnd property. + * + * @param value + * allowed object is + * {@link YearOfRadiationTherapyEnd } + * + */ + public void setYearOfRadiationTherapyEnd(YearOfRadiationTherapyEnd value) { + this.yearOfRadiationTherapyEnd = value; + } + + /** + * Gets the value of the daysToRadiationTherapyEnd property. + * + * @return + * possible object is + * {@link DaysToRadiationTherapyEnd } + * + */ + public DaysToRadiationTherapyEnd getDaysToRadiationTherapyEnd() { + return daysToRadiationTherapyEnd; + } + + /** + * Sets the value of the daysToRadiationTherapyEnd property. + * + * @param value + * allowed object is + * {@link DaysToRadiationTherapyEnd } + * + */ + public void setDaysToRadiationTherapyEnd(DaysToRadiationTherapyEnd value) { + this.daysToRadiationTherapyEnd = value; + } + + /** + * Gets the value of the priorRadiationTypeMetastasis property. + * + * @return + * possible object is + * {@link PriorRadiationTypeMetastasis } + * + */ + public PriorRadiationTypeMetastasis getPriorRadiationTypeMetastasis() { + return priorRadiationTypeMetastasis; + } + + /** + * Sets the value of the priorRadiationTypeMetastasis property. + * + * @param value + * allowed object is + * {@link PriorRadiationTypeMetastasis } + * + */ + public void setPriorRadiationTypeMetastasis(PriorRadiationTypeMetastasis value) { + this.priorRadiationTypeMetastasis = value; + } + + /** + * Gets the value of the priorRadiationTypeNotesMetastasis property. + * + * @return + * possible object is + * {@link PriorRadiationTypeNotesMetastasis } + * + */ + public PriorRadiationTypeNotesMetastasis getPriorRadiationTypeNotesMetastasis() { + return priorRadiationTypeNotesMetastasis; + } + + /** + * Sets the value of the priorRadiationTypeNotesMetastasis property. + * + * @param value + * allowed object is + * {@link PriorRadiationTypeNotesMetastasis } + * + */ + public void setPriorRadiationTypeNotesMetastasis(PriorRadiationTypeNotesMetastasis value) { + this.priorRadiationTypeNotesMetastasis = value; + } + + /** + * Gets the value of the radiationDosageMetastasis property. + * + * @return + * possible object is + * {@link RadiationDosageMetastasis } + * + */ + public RadiationDosageMetastasis getRadiationDosageMetastasis() { + return radiationDosageMetastasis; + } + + /** + * Sets the value of the radiationDosageMetastasis property. + * + * @param value + * allowed object is + * {@link RadiationDosageMetastasis } + * + */ + public void setRadiationDosageMetastasis(RadiationDosageMetastasis value) { + this.radiationDosageMetastasis = value; + } + + /** + * Gets the value of the radiationType property. + * + * @return + * possible object is + * {@link RadiationType } + * + */ + public RadiationType getRadiationType() { + return radiationType; + } + + /** + * Sets the value of the radiationType property. + * + * @param value + * allowed object is + * {@link RadiationType } + * + */ + public void setRadiationType(RadiationType value) { + this.radiationType = value; + } + + /** + * Gets the value of the radiationTypeNotes property. + * + * @return + * possible object is + * {@link RadiationTypeNotes } + * + */ + public RadiationTypeNotes getRadiationTypeNotes() { + return radiationTypeNotes; + } + + /** + * Sets the value of the radiationTypeNotes property. + * + * @param value + * allowed object is + * {@link RadiationTypeNotes } + * + */ + public void setRadiationTypeNotes(RadiationTypeNotes value) { + this.radiationTypeNotes = value; + } + + /** + * Gets the value of the radiationDosage property. + * + * @return + * possible object is + * {@link RadiationDosage } + * + */ + public RadiationDosage getRadiationDosage() { + return radiationDosage; + } + + /** + * Sets the value of the radiationDosage property. + * + * @param value + * allowed object is + * {@link RadiationDosage } + * + */ + public void setRadiationDosage(RadiationDosage value) { + this.radiationDosage = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link Units } + * + */ + public Units getUnits() { + return units; + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link Units } + * + */ + public void setUnits(Units value) { + this.units = value; + } + + /** + * Gets the value of the numfractions property. + * + * @return + * possible object is + * {@link Numfractions } + * + */ + public Numfractions getNumfractions() { + return numfractions; + } + + /** + * Sets the value of the numfractions property. + * + * @param value + * allowed object is + * {@link Numfractions } + * + */ + public void setNumfractions(Numfractions value) { + this.numfractions = value; + } + + /** + * Gets the value of the anatomicTreatmentSite property. + * + * @return + * possible object is + * {@link AnatomicTreatmentSite } + * + */ + public AnatomicTreatmentSite getAnatomicTreatmentSite() { + return anatomicTreatmentSite; + } + + /** + * Sets the value of the anatomicTreatmentSite property. + * + * @param value + * allowed object is + * {@link AnatomicTreatmentSite } + * + */ + public void setAnatomicTreatmentSite(AnatomicTreatmentSite value) { + this.anatomicTreatmentSite = value; + } + + /** + * Gets the value of the regimenIndication property. + * + * @return + * possible object is + * {@link RegimenIndication } + * + */ + public RegimenIndication getRegimenIndication() { + return regimenIndication; + } + + /** + * Sets the value of the regimenIndication property. + * + * @param value + * allowed object is + * {@link RegimenIndication } + * + */ + public void setRegimenIndication(RegimenIndication value) { + this.regimenIndication = value; + } + + /** + * Gets the value of the regimenIndicationNotes property. + * + * @return + * possible object is + * {@link RegimenIndicationNotes } + * + */ + public RegimenIndicationNotes getRegimenIndicationNotes() { + return regimenIndicationNotes; + } + + /** + * Sets the value of the regimenIndicationNotes property. + * + * @param value + * allowed object is + * {@link RegimenIndicationNotes } + * + */ + public void setRegimenIndicationNotes(RegimenIndicationNotes value) { + this.regimenIndicationNotes = value; + } + + /** + * Gets the value of the radiationTreatmentOngoing property. + * + * @return + * possible object is + * {@link RadiationTreatmentOngoing } + * + */ + public RadiationTreatmentOngoing getRadiationTreatmentOngoing() { + return radiationTreatmentOngoing; + } + + /** + * Sets the value of the radiationTreatmentOngoing property. + * + * @param value + * allowed object is + * {@link RadiationTreatmentOngoing } + * + */ + public void setRadiationTreatmentOngoing(RadiationTreatmentOngoing value) { + this.radiationTreatmentOngoing = value; + } + + /** + * Gets the value of the courseNumber property. + * + * @return + * possible object is + * {@link CourseNumber } + * + */ + public CourseNumber getCourseNumber() { + return courseNumber; + } + + /** + * Sets the value of the courseNumber property. + * + * @param value + * allowed object is + * {@link CourseNumber } + * + */ + public void setCourseNumber(CourseNumber value) { + this.courseNumber = value; + } + + /** + * Gets the value of the measureOfResponse property. + * + * @return + * possible object is + * {@link MeasureOfResponse } + * + */ + public MeasureOfResponse getMeasureOfResponse() { + return measureOfResponse; + } + + /** + * Sets the value of the measureOfResponse property. + * + * @param value + * allowed object is + * {@link MeasureOfResponse } + * + */ + public void setMeasureOfResponse(MeasureOfResponse value) { + this.measureOfResponse = value; + } + + /** + * Gets the value of the dayOfFormCompletion property. + * + * @return + * possible object is + * {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion getDayOfFormCompletion() { + return dayOfFormCompletion; + } + + /** + * Sets the value of the dayOfFormCompletion property. + * + * @param value + * allowed object is + * {@link DayOfFormCompletion } + * + */ + public void setDayOfFormCompletion(DayOfFormCompletion value) { + this.dayOfFormCompletion = value; + } + + /** + * Gets the value of the monthOfFormCompletion property. + * + * @return + * possible object is + * {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion getMonthOfFormCompletion() { + return monthOfFormCompletion; + } + + /** + * Sets the value of the monthOfFormCompletion property. + * + * @param value + * allowed object is + * {@link MonthOfFormCompletion } + * + */ + public void setMonthOfFormCompletion(MonthOfFormCompletion value) { + this.monthOfFormCompletion = value; + } + + /** + * Gets the value of the yearOfFormCompletion property. + * + * @return + * possible object is + * {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion getYearOfFormCompletion() { + return yearOfFormCompletion; + } + + /** + * Sets the value of the yearOfFormCompletion property. + * + * @param value + * allowed object is + * {@link YearOfFormCompletion } + * + */ + public void setYearOfFormCompletion(YearOfFormCompletion value) { + this.yearOfFormCompletion = value; + } + + /** + * Gets the value of the daysToFormCompletion property. + * + * @return + * possible object is + * {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion getDaysToFormCompletion() { + return daysToFormCompletion; + } + + /** + * Sets the value of the daysToFormCompletion property. + * + * @param value + * allowed object is + * {@link DaysToFormCompletion } + * + */ + public void setDaysToFormCompletion(DaysToFormCompletion value) { + this.daysToFormCompletion = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationDosage.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationDosage.java new file mode 100644 index 0000000..7e69a91 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationDosage.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2721441" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class RadiationDosage + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationDosageMetastasis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationDosageMetastasis.java new file mode 100644 index 0000000..1eaebff --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationDosageMetastasis.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4887042" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class RadiationDosageMetastasis + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationTreatmentOngoing.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationTreatmentOngoing.java new file mode 100644 index 0000000..e8d8098 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationTreatmentOngoing.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2842745" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class RadiationTreatmentOngoing { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2842745"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationType.java new file mode 100644 index 0000000..37ef9e8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationType.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2842944" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "radiation_type") +public class RadiationType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationTypeNotes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationTypeNotes.java new file mode 100644 index 0000000..5fbd8c1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/RadiationTypeNotes.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2195477" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "radiation_type_notes") +public class RadiationTypeNotes { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2195477"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Radiations.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Radiations.java new file mode 100644 index 0000000..bbb1ff5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Radiations.java @@ -0,0 +1,76 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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 maxOccurs="unbounded" minOccurs="0">
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/radiation/2.7}radiation"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "radiation" +}) +@XmlRootElement(name = "radiations") +public class Radiations { + + protected List radiation; + + /** + * Gets the value of the radiation 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 radiation property. + * + *

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

+     *    getRadiation().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Radiation } + * + * + */ + public List getRadiation() { + if (radiation == null) { + radiation = new ArrayList(); + } + return this.radiation; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Units.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Units.java new file mode 100644 index 0000000..d804554 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/Units.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="61446" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "units") +public class Units + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/YearOfRadiationTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/YearOfRadiationTherapyEnd.java new file mode 100644 index 0000000..4158d5c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/YearOfRadiationTherapyEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897110" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_radiation_therapy_end") +public class YearOfRadiationTherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897110"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/YearOfRadiationTherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/YearOfRadiationTherapyStart.java new file mode 100644 index 0000000..979a136 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/YearOfRadiationTherapyStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897104" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_radiation_therapy_start") +public class YearOfRadiationTherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897104"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/package-info.java new file mode 100644 index 0000000..b7baf06 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/radiation/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/radiation/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AcetaminophenUseCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AcetaminophenUseCategory.java new file mode 100644 index 0000000..9cbb460 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AcetaminophenUseCategory.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4175399" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class AcetaminophenUseCategory + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdditionalTreatmentCompletionSuccessOutcome.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdditionalTreatmentCompletionSuccessOutcome.java new file mode 100644 index 0000000..f7c8f94 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdditionalTreatmentCompletionSuccessOutcome.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3033278" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class AdditionalTreatmentCompletionSuccessOutcome + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposure.java new file mode 100644 index 0000000..084503e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182226" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AdultSmokeExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182226"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposurePerDay.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposurePerDay.java new file mode 100644 index 0000000..2925f74 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposurePerDay.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182264" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="hours" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AdultSmokeExposurePerDay { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182264"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "hours"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposureYears.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposureYears.java new file mode 100644 index 0000000..ec20fc8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AdultSmokeExposureYears.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2190208" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AdultSmokeExposureYears { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2190208"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AgeAtInitialPathologicDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AgeAtInitialPathologicDiagnosis.java new file mode 100644 index 0000000..01b083c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AgeAtInitialPathologicDiagnosis.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2006657" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "age_at_initial_pathologic_diagnosis") +public class AgeAtInitialPathologicDiagnosis + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AgeBeganSmokingInYears.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AgeBeganSmokingInYears.java new file mode 100644 index 0000000..d499870 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AgeBeganSmokingInYears.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2178045" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AgeBeganSmokingInYears { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2178045"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Agent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Agent.java new file mode 100644 index 0000000..e9caece --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Agent.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4285089" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "agent") +public class Agent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4285089"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AlcoholHistoryDocumented.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AlcoholHistoryDocumented.java new file mode 100644 index 0000000..278669b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AlcoholHistoryDocumented.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2201918" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AlcoholHistoryDocumented { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2201918"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AmountOfAlcoholConsumptionPerDay.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AmountOfAlcoholConsumptionPerDay.java new file mode 100644 index 0000000..e20161a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AmountOfAlcoholConsumptionPerDay.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3124961" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AmountOfAlcoholConsumptionPerDay { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3124961"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AnatomicNeoplasmSubdivision.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AnatomicNeoplasmSubdivision.java new file mode 100644 index 0000000..e995a4e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AnatomicNeoplasmSubdivision.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3108203" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class AnatomicNeoplasmSubdivision + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AnatomicNeoplasmSubdivisionOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AnatomicNeoplasmSubdivisionOther.java new file mode 100644 index 0000000..2a96e75 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AnatomicNeoplasmSubdivisionOther.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2584114" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class AnatomicNeoplasmSubdivisionOther + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AsbestosExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AsbestosExposure.java new file mode 100644 index 0000000..27ce466 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AsbestosExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="1253" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AsbestosExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "1253"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AspirinUseCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AspirinUseCategory.java new file mode 100644 index 0000000..b46485a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AspirinUseCategory.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4175398" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class AspirinUseCategory + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AssessmentTimepointCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AssessmentTimepointCategory.java new file mode 100644 index 0000000..b295041 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AssessmentTimepointCategory.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3151756" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AssessmentTimepointCategory { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3151756"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AsthmaIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AsthmaIndicator.java new file mode 100644 index 0000000..2db6bd3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/AsthmaIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3133921" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AsthmaIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3133921"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrExaminationBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrExaminationBarcode.java new file mode 100644 index 0000000..ae4ee94 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrExaminationBarcode.java @@ -0,0 +1,331 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.15" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_examination_barcode") +public class BcrExaminationBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.15"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrFollowupBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrFollowupBarcode.java new file mode 100644 index 0000000..83a90c7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrFollowupBarcode.java @@ -0,0 +1,362 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_followup_barcode") +public class BcrFollowupBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrFollowupUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrFollowupUuid.java new file mode 100644 index 0000000..2cc6544 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BcrFollowupUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_followup_uuid") +public class BcrFollowupUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BirthControlPillHistoryUsageCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BirthControlPillHistoryUsageCategory.java new file mode 100644 index 0000000..8eb05d8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BirthControlPillHistoryUsageCategory.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104217" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class BirthControlPillHistoryUsageCategory + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BirthCountry.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BirthCountry.java new file mode 100644 index 0000000..85f929d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BirthCountry.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3703369" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class BirthCountry + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BloodRelativeWithCancer.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BloodRelativeWithCancer.java new file mode 100644 index 0000000..5d8d655 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/BloodRelativeWithCancer.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3703369" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class BloodRelativeWithCancer + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CadHeartAttackIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CadHeartAttackIndicator.java new file mode 100644 index 0000000..ca04997 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CadHeartAttackIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2195439" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class CadHeartAttackIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2195439"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CancerDiagnosisCancerTypeIcd9TextName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CancerDiagnosisCancerTypeIcd9TextName.java new file mode 100644 index 0000000..57cff71 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CancerDiagnosisCancerTypeIcd9TextName.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2195089" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class CancerDiagnosisCancerTypeIcd9TextName + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CancerFirstDegreeRelative.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CancerFirstDegreeRelative.java new file mode 100644 index 0000000..6ee19d9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CancerFirstDegreeRelative.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3171640" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class CancerFirstDegreeRelative { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3171640"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChemoTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChemoTherapy.java new file mode 100644 index 0000000..56a9277 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChemoTherapy.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2756823" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "chemo_therapy") +public class ChemoTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2756823"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.9"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChemotherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChemotherapyEnd.java new file mode 100644 index 0000000..891f2a5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChemotherapyEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2188260" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "chemotherapy_end") +public class ChemotherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2188260"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChestRadiationIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChestRadiationIndicator.java new file mode 100644 index 0000000..ac277d3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChestRadiationIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2603192" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ChestRadiationIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2603192"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposure.java new file mode 100644 index 0000000..652c6d9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182223" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ChildhoodSmokeExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182223"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposurePerDay.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposurePerDay.java new file mode 100644 index 0000000..d4afe58 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposurePerDay.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182264" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="hours" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ChildhoodSmokeExposurePerDay { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182264"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "hours"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposureYears.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposureYears.java new file mode 100644 index 0000000..6d30b6a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ChildhoodSmokeExposureYears.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2190208" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ChildhoodSmokeExposureYears { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2190208"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Comorbidity.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Comorbidity.java new file mode 100644 index 0000000..d7ca894 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Comorbidity.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2970715" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Comorbidity + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CopdIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CopdIndicator.java new file mode 100644 index 0000000..367f740 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CopdIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2816773" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class CopdIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2816773"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CountryOfOrigin.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CountryOfOrigin.java new file mode 100644 index 0000000..5bb7b31 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CountryOfOrigin.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "country_of_origin") +public class CountryOfOrigin + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CrystallineSilicaExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CrystallineSilicaExposure.java new file mode 100644 index 0000000..16c357d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CrystallineSilicaExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193911" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class CrystallineSilicaExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193911"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CtScan.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CtScan.java new file mode 100644 index 0000000..cce4999 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CtScan.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3534857" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "ct_scan") +public class CtScan { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3534857"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CtScanFindings.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CtScanFindings.java new file mode 100644 index 0000000..8b5bea4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CtScanFindings.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3151439" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "ct_scan_findings") +public class CtScanFindings + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CytogeneticAbnormality.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CytogeneticAbnormality.java new file mode 100644 index 0000000..4fbc2b2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CytogeneticAbnormality.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2760451" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class CytogeneticAbnormality + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CytogeneticAbnormalityList.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CytogeneticAbnormalityList.java new file mode 100644 index 0000000..7d7cb48 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/CytogeneticAbnormalityList.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}cytogenetic_abnormality" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "cytogeneticAbnormality" +}) +@XmlRootElement(name = "cytogenetic_abnormality_list") +public class CytogeneticAbnormalityList { + + @XmlElement(name = "cytogenetic_abnormality", nillable = true) + protected List cytogeneticAbnormality; + + /** + * Gets the value of the cytogeneticAbnormality 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 cytogeneticAbnormality property. + * + *

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

+     *    getCytogeneticAbnormality().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CytogeneticAbnormality } + * + * + */ + public List getCytogeneticAbnormality() { + if (cytogeneticAbnormality == null) { + cytogeneticAbnormality = new ArrayList(); + } + return this.cytogeneticAbnormality; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfBirth.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfBirth.java new file mode 100644 index 0000000..d31cf49 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfBirth.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896952" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_birth") +public class DayOfBirth { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896952"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfClinicalDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfClinicalDiagnosis.java new file mode 100644 index 0000000..20a28e5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfClinicalDiagnosis.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102356" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfClinicalDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102356"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfDeath.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfDeath.java new file mode 100644 index 0000000..34c26ec --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfDeath.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897028" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_death") +public class DayOfDeath { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897028"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstCompleteResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstCompleteResponse.java new file mode 100644 index 0000000..97e941b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstCompleteResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886978" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfFirstCompleteResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886978"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstPartialResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstPartialResponse.java new file mode 100644 index 0000000..ae2c3fe --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstPartialResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886996" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfFirstPartialResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886996"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstResponse.java new file mode 100644 index 0000000..80041a2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFirstResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886972" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfFirstResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886972"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFormCompletion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFormCompletion.java new file mode 100644 index 0000000..588df96 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfFormCompletion.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2975716" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfFormCompletion { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2975716"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfInitialPathologicDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfInitialPathologicDiagnosis.java new file mode 100644 index 0000000..f4cacb8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfInitialPathologicDiagnosis.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896958" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfInitialPathologicDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896958"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfLastFollowup.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfLastFollowup.java new file mode 100644 index 0000000..d307fce --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfLastFollowup.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897022" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfLastFollowup { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897022"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfLastKnownAlive.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfLastKnownAlive.java new file mode 100644 index 0000000..2d01fde --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfLastKnownAlive.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2975724" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_last_known_alive") +public class DayOfLastKnownAlive { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2975724"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.1"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfMostRecentDateOfLastContact.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfMostRecentDateOfLastContact.java new file mode 100644 index 0000000..7f0ebc5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfMostRecentDateOfLastContact.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5116088" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_most_recent_date_of_last_contact") +public class DayOfMostRecentDateOfLastContact { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5116088"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfPatientProgressionFree.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfPatientProgressionFree.java new file mode 100644 index 0000000..7f5484e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfPatientProgressionFree.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886953" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfPatientProgressionFree { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886953"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfPerformanceStatusAssessment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfPerformanceStatusAssessment.java new file mode 100644 index 0000000..cfc11ac --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfPerformanceStatusAssessment.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3151125" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfPerformanceStatusAssessment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3151125"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTreatmentEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTreatmentEnd.java new file mode 100644 index 0000000..b3ba3de --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTreatmentEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102388" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_treatment_end") +public class DayOfTreatmentEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102388"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTreatmentStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTreatmentStart.java new file mode 100644 index 0000000..650f072 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTreatmentStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102385" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_treatment_start") +public class DayOfTreatmentStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102385"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTumorProgression.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTumorProgression.java new file mode 100644 index 0000000..a2c00d2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTumorProgression.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897016" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfTumorProgression { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897016"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTumorRecurrence.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTumorRecurrence.java new file mode 100644 index 0000000..57e6834 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DayOfTumorRecurrence.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897006" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfTumorRecurrence { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897006"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToBirth.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToBirth.java new file mode 100644 index 0000000..7ff0c89 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToBirth.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008233" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_birth") +public class DaysToBirth + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToClinicalDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToClinicalDiagnosis.java new file mode 100644 index 0000000..7956eb6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToClinicalDiagnosis.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102380" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_clinical_diagnosis") +public class DaysToClinicalDiagnosis + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToDeath.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToDeath.java new file mode 100644 index 0000000..c09eb2c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToDeath.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3165475" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_death") +public class DaysToDeath + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstCompleteResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstCompleteResponse.java new file mode 100644 index 0000000..90f4d86 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstCompleteResponse.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4887531" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_first_complete_response") +public class DaysToFirstCompleteResponse + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstPartialResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstPartialResponse.java new file mode 100644 index 0000000..50fd0a3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstPartialResponse.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4887532" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_first_partial_response") +public class DaysToFirstPartialResponse + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstResponse.java new file mode 100644 index 0000000..54abf75 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFirstResponse.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4887523" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_first_response") +public class DaysToFirstResponse + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFormCompletion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFormCompletion.java new file mode 100644 index 0000000..1eec464 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToFormCompletion.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_form_completion") +public class DaysToFormCompletion + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToInitialPathologicDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToInitialPathologicDiagnosis.java new file mode 100644 index 0000000..e86c71a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToInitialPathologicDiagnosis.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008275" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_initial_pathologic_diagnosis") +public class DaysToInitialPathologicDiagnosis + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToLastFollowup.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToLastFollowup.java new file mode 100644 index 0000000..14b4eec --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToLastFollowup.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008273" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_last_followup") +public class DaysToLastFollowup + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToLastKnownAlive.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToLastKnownAlive.java new file mode 100644 index 0000000..36b523a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToLastKnownAlive.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3131740" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_last_known_alive") +public class DaysToLastKnownAlive + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToMostRecentDateOfLastContact.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToMostRecentDateOfLastContact.java new file mode 100644 index 0000000..f3a1262 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToMostRecentDateOfLastContact.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5116090" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_most_recent_date_of_last_contact") +public class DaysToMostRecentDateOfLastContact + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToPatientProgressionFree.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToPatientProgressionFree.java new file mode 100644 index 0000000..e85f4ea --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToPatientProgressionFree.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4887491" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_patient_progression_free") +public class DaysToPatientProgressionFree + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToPerformanceStatusAssessment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToPerformanceStatusAssessment.java new file mode 100644 index 0000000..984542a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToPerformanceStatusAssessment.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3479270" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_performance_status_assessment") +public class DaysToPerformanceStatusAssessment + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTreatmentEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTreatmentEnd.java new file mode 100644 index 0000000..3e501da --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTreatmentEnd.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102431" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_treatment_end") +public class DaysToTreatmentEnd + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTreatmentStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTreatmentStart.java new file mode 100644 index 0000000..fcc43d6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTreatmentStart.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102411" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_treatment_start") +public class DaysToTreatmentStart + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTumorProgression.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTumorProgression.java new file mode 100644 index 0000000..84ea2ea --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTumorProgression.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3165480" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_tumor_progression") +public class DaysToTumorProgression + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTumorRecurrence.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTumorRecurrence.java new file mode 100644 index 0000000..2348ae1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DaysToTumorRecurrence.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3479874" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_tumor_recurrence") +public class DaysToTumorRecurrence + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DeathCauseText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DeathCauseText.java new file mode 100644 index 0000000..ae96109 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DeathCauseText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2004150" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DeathCauseText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2004150"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DiabetesIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DiabetesIndicator.java new file mode 100644 index 0000000..b70f0bf --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DiabetesIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2183380" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DiabetesIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2183380"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DieselExhaustExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DieselExhaustExposure.java new file mode 100644 index 0000000..c4777cc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DieselExhaustExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193901" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DieselExhaustExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193901"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerEpidemiology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerEpidemiology.java new file mode 100644 index 0000000..5bffe15 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerEpidemiology.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3944974" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DifficultToAnswerEpidemiology { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3944974"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerExposure.java new file mode 100644 index 0000000..811a54b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3944974" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DifficultToAnswerExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3944974"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerFamily.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerFamily.java new file mode 100644 index 0000000..916fff9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerFamily.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3944974" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DifficultToAnswerFamily { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3944974"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerSmoking.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerSmoking.java new file mode 100644 index 0000000..12bbca3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/DifficultToAnswerSmoking.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3944974" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DifficultToAnswerSmoking { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3944974"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/EasternCancerOncologyGroup.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/EasternCancerOncologyGroup.java new file mode 100644 index 0000000..0154199 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/EasternCancerOncologyGroup.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="88" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "eastern_cancer_oncology_group") +public class EasternCancerOncologyGroup + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErDiseaseExtentPriorErTreatment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErDiseaseExtentPriorErTreatment.java new file mode 100644 index 0000000..b6f3096 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErDiseaseExtentPriorErTreatment.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2007719" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ErDiseaseExtentPriorErTreatment + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErEstimatedDurationResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErEstimatedDurationResponse.java new file mode 100644 index 0000000..4c4179f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErEstimatedDurationResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="1098" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ErEstimatedDurationResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "1098"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErResponseType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErResponseType.java new file mode 100644 index 0000000..a68cd75 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErResponseType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2187835" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ErResponseType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErSolidTumorResponseDocumentedType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErSolidTumorResponseDocumentedType.java new file mode 100644 index 0000000..1549661 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErSolidTumorResponseDocumentedType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4101853" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ErSolidTumorResponseDocumentedType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErSolidTumorResponseDocumentedTypeOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErSolidTumorResponseDocumentedTypeOther.java new file mode 100644 index 0000000..f92444e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ErSolidTumorResponseDocumentedTypeOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4129472" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ErSolidTumorResponseDocumentedTypeOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4129472"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Ethnicity.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Ethnicity.java new file mode 100644 index 0000000..555e00b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Ethnicity.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2192217" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Ethnicity + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ExtranodalRadiationField.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ExtranodalRadiationField.java new file mode 100644 index 0000000..7368b4e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ExtranodalRadiationField.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2416537" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "extranodal_radiation_field") +public class ExtranodalRadiationField + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FamilyMemberRelationshipType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FamilyMemberRelationshipType.java new file mode 100644 index 0000000..8a6559d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FamilyMemberRelationshipType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2783641" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class FamilyMemberRelationshipType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Field.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Field.java new file mode 100644 index 0000000..513486f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Field.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "field") +public class Field + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FollowupCaseReportFormSubmissionReason.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FollowupCaseReportFormSubmissionReason.java new file mode 100644 index 0000000..8daad3c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FollowupCaseReportFormSubmissionReason.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233305" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class FollowupCaseReportFormSubmissionReason + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FollowupTreatmentSuccess.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FollowupTreatmentSuccess.java new file mode 100644 index 0000000..30c978e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FollowupTreatmentSuccess.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104050" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class FollowupTreatmentSuccess + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FrequencyOfAlcoholConsumption.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FrequencyOfAlcoholConsumption.java new file mode 100644 index 0000000..c4f472b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/FrequencyOfAlcoholConsumption.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3114013" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class FrequencyOfAlcoholConsumption { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3114013"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Height.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Height.java new file mode 100644 index 0000000..d309d82 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Height.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="649" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="cm" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Height + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HighestEducationAchieved.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HighestEducationAchieved.java new file mode 100644 index 0000000..722ae94 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HighestEducationAchieved.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2854160" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class HighestEducationAchieved + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryOfRadiationMetastaticSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryOfRadiationMetastaticSite.java new file mode 100644 index 0000000..32f2bb8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryOfRadiationMetastaticSite.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2332" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HistoryOfRadiationMetastaticSite { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2332"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryOfRadiationPrimarySite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryOfRadiationPrimarySite.java new file mode 100644 index 0000000..d940720 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryOfRadiationPrimarySite.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2182189" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HistoryOfRadiationPrimarySite { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2182189"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryIndicator.java new file mode 100644 index 0000000..76492ae --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="1071" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HistoryPriorSurgeryIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "1071"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryType.java new file mode 100644 index 0000000..f046315 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4297170" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class HistoryPriorSurgeryType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryTypeOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryTypeOther.java new file mode 100644 index 0000000..a74a7f8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HistoryPriorSurgeryTypeOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3121814" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HistoryPriorSurgeryTypeOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3121814"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HivAidsIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HivAidsIndicator.java new file mode 100644 index 0000000..7d2dbbc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HivAidsIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2180373" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HivAidsIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2180373"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HormonalTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HormonalTherapy.java new file mode 100644 index 0000000..5fd7f94 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HormonalTherapy.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2199669" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HormonalTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2199669"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.9"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HypertensionIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HypertensionIndicator.java new file mode 100644 index 0000000..b8abfe1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/HypertensionIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2183378" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HypertensionIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2183378"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Icd10.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Icd10.java new file mode 100644 index 0000000..543cb26 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Icd10.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3226287" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Icd10 + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/IcdO3Histology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/IcdO3Histology.java new file mode 100644 index 0000000..e03ff03 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/IcdO3Histology.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3226275" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class IcdO3Histology + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/IcdO3Site.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/IcdO3Site.java new file mode 100644 index 0000000..4a8d8e4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/IcdO3Site.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3226281" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class IcdO3Site + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ImmunoTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ImmunoTherapy.java new file mode 100644 index 0000000..615a8c7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ImmunoTherapy.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2756814" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "immuno_therapy") +public class ImmunoTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2756814"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.9"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InformedConsentVerified.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InformedConsentVerified.java new file mode 100644 index 0000000..4bc3f41 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InformedConsentVerified.java @@ -0,0 +1,46 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3288361" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "informed_consent_verified") +public class InformedConsentVerified + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InitPathologyDxMethodOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InitPathologyDxMethodOther.java new file mode 100644 index 0000000..bbabc7b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InitPathologyDxMethodOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2757948" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class InitPathologyDxMethodOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2757948"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InitialPathologicDiagnosisMethod.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InitialPathologicDiagnosisMethod.java new file mode 100644 index 0000000..30223c9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/InitialPathologicDiagnosisMethod.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2757941" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class InitialPathologicDiagnosisMethod + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/KarnofskyPerformanceScore.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/KarnofskyPerformanceScore.java new file mode 100644 index 0000000..9668345 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/KarnofskyPerformanceScore.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2003853" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "karnofsky_performance_score") +public class KarnofskyPerformanceScore + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LactateDehydrogenaseResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LactateDehydrogenaseResult.java new file mode 100644 index 0000000..83132d5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LactateDehydrogenaseResult.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3113468" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class LactateDehydrogenaseResult + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Laterality.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Laterality.java new file mode 100644 index 0000000..4897226 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Laterality.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="827" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Laterality + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LostFollowUp.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LostFollowUp.java new file mode 100644 index 0000000..aedd2f7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LostFollowUp.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="61333" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "lost_follow_up") +public class LostFollowUp { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "61333"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphNodeExaminedCount.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphNodeExaminedCount.java new file mode 100644 index 0000000..239c2ee --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphNodeExaminedCount.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class LymphNodeExaminedCount { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphaticInvasion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphaticInvasion.java new file mode 100644 index 0000000..2012bb5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphaticInvasion.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="64171" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "lymphatic_invasion") +public class LymphaticInvasion { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "64171"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphovascularInvasionPresent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphovascularInvasionPresent.java new file mode 100644 index 0000000..efde976 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/LymphovascularInvasionPresent.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="64727" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class LymphovascularInvasionPresent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "64727"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MarginStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MarginStatus.java new file mode 100644 index 0000000..51979a4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MarginStatus.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3114007" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MarginStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MaritalStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MaritalStatus.java new file mode 100644 index 0000000..7f5a17a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MaritalStatus.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2001707" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MaritalStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MaximumTumorDiameter.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MaximumTumorDiameter.java new file mode 100644 index 0000000..f60cc0f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MaximumTumorDiameter.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2183705" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="cm" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MaximumTumorDiameter { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2183705"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "cm"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MeasureOfResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MeasureOfResponse.java new file mode 100644 index 0000000..e513b66 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MeasureOfResponse.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2857291" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MeasureOfResponse + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MeddraCode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MeddraCode.java new file mode 100644 index 0000000..7f4d7f8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MeddraCode.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2004425" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MeddraCode { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2004425"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MenopauseStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MenopauseStatus.java new file mode 100644 index 0000000..9ca2689 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MenopauseStatus.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2957270" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MenopauseStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSite.java new file mode 100644 index 0000000..a90d48a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSite.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="62835" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MetastaticSite + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteAtDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteAtDiagnosis.java new file mode 100644 index 0000000..4b2be27 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteAtDiagnosis.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3124499" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MetastaticSiteAtDiagnosis + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteAtDiagnosisOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteAtDiagnosisOther.java new file mode 100644 index 0000000..db2c06f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteAtDiagnosisOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3124503" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticSiteAtDiagnosisOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3124503"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteList.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteList.java new file mode 100644 index 0000000..7b1be12 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetastaticSiteList.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}metastatic_site" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "metastaticSite" +}) +@XmlRootElement(name = "metastatic_site_list") +public class MetastaticSiteList { + + @XmlElement(name = "metastatic_site", nillable = true) + protected List metastaticSite; + + /** + * Gets the value of the metastaticSite 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 metastaticSite property. + * + *

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

+     *    getMetastaticSite().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetastaticSite } + * + * + */ + public List getMetastaticSite() { + if (metastaticSite == null) { + metastaticSite = new ArrayList(); + } + return this.metastaticSite; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetforminUseCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetforminUseCategory.java new file mode 100644 index 0000000..7ffaab3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MetforminUseCategory.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4175547" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MetforminUseCategory + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MethodOfClinicalDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MethodOfClinicalDiagnosis.java new file mode 100644 index 0000000..63c138a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MethodOfClinicalDiagnosis.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102378" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MethodOfClinicalDiagnosis + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MineralDustExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MineralDustExposure.java new file mode 100644 index 0000000..1978926 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MineralDustExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193914" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MineralDustExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193914"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MitoticCount.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MitoticCount.java new file mode 100644 index 0000000..4b0552f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MitoticCount.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3227319" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="Mitosis/10 HPF" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MitoticCount { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3227319"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "Mitosis/10 HPF"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MolecularAbnormalityResults.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MolecularAbnormalityResults.java new file mode 100644 index 0000000..aa69731 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MolecularAbnormalityResults.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3121628" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class MolecularAbnormalityResults + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MolecularAbnormalityResultsOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MolecularAbnormalityResultsOther.java new file mode 100644 index 0000000..2031f57 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MolecularAbnormalityResultsOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4500214" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MolecularAbnormalityResultsOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4500214"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfBirth.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfBirth.java new file mode 100644 index 0000000..6dc6488 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfBirth.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896950" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_birth") +public class MonthOfBirth { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896950"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfClinicalDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfClinicalDiagnosis.java new file mode 100644 index 0000000..d4b72e0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfClinicalDiagnosis.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102357" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfClinicalDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102357"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfDeath.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfDeath.java new file mode 100644 index 0000000..c4c147c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfDeath.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897026" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_death") +public class MonthOfDeath { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897026"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstCompleteResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstCompleteResponse.java new file mode 100644 index 0000000..03e5904 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstCompleteResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886974" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfFirstCompleteResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886974"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstPartialResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstPartialResponse.java new file mode 100644 index 0000000..bf35374 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstPartialResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886991" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfFirstPartialResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886991"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstResponse.java new file mode 100644 index 0000000..87d137c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFirstResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886971" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfFirstResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886971"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFormCompletion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFormCompletion.java new file mode 100644 index 0000000..4b95888 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfFormCompletion.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2975718" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfFormCompletion { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2975718"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfInitialPathologicDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfInitialPathologicDiagnosis.java new file mode 100644 index 0000000..860a28b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfInitialPathologicDiagnosis.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896956" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfInitialPathologicDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896956"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfLastFollowup.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfLastFollowup.java new file mode 100644 index 0000000..176e958 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfLastFollowup.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897020" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfLastFollowup { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897020"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfLastKnownAlive.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfLastKnownAlive.java new file mode 100644 index 0000000..eaa0b4d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfLastKnownAlive.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2975722" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_last_known_alive") +public class MonthOfLastKnownAlive { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2975722"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.1"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfMostRecentDateOfLastContact.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfMostRecentDateOfLastContact.java new file mode 100644 index 0000000..e7847ad --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfMostRecentDateOfLastContact.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5116087" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_most_recent_date_of_last_contact") +public class MonthOfMostRecentDateOfLastContact { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5116087"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfPatientProgressionFree.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfPatientProgressionFree.java new file mode 100644 index 0000000..8539789 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfPatientProgressionFree.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886952" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfPatientProgressionFree { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886952"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfPerformanceStatusAssessment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfPerformanceStatusAssessment.java new file mode 100644 index 0000000..8c7fee5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfPerformanceStatusAssessment.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3151124" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfPerformanceStatusAssessment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3151124"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTreatmentEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTreatmentEnd.java new file mode 100644 index 0000000..e0996a8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTreatmentEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102387" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_treatment_end") +public class MonthOfTreatmentEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102387"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTreatmentStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTreatmentStart.java new file mode 100644 index 0000000..9b4cf06 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTreatmentStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102384" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_treatment_start") +public class MonthOfTreatmentStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102384"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTumorProgression.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTumorProgression.java new file mode 100644 index 0000000..1bdb218 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTumorProgression.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897014" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfTumorProgression { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897014"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTumorRecurrence.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTumorRecurrence.java new file mode 100644 index 0000000..04d1038 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/MonthOfTumorRecurrence.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896991" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfTumorRecurrence { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896991"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberCycles.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberCycles.java new file mode 100644 index 0000000..7162458 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberCycles.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="62590" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "number_cycles") +public class NumberCycles { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "62590"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberOfLymphnodesPositiveByHe.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberOfLymphnodesPositiveByHe.java new file mode 100644 index 0000000..895547c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberOfLymphnodesPositiveByHe.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3086388" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NumberOfLymphnodesPositiveByHe { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3086388"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberOfLymphnodesPositiveByIhc.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberOfLymphnodesPositiveByIhc.java new file mode 100644 index 0000000..0a46412 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberOfLymphnodesPositiveByIhc.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3086383" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NumberOfLymphnodesPositiveByIhc { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3086383"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberPackYearsSmoked.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberPackYearsSmoked.java new file mode 100644 index 0000000..055f31d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/NumberPackYearsSmoked.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2955385" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NumberPackYearsSmoked { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2955385"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ObjectFactory.java new file mode 100644 index 0000000..eb8ed7d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ObjectFactory.java @@ -0,0 +1,4148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2 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 _NumberOfLymphnodesPositiveByHe_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "number_of_lymphnodes_positive_by_he"); + private final static QName _PneumoniaIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "pneumonia_indicator"); + private final static QName _HighestEducationAchieved_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "highest_education_achieved"); + private final static QName _HormonalTherapy_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "hormonal_therapy"); + private final static QName _HistoryPriorSurgeryType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "history_prior_surgery_type"); + private final static QName _LymphNodeExaminedCount_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "lymph_node_examined_count"); + private final static QName _AlcoholHistoryDocumented_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "alcohol_history_documented"); + private final static QName _ChildhoodSmokeExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "childhood_smoke_exposure"); + private final static QName _MonthOfFormCompletion_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_form_completion"); + private final static QName _RelativeDeathIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "relative_death_indicator"); + private final static QName _SocialSmokeExposurePerDay_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "social_smoke_exposure_per_day"); + private final static QName _PersonOccupationYearsNumber_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "person_occupation_years_number"); + private final static QName _OxygenUseIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "oxygen_use_indicator"); + private final static QName _LymphovascularInvasionPresent_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "lymphovascular_invasion_present"); + private final static QName _ResidualTumor_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "residual_tumor"); + private final static QName _PostOpAblationEmbolizationTx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "post_op_ablation_embolization_tx"); + private final static QName _FamilyMemberRelationshipType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "family_member_relationship_type"); + private final static QName _MitoticCount_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "mitotic_count"); + private final static QName _TumorResidualDisease_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "tumor_residual_disease"); + private final static QName _Weight_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "weight"); + private final static QName _ChestRadiationIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "chest_radiation_indicator"); + private final static QName _OtherMetastaticSite_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_metastatic_site"); + private final static QName _HistoryOfRadiationMetastaticSite_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "history_of_radiation_metastatic_site"); + private final static QName _PrimaryTherapyOutcomeSuccess_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "primary_therapy_outcome_success"); + private final static QName _ViralHepatitisSerology_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "viral_hepatitis_serology"); + private final static QName _SmokingCessationDurationUnits_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "smoking_cessation_duration_units"); + private final static QName _AcetaminophenUseCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "acetaminophen_use_category"); + private final static QName _TargetedMolecularTherapy_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "targeted_molecular_therapy"); + private final static QName _YearOfFirstResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_first_response"); + private final static QName _DifficultToAnswerSmoking_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "difficult_to_answer_smoking"); + private final static QName _FollowupCaseReportFormSubmissionReason_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "followup_case_report_form_submission_reason"); + private final static QName _CopdIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "copd_indicator"); + private final static QName _AmountOfAlcoholConsumptionPerDay_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "amount_of_alcohol_consumption_per_day"); + private final static QName _OtherDustExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_dust_exposure"); + private final static QName _ErDiseaseExtentPriorErTreatment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "er_disease_extent_prior_er_treatment"); + private final static QName _BirthCountry_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "birth_country"); + private final static QName _DayOfPatientProgressionFree_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_patient_progression_free"); + private final static QName _CancerFirstDegreeRelative_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "cancer_first_degree_relative"); + private final static QName _SocialSmokeExposureYears_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "social_smoke_exposure_years"); + private final static QName _MaximumTumorDiameter_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "maximum_tumor_diameter"); + private final static QName _HypertensionIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "hypertension_indicator"); + private final static QName _OccupationPrimaryJob_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "occupation_primary_job"); + private final static QName _DeathCauseText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "death_cause_text"); + private final static QName _MeddraCode_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "meddra_code"); + private final static QName _MeasureOfResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "measure_of_response"); + private final static QName _NumberOfLymphnodesPositiveByIhc_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "number_of_lymphnodes_positive_by_ihc"); + private final static QName _SourceOfPatientDeathReason_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "source_of_patient_death_reason"); + private final static QName _OxygenUseType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "oxygen_use_type"); + private final static QName _SocialSmokeExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "social_smoke_exposure"); + private final static QName _OtherTobaccoProductDuration_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_tobacco_product_duration"); + private final static QName _InitPathologyDxMethodOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "init_pathology_dx_method_other"); + private final static QName _YearOfFirstCompleteResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_first_complete_response"); + private final static QName _OtherRadiationOtherMalignancy_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_radiation_other_malignancy"); + private final static QName _RelativeFamilyCancerHistory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "relative_family_cancer_history"); + private final static QName _TumorTissueSiteOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "tumor_tissue_site_other"); + private final static QName _YearOfLastFollowup_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_last_followup"); + private final static QName _Ethnicity_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "ethnicity"); + private final static QName _DayOfTumorProgression_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_tumor_progression"); + private final static QName _ErSolidTumorResponseDocumentedType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "er_solid_tumor_response_documented_type"); + private final static QName _LactateDehydrogenaseResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "lactate_dehydrogenase_result"); + private final static QName _TissueProspectiveCollectionIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "tissue_prospective_collection_indicator"); + private final static QName _YearOfPerformanceStatusAssessment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_performance_status_assessment"); + private final static QName _Laterality_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "laterality"); + private final static QName _YearOfHypertensionDx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_hypertension_dx"); + private final static QName _OtherTobaccoProductDailyUse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_tobacco_product_daily_use"); + private final static QName _MonthOfFirstResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_first_response"); + private final static QName _WeightPriorToDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "weight_prior_to_diagnosis"); + private final static QName _MineralDustExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "mineral_dust_exposure"); + private final static QName _YearOfFirstPartialResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_first_partial_response"); + private final static QName _OtherTherapyOtherMalignancyUnknown_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_therapy_other_malignancy_unknown"); + private final static QName _MonthOfTumorRecurrence_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_tumor_recurrence"); + private final static QName _MonthOfFirstPartialResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_first_partial_response"); + private final static QName _CrystallineSilicaExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "crystalline_silica_exposure"); + private final static QName _StoppedSmokingYear_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "stopped_smoking_year"); + private final static QName _OtherTherapyOtherMalignancy_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_therapy_other_malignancy"); + private final static QName _TissueRetrospectiveCollectionIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "tissue_retrospective_collection_indicator"); + private final static QName _DifficultToAnswerFamily_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "difficult_to_answer_family"); + private final static QName _InitialPathologicDiagnosisMethod_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "initial_pathologic_diagnosis_method"); + private final static QName _HivAidsIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "hiv_aids_indicator"); + private final static QName _YearOfHivAidsDx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_hiv_aids_dx"); + private final static QName _SmokingDurationYears_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "smoking_duration_years"); + private final static QName _MetastaticSite_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "metastatic_site"); + private final static QName _DayOfFirstCompleteResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_first_complete_response"); + private final static QName _DayOfFirstResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_first_response"); + private final static QName _MetastaticSiteAtDiagnosisOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "metastatic_site_at_diagnosis_other"); + private final static QName _FrequencyOfAlcoholConsumption_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "frequency_of_alcohol_consumption"); + private final static QName _WorkplaceSmokeExposurePerDay_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "workplace_smoke_exposure_per_day"); + private final static QName _CadHeartAttackIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "cad_heart_attack_indicator"); + private final static QName _AdditionalTreatmentCompletionSuccessOutcome_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "additional_treatment_completion_success_outcome"); + private final static QName _AdultSmokeExposureYears_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "adult_smoke_exposure_years"); + private final static QName _PriorSystemicTherapyType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "prior_systemic_therapy_type"); + private final static QName _MonthOfPatientProgressionFree_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_patient_progression_free"); + private final static QName _AnatomicNeoplasmSubdivision_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "anatomic_neoplasm_subdivision"); + private final static QName _PrimaryTherapyOutcomeSuccessAtFollowup_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "primary_therapy_outcome_success_at_followup"); + private final static QName _Height_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "height"); + private final static QName _HistoryOfRadiationPrimarySite_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "history_of_radiation_primary_site"); + private final static QName _ErResponseType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "er_response_type"); + private final static QName _AsthmaIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "asthma_indicator"); + private final static QName _OtherTherapyOtherMalignancyText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_therapy_other_malignancy_text"); + private final static QName _PersonNeoplasmCancerStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "person_neoplasm_cancer_status"); + private final static QName _YearOfCopdDx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_copd_dx"); + private final static QName _OtherDustExposureType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_dust_exposure_type"); + private final static QName _StatinUseCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "statin_use_category"); + private final static QName _PlateletResultCount_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "platelet_result_count"); + private final static QName _ChildhoodSmokeExposurePerDay_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "childhood_smoke_exposure_per_day"); + private final static QName _BloodRelativeWithCancer_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "blood_relative_with_cancer"); + private final static QName _MaritalStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "marital_status"); + private final static QName _DifficultToAnswerEpidemiology_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "difficult_to_answer_epidemiology"); + private final static QName _HistoryPriorSurgeryTypeOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "history_prior_surgery_type_other"); + private final static QName _SmokingCessationIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "smoking_cessation_indicator"); + private final static QName _YearOfAsthmaDx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_asthma_dx"); + private final static QName _DayOfTumorRecurrence_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_tumor_recurrence"); + private final static QName _DayOfLastFollowup_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_last_followup"); + private final static QName _OccupationAssessmentIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "occupation_assessment_indicator"); + private final static QName _RadiationTherapyEnd_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "radiation_therapy_end"); + private final static QName _YearOfStrokeDx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_stroke_dx"); + private final static QName _MetastaticSiteAtDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "metastatic_site_at_diagnosis"); + private final static QName _YearOfFormCompletion_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_form_completion"); + private final static QName _SmokingTimeInDayBegins_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "smoking_time_in_day_begins"); + private final static QName _YearOfPneumoniaDx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_pneumonia_dx"); + private final static QName _SmokingCessationDuration_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "smoking_cessation_duration"); + private final static QName _ErSolidTumorResponseDocumentedTypeOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "er_solid_tumor_response_documented_type_other"); + private final static QName _RadioactiveMaterialExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "radioactive_material_exposure"); + private final static QName _YearOfInitialPathologicDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_initial_pathologic_diagnosis"); + private final static QName _AdultSmokeExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "adult_smoke_exposure"); + private final static QName _NumberPackYearsSmoked_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "number_pack_years_smoked"); + private final static QName _DiabetesIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "diabetes_indicator"); + private final static QName _DayOfFirstPartialResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_first_partial_response"); + private final static QName _MenopauseStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "menopause_status"); + private final static QName _PhysicalExerciseDaysPerWeek_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "physical_exercise_days_per_week"); + private final static QName _FollowupTreatmentSuccess_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "followup_treatment_success"); + private final static QName _MonthOfTumorProgression_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_tumor_progression"); + private final static QName _OtherTobaccoProductIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_tobacco_product_indicator"); + private final static QName _AssessmentTimepointCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "assessment_timepoint_category"); + private final static QName _IcdO3Histology_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "icd_o_3_histology"); + private final static QName _MonthOfClinicalDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_clinical_diagnosis"); + private final static QName _PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "post_surgical_procedure_assessment_thyroid_gland_carcinoma_status"); + private final static QName _SmokingHistoryIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "smoking_history_indicator"); + private final static QName _ChildhoodSmokeExposureYears_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "childhood_smoke_exposure_years"); + private final static QName _YearOfDiabetesDx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_diabetes_dx"); + private final static QName _ErEstimatedDurationResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "er_estimated_duration_response"); + private final static QName _YearOfTumorProgression_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_tumor_progression"); + private final static QName _OtherGasExposureType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_gas_exposure_type"); + private final static QName _MonthOfPerformanceStatusAssessment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_performance_status_assessment"); + private final static QName _MonthOfInitialPathologicDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_initial_pathologic_diagnosis"); + private final static QName _Comorbidity_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "comorbidity"); + private final static QName _YearOfPatientProgressionFree_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_patient_progression_free"); + private final static QName _DayOfFormCompletion_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_form_completion"); + private final static QName _YearOfTobaccoSmokingOnset_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_tobacco_smoking_onset"); + private final static QName _DayOfPerformanceStatusAssessment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_performance_status_assessment"); + private final static QName _MonthOfFirstCompleteResponse_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_first_complete_response"); + private final static QName _HistoryPriorSurgeryIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "history_prior_surgery_indicator"); + private final static QName _DieselExhaustExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "diesel_exhaust_exposure"); + private final static QName _AnatomicNeoplasmSubdivisionOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "anatomic_neoplasm_subdivision_other"); + private final static QName _YearOfCadHeartAttackDx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_cad_heart_attack_dx"); + private final static QName _RadiationTherapyTotalDosage_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "radiation_therapy_total_dosage"); + private final static QName _WorkplaceSmokeExposureYears_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "workplace_smoke_exposure_years"); + private final static QName _MethodOfClinicalDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "method_of_clinical_diagnosis"); + private final static QName _MonthOfLastFollowup_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "month_of_last_followup"); + private final static QName _SmokingAvgCigarettesPerDay_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "smoking_avg_cigarettes_per_day"); + private final static QName _MetforminUseCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "metformin_use_category"); + private final static QName _IcdO3Site_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "icd_o_3_site"); + private final static QName _MolecularAbnormalityResultsOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "molecular_abnormality_results_other"); + private final static QName _WoodDustExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "wood_dust_exposure"); + private final static QName _WorkplaceSmokeExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "workplace_smoke_exposure"); + private final static QName _AsbestosExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "asbestos_exposure"); + private final static QName _AgeBeganSmokingInYears_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "age_began_smoking_in_years"); + private final static QName _PrimaryLymphNodePresentationAssessment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "primary_lymph_node_presentation_assessment"); + private final static QName _OtherGasExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_gas_exposure"); + private final static QName _SmokingFrequency_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "smoking_frequency"); + private final static QName _MarginStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "margin_status"); + private final static QName _PerineuralInvasionPresent_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "perineural_invasion_present"); + private final static QName _YearOfOtherMalignancy_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_other_malignancy"); + private final static QName _YearOfTumorRecurrence_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "year_of_tumor_recurrence"); + private final static QName _CancerDiagnosisCancerTypeIcd9TextName_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "cancer_diagnosis_cancer_type_icd9_text_name"); + private final static QName _PatientProgressionStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "patient_progression_status"); + private final static QName _CytogeneticAbnormality_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "cytogenetic_abnormality"); + private final static QName _DayOfInitialPathologicDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_initial_pathologic_diagnosis"); + private final static QName _Icd10_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "icd_10"); + private final static QName _AspirinUseCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "aspirin_use_category"); + private final static QName _AdultSmokeExposurePerDay_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "adult_smoke_exposure_per_day"); + private final static QName _DayOfClinicalDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "day_of_clinical_diagnosis"); + private final static QName _BirthControlPillHistoryUsageCategory_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "birth_control_pill_history_usage_category"); + private final static QName _MolecularAbnormalityResults_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "molecular_abnormality_results"); + private final static QName _DifficultToAnswerExposure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "difficult_to_answer_exposure"); + private final static QName _OtherTobaccoProductType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "other_tobacco_product_type"); + private final static QName _PostoperativeRxTx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "postoperative_rx_tx"); + private final static QName _RelativeSmokingHistoryIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "relative_smoking_history_indicator"); + private final static QName _StrokeIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/2.7", "stroke_indicator"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link TumorTissueSite } + * + */ + public TumorTissueSite createTumorTissueSite() { + return new TumorTissueSite(); + } + + /** + * Create an instance of {@link VitalStatus } + * + */ + public VitalStatus createVitalStatus() { + return new VitalStatus(); + } + + /** + * Create an instance of {@link DayOfBirth } + * + */ + public DayOfBirth createDayOfBirth() { + return new DayOfBirth(); + } + + /** + * Create an instance of {@link MonthOfBirth } + * + */ + public MonthOfBirth createMonthOfBirth() { + return new MonthOfBirth(); + } + + /** + * Create an instance of {@link YearOfBirth } + * + */ + public YearOfBirth createYearOfBirth() { + return new YearOfBirth(); + } + + /** + * Create an instance of {@link DaysToBirth } + * + */ + public DaysToBirth createDaysToBirth() { + return new DaysToBirth(); + } + + /** + * Create an instance of {@link DayOfLastKnownAlive } + * + */ + public DayOfLastKnownAlive createDayOfLastKnownAlive() { + return new DayOfLastKnownAlive(); + } + + /** + * Create an instance of {@link MonthOfLastKnownAlive } + * + */ + public MonthOfLastKnownAlive createMonthOfLastKnownAlive() { + return new MonthOfLastKnownAlive(); + } + + /** + * Create an instance of {@link YearOfLastKnownAlive } + * + */ + public YearOfLastKnownAlive createYearOfLastKnownAlive() { + return new YearOfLastKnownAlive(); + } + + /** + * Create an instance of {@link DaysToLastKnownAlive } + * + */ + public DaysToLastKnownAlive createDaysToLastKnownAlive() { + return new DaysToLastKnownAlive(); + } + + /** + * Create an instance of {@link DayOfDeath } + * + */ + public DayOfDeath createDayOfDeath() { + return new DayOfDeath(); + } + + /** + * Create an instance of {@link MonthOfDeath } + * + */ + public MonthOfDeath createMonthOfDeath() { + return new MonthOfDeath(); + } + + /** + * Create an instance of {@link YearOfDeath } + * + */ + public YearOfDeath createYearOfDeath() { + return new YearOfDeath(); + } + + /** + * Create an instance of {@link DaysToDeath } + * + */ + public DaysToDeath createDaysToDeath() { + return new DaysToDeath(); + } + + /** + * Create an instance of {@link DayOfLastFollowup } + * + */ + public DayOfLastFollowup createDayOfLastFollowup() { + return new DayOfLastFollowup(); + } + + /** + * Create an instance of {@link MonthOfLastFollowup } + * + */ + public MonthOfLastFollowup createMonthOfLastFollowup() { + return new MonthOfLastFollowup(); + } + + /** + * Create an instance of {@link YearOfLastFollowup } + * + */ + public YearOfLastFollowup createYearOfLastFollowup() { + return new YearOfLastFollowup(); + } + + /** + * Create an instance of {@link DaysToLastFollowup } + * + */ + public DaysToLastFollowup createDaysToLastFollowup() { + return new DaysToLastFollowup(); + } + + /** + * Create an instance of {@link RaceList } + * + */ + public RaceList createRaceList() { + return new RaceList(); + } + + /** + * Create an instance of {@link Race } + * + */ + public Race createRace() { + return new Race(); + } + + /** + * Create an instance of {@link InformedConsentVerified } + * + */ + public InformedConsentVerified createInformedConsentVerified() { + return new InformedConsentVerified(); + } + + /** + * Create an instance of {@link IcdO3Site } + * + */ + public IcdO3Site createIcdO3Site() { + return new IcdO3Site(); + } + + /** + * Create an instance of {@link IcdO3Histology } + * + */ + public IcdO3Histology createIcdO3Histology() { + return new IcdO3Histology(); + } + + /** + * Create an instance of {@link Icd10 } + * + */ + public Icd10 createIcd10() { + return new Icd10(); + } + + /** + * Create an instance of {@link TissueProspectiveCollectionIndicator } + * + */ + public TissueProspectiveCollectionIndicator createTissueProspectiveCollectionIndicator() { + return new TissueProspectiveCollectionIndicator(); + } + + /** + * Create an instance of {@link TissueRetrospectiveCollectionIndicator } + * + */ + public TissueRetrospectiveCollectionIndicator createTissueRetrospectiveCollectionIndicator() { + return new TissueRetrospectiveCollectionIndicator(); + } + + /** + * Create an instance of {@link Ethnicity } + * + */ + public Ethnicity createEthnicity() { + return new Ethnicity(); + } + + /** + * Create an instance of {@link PersonNeoplasmCancerStatus } + * + */ + public PersonNeoplasmCancerStatus createPersonNeoplasmCancerStatus() { + return new PersonNeoplasmCancerStatus(); + } + + /** + * Create an instance of {@link PerformanceStatusScaleTiming } + * + */ + public PerformanceStatusScaleTiming createPerformanceStatusScaleTiming() { + return new PerformanceStatusScaleTiming(); + } + + /** + * Create an instance of {@link DayOfInitialPathologicDiagnosis } + * + */ + public DayOfInitialPathologicDiagnosis createDayOfInitialPathologicDiagnosis() { + return new DayOfInitialPathologicDiagnosis(); + } + + /** + * Create an instance of {@link MonthOfInitialPathologicDiagnosis } + * + */ + public MonthOfInitialPathologicDiagnosis createMonthOfInitialPathologicDiagnosis() { + return new MonthOfInitialPathologicDiagnosis(); + } + + /** + * Create an instance of {@link DaysToInitialPathologicDiagnosis } + * + */ + public DaysToInitialPathologicDiagnosis createDaysToInitialPathologicDiagnosis() { + return new DaysToInitialPathologicDiagnosis(); + } + + /** + * Create an instance of {@link AgeAtInitialPathologicDiagnosis } + * + */ + public AgeAtInitialPathologicDiagnosis createAgeAtInitialPathologicDiagnosis() { + return new AgeAtInitialPathologicDiagnosis(); + } + + /** + * Create an instance of {@link YearOfInitialPathologicDiagnosis } + * + */ + public YearOfInitialPathologicDiagnosis createYearOfInitialPathologicDiagnosis() { + return new YearOfInitialPathologicDiagnosis(); + } + + /** + * Create an instance of {@link DayOfFormCompletion } + * + */ + public DayOfFormCompletion createDayOfFormCompletion() { + return new DayOfFormCompletion(); + } + + /** + * Create an instance of {@link MonthOfFormCompletion } + * + */ + public MonthOfFormCompletion createMonthOfFormCompletion() { + return new MonthOfFormCompletion(); + } + + /** + * Create an instance of {@link YearOfFormCompletion } + * + */ + public YearOfFormCompletion createYearOfFormCompletion() { + return new YearOfFormCompletion(); + } + + /** + * Create an instance of {@link DaysToFormCompletion } + * + */ + public DaysToFormCompletion createDaysToFormCompletion() { + return new DaysToFormCompletion(); + } + + /** + * Create an instance of {@link Laterality } + * + */ + public Laterality createLaterality() { + return new Laterality(); + } + + /** + * Create an instance of {@link LactateDehydrogenaseResult } + * + */ + public LactateDehydrogenaseResult createLactateDehydrogenaseResult() { + return new LactateDehydrogenaseResult(); + } + + /** + * Create an instance of {@link LymphNodeExaminedCount } + * + */ + public LymphNodeExaminedCount createLymphNodeExaminedCount() { + return new LymphNodeExaminedCount(); + } + + /** + * Create an instance of {@link KarnofskyPerformanceScore } + * + */ + public KarnofskyPerformanceScore createKarnofskyPerformanceScore() { + return new KarnofskyPerformanceScore(); + } + + /** + * Create an instance of {@link EasternCancerOncologyGroup } + * + */ + public EasternCancerOncologyGroup createEasternCancerOncologyGroup() { + return new EasternCancerOncologyGroup(); + } + + /** + * Create an instance of {@link PrimaryLymphNodePresentationAssessment } + * + */ + public PrimaryLymphNodePresentationAssessment createPrimaryLymphNodePresentationAssessment() { + return new PrimaryLymphNodePresentationAssessment(); + } + + /** + * Create an instance of {@link YearOfTobaccoSmokingOnset } + * + */ + public YearOfTobaccoSmokingOnset createYearOfTobaccoSmokingOnset() { + return new YearOfTobaccoSmokingOnset(); + } + + /** + * Create an instance of {@link StoppedSmokingYear } + * + */ + public StoppedSmokingYear createStoppedSmokingYear() { + return new StoppedSmokingYear(); + } + + /** + * Create an instance of {@link NumberPackYearsSmoked } + * + */ + public NumberPackYearsSmoked createNumberPackYearsSmoked() { + return new NumberPackYearsSmoked(); + } + + /** + * Create an instance of {@link TargetedMolecularTherapy } + * + */ + public TargetedMolecularTherapy createTargetedMolecularTherapy() { + return new TargetedMolecularTherapy(); + } + + /** + * Create an instance of {@link PostoperativeRxTx } + * + */ + public PostoperativeRxTx createPostoperativeRxTx() { + return new PostoperativeRxTx(); + } + + /** + * Create an instance of {@link RadiationTherapy } + * + */ + public RadiationTherapy createRadiationTherapy() { + return new RadiationTherapy(); + } + + /** + * Create an instance of {@link PrimaryTherapyOutcomeSuccess } + * + */ + public PrimaryTherapyOutcomeSuccess createPrimaryTherapyOutcomeSuccess() { + return new PrimaryTherapyOutcomeSuccess(); + } + + /** + * Create an instance of {@link PharmRegimen } + * + */ + public PharmRegimen createPharmRegimen() { + return new PharmRegimen(); + } + + /** + * Create an instance of {@link PharmRegimenOther } + * + */ + public PharmRegimenOther createPharmRegimenOther() { + return new PharmRegimenOther(); + } + + /** + * Create an instance of {@link RegimenIndication } + * + */ + public RegimenIndication createRegimenIndication() { + return new RegimenIndication(); + } + + /** + * Create an instance of {@link RegimenIndicationNotes } + * + */ + public RegimenIndicationNotes createRegimenIndicationNotes() { + return new RegimenIndicationNotes(); + } + + /** + * Create an instance of {@link MeasureOfResponse } + * + */ + public MeasureOfResponse createMeasureOfResponse() { + return new MeasureOfResponse(); + } + + /** + * Create an instance of {@link BcrFollowupBarcode } + * + */ + public BcrFollowupBarcode createBcrFollowupBarcode() { + return new BcrFollowupBarcode(); + } + + /** + * Create an instance of {@link BcrFollowupUuid } + * + */ + public BcrFollowupUuid createBcrFollowupUuid() { + return new BcrFollowupUuid(); + } + + /** + * Create an instance of {@link LostFollowUp } + * + */ + public LostFollowUp createLostFollowUp() { + return new LostFollowUp(); + } + + /** + * Create an instance of {@link FollowupTreatmentSuccess } + * + */ + public FollowupTreatmentSuccess createFollowupTreatmentSuccess() { + return new FollowupTreatmentSuccess(); + } + + /** + * Create an instance of {@link FollowupCaseReportFormSubmissionReason } + * + */ + public FollowupCaseReportFormSubmissionReason createFollowupCaseReportFormSubmissionReason() { + return new FollowupCaseReportFormSubmissionReason(); + } + + /** + * Create an instance of {@link AdultSmokeExposureYears } + * + */ + public AdultSmokeExposureYears createAdultSmokeExposureYears() { + return new AdultSmokeExposureYears(); + } + + /** + * Create an instance of {@link CadHeartAttackIndicator } + * + */ + public CadHeartAttackIndicator createCadHeartAttackIndicator() { + return new CadHeartAttackIndicator(); + } + + /** + * Create an instance of {@link DaysToTreatmentStart } + * + */ + public DaysToTreatmentStart createDaysToTreatmentStart() { + return new DaysToTreatmentStart(); + } + + /** + * Create an instance of {@link AdditionalTreatmentCompletionSuccessOutcome } + * + */ + public AdditionalTreatmentCompletionSuccessOutcome createAdditionalTreatmentCompletionSuccessOutcome() { + return new AdditionalTreatmentCompletionSuccessOutcome(); + } + + /** + * Create an instance of {@link CytogeneticAbnormalityList } + * + */ + public CytogeneticAbnormalityList createCytogeneticAbnormalityList() { + return new CytogeneticAbnormalityList(); + } + + /** + * Create an instance of {@link CytogeneticAbnormality } + * + */ + public CytogeneticAbnormality createCytogeneticAbnormality() { + return new CytogeneticAbnormality(); + } + + /** + * Create an instance of {@link PriorSystemicTherapyType } + * + */ + public PriorSystemicTherapyType createPriorSystemicTherapyType() { + return new PriorSystemicTherapyType(); + } + + /** + * Create an instance of {@link DaysToFirstResponse } + * + */ + public DaysToFirstResponse createDaysToFirstResponse() { + return new DaysToFirstResponse(); + } + + /** + * Create an instance of {@link MonthOfPatientProgressionFree } + * + */ + public MonthOfPatientProgressionFree createMonthOfPatientProgressionFree() { + return new MonthOfPatientProgressionFree(); + } + + /** + * Create an instance of {@link AnatomicNeoplasmSubdivision } + * + */ + public AnatomicNeoplasmSubdivision createAnatomicNeoplasmSubdivision() { + return new AnatomicNeoplasmSubdivision(); + } + + /** + * Create an instance of {@link PrimaryTherapyOutcomeSuccessAtFollowup } + * + */ + public PrimaryTherapyOutcomeSuccessAtFollowup createPrimaryTherapyOutcomeSuccessAtFollowup() { + return new PrimaryTherapyOutcomeSuccessAtFollowup(); + } + + /** + * Create an instance of {@link MonthOfMostRecentDateOfLastContact } + * + */ + public MonthOfMostRecentDateOfLastContact createMonthOfMostRecentDateOfLastContact() { + return new MonthOfMostRecentDateOfLastContact(); + } + + /** + * Create an instance of {@link Height } + * + */ + public Height createHeight() { + return new Height(); + } + + /** + * Create an instance of {@link HivAidsIndicator } + * + */ + public HivAidsIndicator createHivAidsIndicator() { + return new HivAidsIndicator(); + } + + /** + * Create an instance of {@link InitialPathologicDiagnosisMethod } + * + */ + public InitialPathologicDiagnosisMethod createInitialPathologicDiagnosisMethod() { + return new InitialPathologicDiagnosisMethod(); + } + + /** + * Create an instance of {@link DifficultToAnswerFamily } + * + */ + public DifficultToAnswerFamily createDifficultToAnswerFamily() { + return new DifficultToAnswerFamily(); + } + + /** + * Create an instance of {@link CountryOfOrigin } + * + */ + public CountryOfOrigin createCountryOfOrigin() { + return new CountryOfOrigin(); + } + + /** + * Create an instance of {@link YearOfHivAidsDx } + * + */ + public YearOfHivAidsDx createYearOfHivAidsDx() { + return new YearOfHivAidsDx(); + } + + /** + * Create an instance of {@link MetastaticSiteAtDiagnosisOther } + * + */ + public MetastaticSiteAtDiagnosisOther createMetastaticSiteAtDiagnosisOther() { + return new MetastaticSiteAtDiagnosisOther(); + } + + /** + * Create an instance of {@link FrequencyOfAlcoholConsumption } + * + */ + public FrequencyOfAlcoholConsumption createFrequencyOfAlcoholConsumption() { + return new FrequencyOfAlcoholConsumption(); + } + + /** + * Create an instance of {@link DayOfFirstResponse } + * + */ + public DayOfFirstResponse createDayOfFirstResponse() { + return new DayOfFirstResponse(); + } + + /** + * Create an instance of {@link SmokingDurationYears } + * + */ + public SmokingDurationYears createSmokingDurationYears() { + return new SmokingDurationYears(); + } + + /** + * Create an instance of {@link MetastaticSite } + * + */ + public MetastaticSite createMetastaticSite() { + return new MetastaticSite(); + } + + /** + * Create an instance of {@link DayOfFirstCompleteResponse } + * + */ + public DayOfFirstCompleteResponse createDayOfFirstCompleteResponse() { + return new DayOfFirstCompleteResponse(); + } + + /** + * Create an instance of {@link ExtranodalRadiationField } + * + */ + public ExtranodalRadiationField createExtranodalRadiationField() { + return new ExtranodalRadiationField(); + } + + /** + * Create an instance of {@link ProgressionDates } + * + */ + public ProgressionDates createProgressionDates() { + return new ProgressionDates(); + } + + /** + * Create an instance of {@link MonthOfTumorProgression } + * + */ + public MonthOfTumorProgression createMonthOfTumorProgression() { + return new MonthOfTumorProgression(); + } + + /** + * Create an instance of {@link DayOfTumorProgression } + * + */ + public DayOfTumorProgression createDayOfTumorProgression() { + return new DayOfTumorProgression(); + } + + /** + * Create an instance of {@link YearOfTumorProgression } + * + */ + public YearOfTumorProgression createYearOfTumorProgression() { + return new YearOfTumorProgression(); + } + + /** + * Create an instance of {@link DaysToTumorProgression } + * + */ + public DaysToTumorProgression createDaysToTumorProgression() { + return new DaysToTumorProgression(); + } + + /** + * Create an instance of {@link DayOfPatientProgressionFree } + * + */ + public DayOfPatientProgressionFree createDayOfPatientProgressionFree() { + return new DayOfPatientProgressionFree(); + } + + /** + * Create an instance of {@link YearOfPatientProgressionFree } + * + */ + public YearOfPatientProgressionFree createYearOfPatientProgressionFree() { + return new YearOfPatientProgressionFree(); + } + + /** + * Create an instance of {@link DaysToPatientProgressionFree } + * + */ + public DaysToPatientProgressionFree createDaysToPatientProgressionFree() { + return new DaysToPatientProgressionFree(); + } + + /** + * Create an instance of {@link WorkplaceSmokeExposurePerDay } + * + */ + public WorkplaceSmokeExposurePerDay createWorkplaceSmokeExposurePerDay() { + return new WorkplaceSmokeExposurePerDay(); + } + + /** + * Create an instance of {@link ProgressionDeterminedByNotes } + * + */ + public ProgressionDeterminedByNotes createProgressionDeterminedByNotes() { + return new ProgressionDeterminedByNotes(); + } + + /** + * Create an instance of {@link YearOfMostRecentDateOfLastContact } + * + */ + public YearOfMostRecentDateOfLastContact createYearOfMostRecentDateOfLastContact() { + return new YearOfMostRecentDateOfLastContact(); + } + + /** + * Create an instance of {@link ProgressionStatus } + * + */ + public ProgressionStatus createProgressionStatus() { + return new ProgressionStatus(); + } + + /** + * Create an instance of {@link DaysToPerformanceStatusAssessment } + * + */ + public DaysToPerformanceStatusAssessment createDaysToPerformanceStatusAssessment() { + return new DaysToPerformanceStatusAssessment(); + } + + /** + * Create an instance of {@link ErSolidTumorResponseDocumentedType } + * + */ + public ErSolidTumorResponseDocumentedType createErSolidTumorResponseDocumentedType() { + return new ErSolidTumorResponseDocumentedType(); + } + + /** + * Create an instance of {@link YearOfHypertensionDx } + * + */ + public YearOfHypertensionDx createYearOfHypertensionDx() { + return new YearOfHypertensionDx(); + } + + /** + * Create an instance of {@link OtherTobaccoProductDailyUse } + * + */ + public OtherTobaccoProductDailyUse createOtherTobaccoProductDailyUse() { + return new OtherTobaccoProductDailyUse(); + } + + /** + * Create an instance of {@link ChemotherapyEnd } + * + */ + public ChemotherapyEnd createChemotherapyEnd() { + return new ChemotherapyEnd(); + } + + /** + * Create an instance of {@link YearOfPerformanceStatusAssessment } + * + */ + public YearOfPerformanceStatusAssessment createYearOfPerformanceStatusAssessment() { + return new YearOfPerformanceStatusAssessment(); + } + + /** + * Create an instance of {@link DaysToFirstPartialResponse } + * + */ + public DaysToFirstPartialResponse createDaysToFirstPartialResponse() { + return new DaysToFirstPartialResponse(); + } + + /** + * Create an instance of {@link YearOfFirstPartialResponse } + * + */ + public YearOfFirstPartialResponse createYearOfFirstPartialResponse() { + return new YearOfFirstPartialResponse(); + } + + /** + * Create an instance of {@link MonthOfTumorRecurrence } + * + */ + public MonthOfTumorRecurrence createMonthOfTumorRecurrence() { + return new MonthOfTumorRecurrence(); + } + + /** + * Create an instance of {@link OtherTherapyOtherMalignancyUnknown } + * + */ + public OtherTherapyOtherMalignancyUnknown createOtherTherapyOtherMalignancyUnknown() { + return new OtherTherapyOtherMalignancyUnknown(); + } + + /** + * Create an instance of {@link MonthOfFirstResponse } + * + */ + public MonthOfFirstResponse createMonthOfFirstResponse() { + return new MonthOfFirstResponse(); + } + + /** + * Create an instance of {@link MineralDustExposure } + * + */ + public MineralDustExposure createMineralDustExposure() { + return new MineralDustExposure(); + } + + /** + * Create an instance of {@link WeightPriorToDiagnosis } + * + */ + public WeightPriorToDiagnosis createWeightPriorToDiagnosis() { + return new WeightPriorToDiagnosis(); + } + + /** + * Create an instance of {@link MonthOfFirstPartialResponse } + * + */ + public MonthOfFirstPartialResponse createMonthOfFirstPartialResponse() { + return new MonthOfFirstPartialResponse(); + } + + /** + * Create an instance of {@link CrystallineSilicaExposure } + * + */ + public CrystallineSilicaExposure createCrystallineSilicaExposure() { + return new CrystallineSilicaExposure(); + } + + /** + * Create an instance of {@link OtherTherapyOtherMalignancy } + * + */ + public OtherTherapyOtherMalignancy createOtherTherapyOtherMalignancy() { + return new OtherTherapyOtherMalignancy(); + } + + /** + * Create an instance of {@link ResponseDates } + * + */ + public ResponseDates createResponseDates() { + return new ResponseDates(); + } + + /** + * Create an instance of {@link YearOfFirstResponse } + * + */ + public YearOfFirstResponse createYearOfFirstResponse() { + return new YearOfFirstResponse(); + } + + /** + * Create an instance of {@link MonthOfFirstCompleteResponse } + * + */ + public MonthOfFirstCompleteResponse createMonthOfFirstCompleteResponse() { + return new MonthOfFirstCompleteResponse(); + } + + /** + * Create an instance of {@link YearOfFirstCompleteResponse } + * + */ + public YearOfFirstCompleteResponse createYearOfFirstCompleteResponse() { + return new YearOfFirstCompleteResponse(); + } + + /** + * Create an instance of {@link DaysToFirstCompleteResponse } + * + */ + public DaysToFirstCompleteResponse createDaysToFirstCompleteResponse() { + return new DaysToFirstCompleteResponse(); + } + + /** + * Create an instance of {@link DayOfFirstPartialResponse } + * + */ + public DayOfFirstPartialResponse createDayOfFirstPartialResponse() { + return new DayOfFirstPartialResponse(); + } + + /** + * Create an instance of {@link SourceOfPatientDeathReason } + * + */ + public SourceOfPatientDeathReason createSourceOfPatientDeathReason() { + return new SourceOfPatientDeathReason(); + } + + /** + * Create an instance of {@link OxygenUseType } + * + */ + public OxygenUseType createOxygenUseType() { + return new OxygenUseType(); + } + + /** + * Create an instance of {@link SocialSmokeExposure } + * + */ + public SocialSmokeExposure createSocialSmokeExposure() { + return new SocialSmokeExposure(); + } + + /** + * Create an instance of {@link OtherTobaccoProductDuration } + * + */ + public OtherTobaccoProductDuration createOtherTobaccoProductDuration() { + return new OtherTobaccoProductDuration(); + } + + /** + * Create an instance of {@link MeddraCode } + * + */ + public MeddraCode createMeddraCode() { + return new MeddraCode(); + } + + /** + * Create an instance of {@link ViralHepatitisSerologies } + * + */ + public ViralHepatitisSerologies createViralHepatitisSerologies() { + return new ViralHepatitisSerologies(); + } + + /** + * Create an instance of {@link ViralHepatitisSerology } + * + */ + public ViralHepatitisSerology createViralHepatitisSerology() { + return new ViralHepatitisSerology(); + } + + /** + * Create an instance of {@link NumberOfLymphnodesPositiveByIhc } + * + */ + public NumberOfLymphnodesPositiveByIhc createNumberOfLymphnodesPositiveByIhc() { + return new NumberOfLymphnodesPositiveByIhc(); + } + + /** + * Create an instance of {@link InitPathologyDxMethodOther } + * + */ + public InitPathologyDxMethodOther createInitPathologyDxMethodOther() { + return new InitPathologyDxMethodOther(); + } + + /** + * Create an instance of {@link TumorTissueSiteOther } + * + */ + public TumorTissueSiteOther createTumorTissueSiteOther() { + return new TumorTissueSiteOther(); + } + + /** + * Create an instance of {@link NumberCycles } + * + */ + public NumberCycles createNumberCycles() { + return new NumberCycles(); + } + + /** + * Create an instance of {@link RelativeFamilyCancerHistory } + * + */ + public RelativeFamilyCancerHistory createRelativeFamilyCancerHistory() { + return new RelativeFamilyCancerHistory(); + } + + /** + * Create an instance of {@link OtherRadiationOtherMalignancy } + * + */ + public OtherRadiationOtherMalignancy createOtherRadiationOtherMalignancy() { + return new OtherRadiationOtherMalignancy(); + } + + /** + * Create an instance of {@link AmountOfAlcoholConsumptionPerDay } + * + */ + public AmountOfAlcoholConsumptionPerDay createAmountOfAlcoholConsumptionPerDay() { + return new AmountOfAlcoholConsumptionPerDay(); + } + + /** + * Create an instance of {@link Agent } + * + */ + public Agent createAgent() { + return new Agent(); + } + + /** + * Create an instance of {@link CopdIndicator } + * + */ + public CopdIndicator createCopdIndicator() { + return new CopdIndicator(); + } + + /** + * Create an instance of {@link CancerFirstDegreeRelative } + * + */ + public CancerFirstDegreeRelative createCancerFirstDegreeRelative() { + return new CancerFirstDegreeRelative(); + } + + /** + * Create an instance of {@link SocialSmokeExposureYears } + * + */ + public SocialSmokeExposureYears createSocialSmokeExposureYears() { + return new SocialSmokeExposureYears(); + } + + /** + * Create an instance of {@link ErDiseaseExtentPriorErTreatment } + * + */ + public ErDiseaseExtentPriorErTreatment createErDiseaseExtentPriorErTreatment() { + return new ErDiseaseExtentPriorErTreatment(); + } + + /** + * Create an instance of {@link OtherDustExposure } + * + */ + public OtherDustExposure createOtherDustExposure() { + return new OtherDustExposure(); + } + + /** + * Create an instance of {@link BirthCountry } + * + */ + public BirthCountry createBirthCountry() { + return new BirthCountry(); + } + + /** + * Create an instance of {@link MaximumTumorDiameter } + * + */ + public MaximumTumorDiameter createMaximumTumorDiameter() { + return new MaximumTumorDiameter(); + } + + /** + * Create an instance of {@link HypertensionIndicator } + * + */ + public HypertensionIndicator createHypertensionIndicator() { + return new HypertensionIndicator(); + } + + /** + * Create an instance of {@link DeathCauseText } + * + */ + public DeathCauseText createDeathCauseText() { + return new DeathCauseText(); + } + + /** + * Create an instance of {@link StemCellTransplantation } + * + */ + public StemCellTransplantation createStemCellTransplantation() { + return new StemCellTransplantation(); + } + + /** + * Create an instance of {@link OccupationPrimaryJob } + * + */ + public OccupationPrimaryJob createOccupationPrimaryJob() { + return new OccupationPrimaryJob(); + } + + /** + * Create an instance of {@link DaysToTumorRecurrence } + * + */ + public DaysToTumorRecurrence createDaysToTumorRecurrence() { + return new DaysToTumorRecurrence(); + } + + /** + * Create an instance of {@link FamilyMemberRelationshipType } + * + */ + public FamilyMemberRelationshipType createFamilyMemberRelationshipType() { + return new FamilyMemberRelationshipType(); + } + + /** + * Create an instance of {@link TumorResidualDisease } + * + */ + public TumorResidualDisease createTumorResidualDisease() { + return new TumorResidualDisease(); + } + + /** + * Create an instance of {@link Weight } + * + */ + public Weight createWeight() { + return new Weight(); + } + + /** + * Create an instance of {@link MitoticCount } + * + */ + public MitoticCount createMitoticCount() { + return new MitoticCount(); + } + + /** + * Create an instance of {@link ChestRadiationIndicator } + * + */ + public ChestRadiationIndicator createChestRadiationIndicator() { + return new ChestRadiationIndicator(); + } + + /** + * Create an instance of {@link TumorTissueSiteList } + * + */ + public TumorTissueSiteList createTumorTissueSiteList() { + return new TumorTissueSiteList(); + } + + /** + * Create an instance of {@link OtherMetastaticSite } + * + */ + public OtherMetastaticSite createOtherMetastaticSite() { + return new OtherMetastaticSite(); + } + + /** + * Create an instance of {@link HistoryOfRadiationMetastaticSite } + * + */ + public HistoryOfRadiationMetastaticSite createHistoryOfRadiationMetastaticSite() { + return new HistoryOfRadiationMetastaticSite(); + } + + /** + * Create an instance of {@link AcetaminophenUseCategory } + * + */ + public AcetaminophenUseCategory createAcetaminophenUseCategory() { + return new AcetaminophenUseCategory(); + } + + /** + * Create an instance of {@link DifficultToAnswerSmoking } + * + */ + public DifficultToAnswerSmoking createDifficultToAnswerSmoking() { + return new DifficultToAnswerSmoking(); + } + + /** + * Create an instance of {@link TumorMorphology } + * + */ + public TumorMorphology createTumorMorphology() { + return new TumorMorphology(); + } + + /** + * Create an instance of {@link SmokingCessationDurationUnits } + * + */ + public SmokingCessationDurationUnits createSmokingCessationDurationUnits() { + return new SmokingCessationDurationUnits(); + } + + /** + * Create an instance of {@link MetastaticSiteList } + * + */ + public MetastaticSiteList createMetastaticSiteList() { + return new MetastaticSiteList(); + } + + /** + * Create an instance of {@link RelativeDeathIndicator } + * + */ + public RelativeDeathIndicator createRelativeDeathIndicator() { + return new RelativeDeathIndicator(); + } + + /** + * Create an instance of {@link TreatmentTypeOther } + * + */ + public TreatmentTypeOther createTreatmentTypeOther() { + return new TreatmentTypeOther(); + } + + /** + * Create an instance of {@link ChildhoodSmokeExposure } + * + */ + public ChildhoodSmokeExposure createChildhoodSmokeExposure() { + return new ChildhoodSmokeExposure(); + } + + /** + * Create an instance of {@link MonthOfTreatmentEnd } + * + */ + public MonthOfTreatmentEnd createMonthOfTreatmentEnd() { + return new MonthOfTreatmentEnd(); + } + + /** + * Create an instance of {@link LymphaticInvasion } + * + */ + public LymphaticInvasion createLymphaticInvasion() { + return new LymphaticInvasion(); + } + + /** + * Create an instance of {@link OxygenUseIndicator } + * + */ + public OxygenUseIndicator createOxygenUseIndicator() { + return new OxygenUseIndicator(); + } + + /** + * Create an instance of {@link SocialSmokeExposurePerDay } + * + */ + public SocialSmokeExposurePerDay createSocialSmokeExposurePerDay() { + return new SocialSmokeExposurePerDay(); + } + + /** + * Create an instance of {@link PersonOccupationYearsNumber } + * + */ + public PersonOccupationYearsNumber createPersonOccupationYearsNumber() { + return new PersonOccupationYearsNumber(); + } + + /** + * Create an instance of {@link LymphovascularInvasionPresent } + * + */ + public LymphovascularInvasionPresent createLymphovascularInvasionPresent() { + return new LymphovascularInvasionPresent(); + } + + /** + * Create an instance of {@link PatientDeathReason } + * + */ + public PatientDeathReason createPatientDeathReason() { + return new PatientDeathReason(); + } + + /** + * Create an instance of {@link ResidualTumor } + * + */ + public ResidualTumor createResidualTumor() { + return new ResidualTumor(); + } + + /** + * Create an instance of {@link PostOpAblationEmbolizationTx } + * + */ + public PostOpAblationEmbolizationTx createPostOpAblationEmbolizationTx() { + return new PostOpAblationEmbolizationTx(); + } + + /** + * Create an instance of {@link YearOfTreatmentEnd } + * + */ + public YearOfTreatmentEnd createYearOfTreatmentEnd() { + return new YearOfTreatmentEnd(); + } + + /** + * Create an instance of {@link DaysToClinicalDiagnosis } + * + */ + public DaysToClinicalDiagnosis createDaysToClinicalDiagnosis() { + return new DaysToClinicalDiagnosis(); + } + + /** + * Create an instance of {@link TargetedNodalRegion } + * + */ + public TargetedNodalRegion createTargetedNodalRegion() { + return new TargetedNodalRegion(); + } + + /** + * Create an instance of {@link HormonalTherapy } + * + */ + public HormonalTherapy createHormonalTherapy() { + return new HormonalTherapy(); + } + + /** + * Create an instance of {@link HistoryPriorSurgeryType } + * + */ + public HistoryPriorSurgeryType createHistoryPriorSurgeryType() { + return new HistoryPriorSurgeryType(); + } + + /** + * Create an instance of {@link NumberOfLymphnodesPositiveByHe } + * + */ + public NumberOfLymphnodesPositiveByHe createNumberOfLymphnodesPositiveByHe() { + return new NumberOfLymphnodesPositiveByHe(); + } + + /** + * Create an instance of {@link PneumoniaIndicator } + * + */ + public PneumoniaIndicator createPneumoniaIndicator() { + return new PneumoniaIndicator(); + } + + /** + * Create an instance of {@link HighestEducationAchieved } + * + */ + public HighestEducationAchieved createHighestEducationAchieved() { + return new HighestEducationAchieved(); + } + + /** + * Create an instance of {@link YearOfTreatmentStart } + * + */ + public YearOfTreatmentStart createYearOfTreatmentStart() { + return new YearOfTreatmentStart(); + } + + /** + * Create an instance of {@link AlcoholHistoryDocumented } + * + */ + public AlcoholHistoryDocumented createAlcoholHistoryDocumented() { + return new AlcoholHistoryDocumented(); + } + + /** + * Create an instance of {@link ImmunoTherapy } + * + */ + public ImmunoTherapy createImmunoTherapy() { + return new ImmunoTherapy(); + } + + /** + * Create an instance of {@link YearOfClinicalDiagnosis } + * + */ + public YearOfClinicalDiagnosis createYearOfClinicalDiagnosis() { + return new YearOfClinicalDiagnosis(); + } + + /** + * Create an instance of {@link AdultSmokeExposurePerDay } + * + */ + public AdultSmokeExposurePerDay createAdultSmokeExposurePerDay() { + return new AdultSmokeExposurePerDay(); + } + + /** + * Create an instance of {@link AspirinUseCategory } + * + */ + public AspirinUseCategory createAspirinUseCategory() { + return new AspirinUseCategory(); + } + + /** + * Create an instance of {@link VenousInvasion } + * + */ + public VenousInvasion createVenousInvasion() { + return new VenousInvasion(); + } + + /** + * Create an instance of {@link MolecularAbnormalityResults } + * + */ + public MolecularAbnormalityResults createMolecularAbnormalityResults() { + return new MolecularAbnormalityResults(); + } + + /** + * Create an instance of {@link DifficultToAnswerExposure } + * + */ + public DifficultToAnswerExposure createDifficultToAnswerExposure() { + return new DifficultToAnswerExposure(); + } + + /** + * Create an instance of {@link DayOfClinicalDiagnosis } + * + */ + public DayOfClinicalDiagnosis createDayOfClinicalDiagnosis() { + return new DayOfClinicalDiagnosis(); + } + + /** + * Create an instance of {@link BirthControlPillHistoryUsageCategory } + * + */ + public BirthControlPillHistoryUsageCategory createBirthControlPillHistoryUsageCategory() { + return new BirthControlPillHistoryUsageCategory(); + } + + /** + * Create an instance of {@link OtherTobaccoProductType } + * + */ + public OtherTobaccoProductType createOtherTobaccoProductType() { + return new OtherTobaccoProductType(); + } + + /** + * Create an instance of {@link StrokeIndicator } + * + */ + public StrokeIndicator createStrokeIndicator() { + return new StrokeIndicator(); + } + + /** + * Create an instance of {@link RelativeSmokingHistoryIndicator } + * + */ + public RelativeSmokingHistoryIndicator createRelativeSmokingHistoryIndicator() { + return new RelativeSmokingHistoryIndicator(); + } + + /** + * Create an instance of {@link SmokingFrequency } + * + */ + public SmokingFrequency createSmokingFrequency() { + return new SmokingFrequency(); + } + + /** + * Create an instance of {@link MarginStatus } + * + */ + public MarginStatus createMarginStatus() { + return new MarginStatus(); + } + + /** + * Create an instance of {@link PerineuralInvasionPresent } + * + */ + public PerineuralInvasionPresent createPerineuralInvasionPresent() { + return new PerineuralInvasionPresent(); + } + + /** + * Create an instance of {@link DayOfTreatmentEnd } + * + */ + public DayOfTreatmentEnd createDayOfTreatmentEnd() { + return new DayOfTreatmentEnd(); + } + + /** + * Create an instance of {@link YearOfTumorRecurrence } + * + */ + public YearOfTumorRecurrence createYearOfTumorRecurrence() { + return new YearOfTumorRecurrence(); + } + + /** + * Create an instance of {@link YearOfOtherMalignancy } + * + */ + public YearOfOtherMalignancy createYearOfOtherMalignancy() { + return new YearOfOtherMalignancy(); + } + + /** + * Create an instance of {@link PatientProgressionStatus } + * + */ + public PatientProgressionStatus createPatientProgressionStatus() { + return new PatientProgressionStatus(); + } + + /** + * Create an instance of {@link Field } + * + */ + public Field createField() { + return new Field(); + } + + /** + * Create an instance of {@link CancerDiagnosisCancerTypeIcd9TextName } + * + */ + public CancerDiagnosisCancerTypeIcd9TextName createCancerDiagnosisCancerTypeIcd9TextName() { + return new CancerDiagnosisCancerTypeIcd9TextName(); + } + + /** + * Create an instance of {@link DayOfTreatmentStart } + * + */ + public DayOfTreatmentStart createDayOfTreatmentStart() { + return new DayOfTreatmentStart(); + } + + /** + * Create an instance of {@link AnatomicNeoplasmSubdivisionOther } + * + */ + public AnatomicNeoplasmSubdivisionOther createAnatomicNeoplasmSubdivisionOther() { + return new AnatomicNeoplasmSubdivisionOther(); + } + + /** + * Create an instance of {@link YearOfCadHeartAttackDx } + * + */ + public YearOfCadHeartAttackDx createYearOfCadHeartAttackDx() { + return new YearOfCadHeartAttackDx(); + } + + /** + * Create an instance of {@link RadiationTherapyTotalDosage } + * + */ + public RadiationTherapyTotalDosage createRadiationTherapyTotalDosage() { + return new RadiationTherapyTotalDosage(); + } + + /** + * Create an instance of {@link DieselExhaustExposure } + * + */ + public DieselExhaustExposure createDieselExhaustExposure() { + return new DieselExhaustExposure(); + } + + /** + * Create an instance of {@link HistoryPriorSurgeryIndicator } + * + */ + public HistoryPriorSurgeryIndicator createHistoryPriorSurgeryIndicator() { + return new HistoryPriorSurgeryIndicator(); + } + + /** + * Create an instance of {@link SmokingAvgCigarettesPerDay } + * + */ + public SmokingAvgCigarettesPerDay createSmokingAvgCigarettesPerDay() { + return new SmokingAvgCigarettesPerDay(); + } + + /** + * Create an instance of {@link MetforminUseCategory } + * + */ + public MetforminUseCategory createMetforminUseCategory() { + return new MetforminUseCategory(); + } + + /** + * Create an instance of {@link ChemoTherapy } + * + */ + public ChemoTherapy createChemoTherapy() { + return new ChemoTherapy(); + } + + /** + * Create an instance of {@link WorkplaceSmokeExposureYears } + * + */ + public WorkplaceSmokeExposureYears createWorkplaceSmokeExposureYears() { + return new WorkplaceSmokeExposureYears(); + } + + /** + * Create an instance of {@link MethodOfClinicalDiagnosis } + * + */ + public MethodOfClinicalDiagnosis createMethodOfClinicalDiagnosis() { + return new MethodOfClinicalDiagnosis(); + } + + /** + * Create an instance of {@link AgeBeganSmokingInYears } + * + */ + public AgeBeganSmokingInYears createAgeBeganSmokingInYears() { + return new AgeBeganSmokingInYears(); + } + + /** + * Create an instance of {@link WorkplaceSmokeExposure } + * + */ + public WorkplaceSmokeExposure createWorkplaceSmokeExposure() { + return new WorkplaceSmokeExposure(); + } + + /** + * Create an instance of {@link AsbestosExposure } + * + */ + public AsbestosExposure createAsbestosExposure() { + return new AsbestosExposure(); + } + + /** + * Create an instance of {@link MolecularAbnormalityResultsOther } + * + */ + public MolecularAbnormalityResultsOther createMolecularAbnormalityResultsOther() { + return new MolecularAbnormalityResultsOther(); + } + + /** + * Create an instance of {@link WoodDustExposure } + * + */ + public WoodDustExposure createWoodDustExposure() { + return new WoodDustExposure(); + } + + /** + * Create an instance of {@link BcrExaminationBarcode } + * + */ + public BcrExaminationBarcode createBcrExaminationBarcode() { + return new BcrExaminationBarcode(); + } + + /** + * Create an instance of {@link OtherGasExposure } + * + */ + public OtherGasExposure createOtherGasExposure() { + return new OtherGasExposure(); + } + + /** + * Create an instance of {@link TumorMorphologyList } + * + */ + public TumorMorphologyList createTumorMorphologyList() { + return new TumorMorphologyList(); + } + + /** + * Create an instance of {@link MonthOfTreatmentStart } + * + */ + public MonthOfTreatmentStart createMonthOfTreatmentStart() { + return new MonthOfTreatmentStart(); + } + + /** + * Create an instance of {@link ChildhoodSmokeExposureYears } + * + */ + public ChildhoodSmokeExposureYears createChildhoodSmokeExposureYears() { + return new ChildhoodSmokeExposureYears(); + } + + /** + * Create an instance of {@link SmokingHistoryIndicator } + * + */ + public SmokingHistoryIndicator createSmokingHistoryIndicator() { + return new SmokingHistoryIndicator(); + } + + /** + * Create an instance of {@link ErEstimatedDurationResponse } + * + */ + public ErEstimatedDurationResponse createErEstimatedDurationResponse() { + return new ErEstimatedDurationResponse(); + } + + /** + * Create an instance of {@link YearOfDiabetesDx } + * + */ + public YearOfDiabetesDx createYearOfDiabetesDx() { + return new YearOfDiabetesDx(); + } + + /** + * Create an instance of {@link MonthOfPerformanceStatusAssessment } + * + */ + public MonthOfPerformanceStatusAssessment createMonthOfPerformanceStatusAssessment() { + return new MonthOfPerformanceStatusAssessment(); + } + + /** + * Create an instance of {@link Comorbidity } + * + */ + public Comorbidity createComorbidity() { + return new Comorbidity(); + } + + /** + * Create an instance of {@link PatientSex } + * + */ + public PatientSex createPatientSex() { + return new PatientSex(); + } + + /** + * Create an instance of {@link OtherGasExposureType } + * + */ + public OtherGasExposureType createOtherGasExposureType() { + return new OtherGasExposureType(); + } + + /** + * Create an instance of {@link DayOfPerformanceStatusAssessment } + * + */ + public DayOfPerformanceStatusAssessment createDayOfPerformanceStatusAssessment() { + return new DayOfPerformanceStatusAssessment(); + } + + /** + * Create an instance of {@link TreatmentOutcome } + * + */ + public TreatmentOutcome createTreatmentOutcome() { + return new TreatmentOutcome(); + } + + /** + * Create an instance of {@link DaysToTreatmentEnd } + * + */ + public DaysToTreatmentEnd createDaysToTreatmentEnd() { + return new DaysToTreatmentEnd(); + } + + /** + * Create an instance of {@link OtherTobaccoProductIndicator } + * + */ + public OtherTobaccoProductIndicator createOtherTobaccoProductIndicator() { + return new OtherTobaccoProductIndicator(); + } + + /** + * Create an instance of {@link AssessmentTimepointCategory } + * + */ + public AssessmentTimepointCategory createAssessmentTimepointCategory() { + return new AssessmentTimepointCategory(); + } + + /** + * Create an instance of {@link TreatmentType } + * + */ + public TreatmentType createTreatmentType() { + return new TreatmentType(); + } + + /** + * Create an instance of {@link MonthOfClinicalDiagnosis } + * + */ + public MonthOfClinicalDiagnosis createMonthOfClinicalDiagnosis() { + return new MonthOfClinicalDiagnosis(); + } + + /** + * Create an instance of {@link PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus } + * + */ + public PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus createPostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus() { + return new PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus(); + } + + /** + * Create an instance of {@link SpecifySingleAgentTherapy } + * + */ + public SpecifySingleAgentTherapy createSpecifySingleAgentTherapy() { + return new SpecifySingleAgentTherapy(); + } + + /** + * Create an instance of {@link YearOfPneumoniaDx } + * + */ + public YearOfPneumoniaDx createYearOfPneumoniaDx() { + return new YearOfPneumoniaDx(); + } + + /** + * Create an instance of {@link SmokingCessationDuration } + * + */ + public SmokingCessationDuration createSmokingCessationDuration() { + return new SmokingCessationDuration(); + } + + /** + * Create an instance of {@link SmokingTimeInDayBegins } + * + */ + public SmokingTimeInDayBegins createSmokingTimeInDayBegins() { + return new SmokingTimeInDayBegins(); + } + + /** + * Create an instance of {@link AdultSmokeExposure } + * + */ + public AdultSmokeExposure createAdultSmokeExposure() { + return new AdultSmokeExposure(); + } + + /** + * Create an instance of {@link ErSolidTumorResponseDocumentedTypeOther } + * + */ + public ErSolidTumorResponseDocumentedTypeOther createErSolidTumorResponseDocumentedTypeOther() { + return new ErSolidTumorResponseDocumentedTypeOther(); + } + + /** + * Create an instance of {@link RadioactiveMaterialExposure } + * + */ + public RadioactiveMaterialExposure createRadioactiveMaterialExposure() { + return new RadioactiveMaterialExposure(); + } + + /** + * Create an instance of {@link PhysicalExerciseDaysPerWeek } + * + */ + public PhysicalExerciseDaysPerWeek createPhysicalExerciseDaysPerWeek() { + return new PhysicalExerciseDaysPerWeek(); + } + + /** + * Create an instance of {@link DiabetesIndicator } + * + */ + public DiabetesIndicator createDiabetesIndicator() { + return new DiabetesIndicator(); + } + + /** + * Create an instance of {@link MenopauseStatus } + * + */ + public MenopauseStatus createMenopauseStatus() { + return new MenopauseStatus(); + } + + /** + * Create an instance of {@link YearOfAsthmaDx } + * + */ + public YearOfAsthmaDx createYearOfAsthmaDx() { + return new YearOfAsthmaDx(); + } + + /** + * Create an instance of {@link HistoryPriorSurgeryTypeOther } + * + */ + public HistoryPriorSurgeryTypeOther createHistoryPriorSurgeryTypeOther() { + return new HistoryPriorSurgeryTypeOther(); + } + + /** + * Create an instance of {@link SmokingCessationIndicator } + * + */ + public SmokingCessationIndicator createSmokingCessationIndicator() { + return new SmokingCessationIndicator(); + } + + /** + * Create an instance of {@link DayOfTumorRecurrence } + * + */ + public DayOfTumorRecurrence createDayOfTumorRecurrence() { + return new DayOfTumorRecurrence(); + } + + /** + * Create an instance of {@link Unstructured } + * + */ + public Unstructured createUnstructured() { + return new Unstructured(); + } + + /** + * Create an instance of {@link YearOfStrokeDx } + * + */ + public YearOfStrokeDx createYearOfStrokeDx() { + return new YearOfStrokeDx(); + } + + /** + * Create an instance of {@link MetastaticSiteAtDiagnosis } + * + */ + public MetastaticSiteAtDiagnosis createMetastaticSiteAtDiagnosis() { + return new MetastaticSiteAtDiagnosis(); + } + + /** + * Create an instance of {@link OccupationAssessmentIndicator } + * + */ + public OccupationAssessmentIndicator createOccupationAssessmentIndicator() { + return new OccupationAssessmentIndicator(); + } + + /** + * Create an instance of {@link RadiationTherapyEnd } + * + */ + public RadiationTherapyEnd createRadiationTherapyEnd() { + return new RadiationTherapyEnd(); + } + + /** + * Create an instance of {@link CtScan } + * + */ + public CtScan createCtScan() { + return new CtScan(); + } + + /** + * Create an instance of {@link YearOfCopdDx } + * + */ + public YearOfCopdDx createYearOfCopdDx() { + return new YearOfCopdDx(); + } + + /** + * Create an instance of {@link OtherDustExposureType } + * + */ + public OtherDustExposureType createOtherDustExposureType() { + return new OtherDustExposureType(); + } + + /** + * Create an instance of {@link AsthmaIndicator } + * + */ + public AsthmaIndicator createAsthmaIndicator() { + return new AsthmaIndicator(); + } + + /** + * Create an instance of {@link OtherTherapyOtherMalignancyText } + * + */ + public OtherTherapyOtherMalignancyText createOtherTherapyOtherMalignancyText() { + return new OtherTherapyOtherMalignancyText(); + } + + /** + * Create an instance of {@link CtScanFindings } + * + */ + public CtScanFindings createCtScanFindings() { + return new CtScanFindings(); + } + + /** + * Create an instance of {@link HistoryOfRadiationPrimarySite } + * + */ + public HistoryOfRadiationPrimarySite createHistoryOfRadiationPrimarySite() { + return new HistoryOfRadiationPrimarySite(); + } + + /** + * Create an instance of {@link TargetedNodalRegionOther } + * + */ + public TargetedNodalRegionOther createTargetedNodalRegionOther() { + return new TargetedNodalRegionOther(); + } + + /** + * Create an instance of {@link ErResponseType } + * + */ + public ErResponseType createErResponseType() { + return new ErResponseType(); + } + + /** + * Create an instance of {@link ChildhoodSmokeExposurePerDay } + * + */ + public ChildhoodSmokeExposurePerDay createChildhoodSmokeExposurePerDay() { + return new ChildhoodSmokeExposurePerDay(); + } + + /** + * Create an instance of {@link PlateletResultCount } + * + */ + public PlateletResultCount createPlateletResultCount() { + return new PlateletResultCount(); + } + + /** + * Create an instance of {@link StatinUseCategory } + * + */ + public StatinUseCategory createStatinUseCategory() { + return new StatinUseCategory(); + } + + /** + * Create an instance of {@link MaritalStatus } + * + */ + public MaritalStatus createMaritalStatus() { + return new MaritalStatus(); + } + + /** + * Create an instance of {@link BloodRelativeWithCancer } + * + */ + public BloodRelativeWithCancer createBloodRelativeWithCancer() { + return new BloodRelativeWithCancer(); + } + + /** + * Create an instance of {@link ProtocolStatus } + * + */ + public ProtocolStatus createProtocolStatus() { + return new ProtocolStatus(); + } + + /** + * Create an instance of {@link DayOfMostRecentDateOfLastContact } + * + */ + public DayOfMostRecentDateOfLastContact createDayOfMostRecentDateOfLastContact() { + return new DayOfMostRecentDateOfLastContact(); + } + + /** + * Create an instance of {@link Response } + * + */ + public Response createResponse() { + return new Response(); + } + + /** + * Create an instance of {@link DaysToMostRecentDateOfLastContact } + * + */ + public DaysToMostRecentDateOfLastContact createDaysToMostRecentDateOfLastContact() { + return new DaysToMostRecentDateOfLastContact(); + } + + /** + * Create an instance of {@link DifficultToAnswerEpidemiology } + * + */ + public DifficultToAnswerEpidemiology createDifficultToAnswerEpidemiology() { + return new DifficultToAnswerEpidemiology(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NumberOfLymphnodesPositiveByHe }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "number_of_lymphnodes_positive_by_he") + public JAXBElement createNumberOfLymphnodesPositiveByHe(NumberOfLymphnodesPositiveByHe value) { + return new JAXBElement(_NumberOfLymphnodesPositiveByHe_QNAME, NumberOfLymphnodesPositiveByHe.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PneumoniaIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "pneumonia_indicator") + public JAXBElement createPneumoniaIndicator(PneumoniaIndicator value) { + return new JAXBElement(_PneumoniaIndicator_QNAME, PneumoniaIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HighestEducationAchieved }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "highest_education_achieved") + public JAXBElement createHighestEducationAchieved(HighestEducationAchieved value) { + return new JAXBElement(_HighestEducationAchieved_QNAME, HighestEducationAchieved.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HormonalTherapy }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "hormonal_therapy") + public JAXBElement createHormonalTherapy(HormonalTherapy value) { + return new JAXBElement(_HormonalTherapy_QNAME, HormonalTherapy.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistoryPriorSurgeryType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "history_prior_surgery_type") + public JAXBElement createHistoryPriorSurgeryType(HistoryPriorSurgeryType value) { + return new JAXBElement(_HistoryPriorSurgeryType_QNAME, HistoryPriorSurgeryType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LymphNodeExaminedCount }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "lymph_node_examined_count") + public JAXBElement createLymphNodeExaminedCount(LymphNodeExaminedCount value) { + return new JAXBElement(_LymphNodeExaminedCount_QNAME, LymphNodeExaminedCount.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AlcoholHistoryDocumented }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "alcohol_history_documented") + public JAXBElement createAlcoholHistoryDocumented(AlcoholHistoryDocumented value) { + return new JAXBElement(_AlcoholHistoryDocumented_QNAME, AlcoholHistoryDocumented.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ChildhoodSmokeExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "childhood_smoke_exposure") + public JAXBElement createChildhoodSmokeExposure(ChildhoodSmokeExposure value) { + return new JAXBElement(_ChildhoodSmokeExposure_QNAME, ChildhoodSmokeExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfFormCompletion }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_form_completion") + public JAXBElement createMonthOfFormCompletion(MonthOfFormCompletion value) { + return new JAXBElement(_MonthOfFormCompletion_QNAME, MonthOfFormCompletion.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RelativeDeathIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "relative_death_indicator") + public JAXBElement createRelativeDeathIndicator(RelativeDeathIndicator value) { + return new JAXBElement(_RelativeDeathIndicator_QNAME, RelativeDeathIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SocialSmokeExposurePerDay }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "social_smoke_exposure_per_day") + public JAXBElement createSocialSmokeExposurePerDay(SocialSmokeExposurePerDay value) { + return new JAXBElement(_SocialSmokeExposurePerDay_QNAME, SocialSmokeExposurePerDay.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PersonOccupationYearsNumber }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "person_occupation_years_number") + public JAXBElement createPersonOccupationYearsNumber(PersonOccupationYearsNumber value) { + return new JAXBElement(_PersonOccupationYearsNumber_QNAME, PersonOccupationYearsNumber.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OxygenUseIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "oxygen_use_indicator") + public JAXBElement createOxygenUseIndicator(OxygenUseIndicator value) { + return new JAXBElement(_OxygenUseIndicator_QNAME, OxygenUseIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LymphovascularInvasionPresent }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "lymphovascular_invasion_present") + public JAXBElement createLymphovascularInvasionPresent(LymphovascularInvasionPresent value) { + return new JAXBElement(_LymphovascularInvasionPresent_QNAME, LymphovascularInvasionPresent.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ResidualTumor }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "residual_tumor") + public JAXBElement createResidualTumor(ResidualTumor value) { + return new JAXBElement(_ResidualTumor_QNAME, ResidualTumor.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PostOpAblationEmbolizationTx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "post_op_ablation_embolization_tx") + public JAXBElement createPostOpAblationEmbolizationTx(PostOpAblationEmbolizationTx value) { + return new JAXBElement(_PostOpAblationEmbolizationTx_QNAME, PostOpAblationEmbolizationTx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link FamilyMemberRelationshipType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "family_member_relationship_type") + public JAXBElement createFamilyMemberRelationshipType(FamilyMemberRelationshipType value) { + return new JAXBElement(_FamilyMemberRelationshipType_QNAME, FamilyMemberRelationshipType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MitoticCount }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "mitotic_count") + public JAXBElement createMitoticCount(MitoticCount value) { + return new JAXBElement(_MitoticCount_QNAME, MitoticCount.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TumorResidualDisease }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "tumor_residual_disease") + public JAXBElement createTumorResidualDisease(TumorResidualDisease value) { + return new JAXBElement(_TumorResidualDisease_QNAME, TumorResidualDisease.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Weight }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "weight") + public JAXBElement createWeight(Weight value) { + return new JAXBElement(_Weight_QNAME, Weight.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ChestRadiationIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "chest_radiation_indicator") + public JAXBElement createChestRadiationIndicator(ChestRadiationIndicator value) { + return new JAXBElement(_ChestRadiationIndicator_QNAME, ChestRadiationIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherMetastaticSite }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_metastatic_site") + public JAXBElement createOtherMetastaticSite(OtherMetastaticSite value) { + return new JAXBElement(_OtherMetastaticSite_QNAME, OtherMetastaticSite.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistoryOfRadiationMetastaticSite }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "history_of_radiation_metastatic_site") + public JAXBElement createHistoryOfRadiationMetastaticSite(HistoryOfRadiationMetastaticSite value) { + return new JAXBElement(_HistoryOfRadiationMetastaticSite_QNAME, HistoryOfRadiationMetastaticSite.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PrimaryTherapyOutcomeSuccess }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "primary_therapy_outcome_success") + public JAXBElement createPrimaryTherapyOutcomeSuccess(PrimaryTherapyOutcomeSuccess value) { + return new JAXBElement(_PrimaryTherapyOutcomeSuccess_QNAME, PrimaryTherapyOutcomeSuccess.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ViralHepatitisSerology }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "viral_hepatitis_serology") + public JAXBElement createViralHepatitisSerology(ViralHepatitisSerology value) { + return new JAXBElement(_ViralHepatitisSerology_QNAME, ViralHepatitisSerology.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SmokingCessationDurationUnits }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "smoking_cessation_duration_units") + public JAXBElement createSmokingCessationDurationUnits(SmokingCessationDurationUnits value) { + return new JAXBElement(_SmokingCessationDurationUnits_QNAME, SmokingCessationDurationUnits.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AcetaminophenUseCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "acetaminophen_use_category") + public JAXBElement createAcetaminophenUseCategory(AcetaminophenUseCategory value) { + return new JAXBElement(_AcetaminophenUseCategory_QNAME, AcetaminophenUseCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TargetedMolecularTherapy }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "targeted_molecular_therapy") + public JAXBElement createTargetedMolecularTherapy(TargetedMolecularTherapy value) { + return new JAXBElement(_TargetedMolecularTherapy_QNAME, TargetedMolecularTherapy.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfFirstResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_first_response") + public JAXBElement createYearOfFirstResponse(YearOfFirstResponse value) { + return new JAXBElement(_YearOfFirstResponse_QNAME, YearOfFirstResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DifficultToAnswerSmoking }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "difficult_to_answer_smoking") + public JAXBElement createDifficultToAnswerSmoking(DifficultToAnswerSmoking value) { + return new JAXBElement(_DifficultToAnswerSmoking_QNAME, DifficultToAnswerSmoking.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link FollowupCaseReportFormSubmissionReason }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "followup_case_report_form_submission_reason") + public JAXBElement createFollowupCaseReportFormSubmissionReason(FollowupCaseReportFormSubmissionReason value) { + return new JAXBElement(_FollowupCaseReportFormSubmissionReason_QNAME, FollowupCaseReportFormSubmissionReason.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CopdIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "copd_indicator") + public JAXBElement createCopdIndicator(CopdIndicator value) { + return new JAXBElement(_CopdIndicator_QNAME, CopdIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AmountOfAlcoholConsumptionPerDay }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "amount_of_alcohol_consumption_per_day") + public JAXBElement createAmountOfAlcoholConsumptionPerDay(AmountOfAlcoholConsumptionPerDay value) { + return new JAXBElement(_AmountOfAlcoholConsumptionPerDay_QNAME, AmountOfAlcoholConsumptionPerDay.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherDustExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_dust_exposure") + public JAXBElement createOtherDustExposure(OtherDustExposure value) { + return new JAXBElement(_OtherDustExposure_QNAME, OtherDustExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ErDiseaseExtentPriorErTreatment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "er_disease_extent_prior_er_treatment") + public JAXBElement createErDiseaseExtentPriorErTreatment(ErDiseaseExtentPriorErTreatment value) { + return new JAXBElement(_ErDiseaseExtentPriorErTreatment_QNAME, ErDiseaseExtentPriorErTreatment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BirthCountry }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "birth_country") + public JAXBElement createBirthCountry(BirthCountry value) { + return new JAXBElement(_BirthCountry_QNAME, BirthCountry.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfPatientProgressionFree }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_patient_progression_free") + public JAXBElement createDayOfPatientProgressionFree(DayOfPatientProgressionFree value) { + return new JAXBElement(_DayOfPatientProgressionFree_QNAME, DayOfPatientProgressionFree.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CancerFirstDegreeRelative }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "cancer_first_degree_relative") + public JAXBElement createCancerFirstDegreeRelative(CancerFirstDegreeRelative value) { + return new JAXBElement(_CancerFirstDegreeRelative_QNAME, CancerFirstDegreeRelative.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SocialSmokeExposureYears }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "social_smoke_exposure_years") + public JAXBElement createSocialSmokeExposureYears(SocialSmokeExposureYears value) { + return new JAXBElement(_SocialSmokeExposureYears_QNAME, SocialSmokeExposureYears.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MaximumTumorDiameter }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "maximum_tumor_diameter") + public JAXBElement createMaximumTumorDiameter(MaximumTumorDiameter value) { + return new JAXBElement(_MaximumTumorDiameter_QNAME, MaximumTumorDiameter.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HypertensionIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "hypertension_indicator") + public JAXBElement createHypertensionIndicator(HypertensionIndicator value) { + return new JAXBElement(_HypertensionIndicator_QNAME, HypertensionIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OccupationPrimaryJob }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "occupation_primary_job") + public JAXBElement createOccupationPrimaryJob(OccupationPrimaryJob value) { + return new JAXBElement(_OccupationPrimaryJob_QNAME, OccupationPrimaryJob.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeathCauseText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "death_cause_text") + public JAXBElement createDeathCauseText(DeathCauseText value) { + return new JAXBElement(_DeathCauseText_QNAME, DeathCauseText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MeddraCode }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "meddra_code") + public JAXBElement createMeddraCode(MeddraCode value) { + return new JAXBElement(_MeddraCode_QNAME, MeddraCode.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MeasureOfResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "measure_of_response") + public JAXBElement createMeasureOfResponse(MeasureOfResponse value) { + return new JAXBElement(_MeasureOfResponse_QNAME, MeasureOfResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NumberOfLymphnodesPositiveByIhc }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "number_of_lymphnodes_positive_by_ihc") + public JAXBElement createNumberOfLymphnodesPositiveByIhc(NumberOfLymphnodesPositiveByIhc value) { + return new JAXBElement(_NumberOfLymphnodesPositiveByIhc_QNAME, NumberOfLymphnodesPositiveByIhc.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SourceOfPatientDeathReason }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "source_of_patient_death_reason") + public JAXBElement createSourceOfPatientDeathReason(SourceOfPatientDeathReason value) { + return new JAXBElement(_SourceOfPatientDeathReason_QNAME, SourceOfPatientDeathReason.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OxygenUseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "oxygen_use_type") + public JAXBElement createOxygenUseType(OxygenUseType value) { + return new JAXBElement(_OxygenUseType_QNAME, OxygenUseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SocialSmokeExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "social_smoke_exposure") + public JAXBElement createSocialSmokeExposure(SocialSmokeExposure value) { + return new JAXBElement(_SocialSmokeExposure_QNAME, SocialSmokeExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherTobaccoProductDuration }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_tobacco_product_duration") + public JAXBElement createOtherTobaccoProductDuration(OtherTobaccoProductDuration value) { + return new JAXBElement(_OtherTobaccoProductDuration_QNAME, OtherTobaccoProductDuration.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InitPathologyDxMethodOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "init_pathology_dx_method_other") + public JAXBElement createInitPathologyDxMethodOther(InitPathologyDxMethodOther value) { + return new JAXBElement(_InitPathologyDxMethodOther_QNAME, InitPathologyDxMethodOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfFirstCompleteResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_first_complete_response") + public JAXBElement createYearOfFirstCompleteResponse(YearOfFirstCompleteResponse value) { + return new JAXBElement(_YearOfFirstCompleteResponse_QNAME, YearOfFirstCompleteResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherRadiationOtherMalignancy }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_radiation_other_malignancy") + public JAXBElement createOtherRadiationOtherMalignancy(OtherRadiationOtherMalignancy value) { + return new JAXBElement(_OtherRadiationOtherMalignancy_QNAME, OtherRadiationOtherMalignancy.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RelativeFamilyCancerHistory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "relative_family_cancer_history") + public JAXBElement createRelativeFamilyCancerHistory(RelativeFamilyCancerHistory value) { + return new JAXBElement(_RelativeFamilyCancerHistory_QNAME, RelativeFamilyCancerHistory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TumorTissueSiteOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "tumor_tissue_site_other") + public JAXBElement createTumorTissueSiteOther(TumorTissueSiteOther value) { + return new JAXBElement(_TumorTissueSiteOther_QNAME, TumorTissueSiteOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfLastFollowup }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_last_followup") + public JAXBElement createYearOfLastFollowup(YearOfLastFollowup value) { + return new JAXBElement(_YearOfLastFollowup_QNAME, YearOfLastFollowup.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Ethnicity }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "ethnicity") + public JAXBElement createEthnicity(Ethnicity value) { + return new JAXBElement(_Ethnicity_QNAME, Ethnicity.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfTumorProgression }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_tumor_progression") + public JAXBElement createDayOfTumorProgression(DayOfTumorProgression value) { + return new JAXBElement(_DayOfTumorProgression_QNAME, DayOfTumorProgression.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ErSolidTumorResponseDocumentedType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "er_solid_tumor_response_documented_type") + public JAXBElement createErSolidTumorResponseDocumentedType(ErSolidTumorResponseDocumentedType value) { + return new JAXBElement(_ErSolidTumorResponseDocumentedType_QNAME, ErSolidTumorResponseDocumentedType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LactateDehydrogenaseResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "lactate_dehydrogenase_result") + public JAXBElement createLactateDehydrogenaseResult(LactateDehydrogenaseResult value) { + return new JAXBElement(_LactateDehydrogenaseResult_QNAME, LactateDehydrogenaseResult.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TissueProspectiveCollectionIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "tissue_prospective_collection_indicator") + public JAXBElement createTissueProspectiveCollectionIndicator(TissueProspectiveCollectionIndicator value) { + return new JAXBElement(_TissueProspectiveCollectionIndicator_QNAME, TissueProspectiveCollectionIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfPerformanceStatusAssessment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_performance_status_assessment") + public JAXBElement createYearOfPerformanceStatusAssessment(YearOfPerformanceStatusAssessment value) { + return new JAXBElement(_YearOfPerformanceStatusAssessment_QNAME, YearOfPerformanceStatusAssessment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Laterality }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "laterality") + public JAXBElement createLaterality(Laterality value) { + return new JAXBElement(_Laterality_QNAME, Laterality.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfHypertensionDx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_hypertension_dx") + public JAXBElement createYearOfHypertensionDx(YearOfHypertensionDx value) { + return new JAXBElement(_YearOfHypertensionDx_QNAME, YearOfHypertensionDx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherTobaccoProductDailyUse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_tobacco_product_daily_use") + public JAXBElement createOtherTobaccoProductDailyUse(OtherTobaccoProductDailyUse value) { + return new JAXBElement(_OtherTobaccoProductDailyUse_QNAME, OtherTobaccoProductDailyUse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfFirstResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_first_response") + public JAXBElement createMonthOfFirstResponse(MonthOfFirstResponse value) { + return new JAXBElement(_MonthOfFirstResponse_QNAME, MonthOfFirstResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link WeightPriorToDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "weight_prior_to_diagnosis") + public JAXBElement createWeightPriorToDiagnosis(WeightPriorToDiagnosis value) { + return new JAXBElement(_WeightPriorToDiagnosis_QNAME, WeightPriorToDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MineralDustExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "mineral_dust_exposure") + public JAXBElement createMineralDustExposure(MineralDustExposure value) { + return new JAXBElement(_MineralDustExposure_QNAME, MineralDustExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfFirstPartialResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_first_partial_response") + public JAXBElement createYearOfFirstPartialResponse(YearOfFirstPartialResponse value) { + return new JAXBElement(_YearOfFirstPartialResponse_QNAME, YearOfFirstPartialResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherTherapyOtherMalignancyUnknown }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_therapy_other_malignancy_unknown") + public JAXBElement createOtherTherapyOtherMalignancyUnknown(OtherTherapyOtherMalignancyUnknown value) { + return new JAXBElement(_OtherTherapyOtherMalignancyUnknown_QNAME, OtherTherapyOtherMalignancyUnknown.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfTumorRecurrence }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_tumor_recurrence") + public JAXBElement createMonthOfTumorRecurrence(MonthOfTumorRecurrence value) { + return new JAXBElement(_MonthOfTumorRecurrence_QNAME, MonthOfTumorRecurrence.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfFirstPartialResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_first_partial_response") + public JAXBElement createMonthOfFirstPartialResponse(MonthOfFirstPartialResponse value) { + return new JAXBElement(_MonthOfFirstPartialResponse_QNAME, MonthOfFirstPartialResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CrystallineSilicaExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "crystalline_silica_exposure") + public JAXBElement createCrystallineSilicaExposure(CrystallineSilicaExposure value) { + return new JAXBElement(_CrystallineSilicaExposure_QNAME, CrystallineSilicaExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link StoppedSmokingYear }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "stopped_smoking_year") + public JAXBElement createStoppedSmokingYear(StoppedSmokingYear value) { + return new JAXBElement(_StoppedSmokingYear_QNAME, StoppedSmokingYear.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherTherapyOtherMalignancy }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_therapy_other_malignancy") + public JAXBElement createOtherTherapyOtherMalignancy(OtherTherapyOtherMalignancy value) { + return new JAXBElement(_OtherTherapyOtherMalignancy_QNAME, OtherTherapyOtherMalignancy.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TissueRetrospectiveCollectionIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "tissue_retrospective_collection_indicator") + public JAXBElement createTissueRetrospectiveCollectionIndicator(TissueRetrospectiveCollectionIndicator value) { + return new JAXBElement(_TissueRetrospectiveCollectionIndicator_QNAME, TissueRetrospectiveCollectionIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DifficultToAnswerFamily }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "difficult_to_answer_family") + public JAXBElement createDifficultToAnswerFamily(DifficultToAnswerFamily value) { + return new JAXBElement(_DifficultToAnswerFamily_QNAME, DifficultToAnswerFamily.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InitialPathologicDiagnosisMethod }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "initial_pathologic_diagnosis_method") + public JAXBElement createInitialPathologicDiagnosisMethod(InitialPathologicDiagnosisMethod value) { + return new JAXBElement(_InitialPathologicDiagnosisMethod_QNAME, InitialPathologicDiagnosisMethod.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HivAidsIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "hiv_aids_indicator") + public JAXBElement createHivAidsIndicator(HivAidsIndicator value) { + return new JAXBElement(_HivAidsIndicator_QNAME, HivAidsIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfHivAidsDx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_hiv_aids_dx") + public JAXBElement createYearOfHivAidsDx(YearOfHivAidsDx value) { + return new JAXBElement(_YearOfHivAidsDx_QNAME, YearOfHivAidsDx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SmokingDurationYears }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "smoking_duration_years") + public JAXBElement createSmokingDurationYears(SmokingDurationYears value) { + return new JAXBElement(_SmokingDurationYears_QNAME, SmokingDurationYears.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticSite }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "metastatic_site") + public JAXBElement createMetastaticSite(MetastaticSite value) { + return new JAXBElement(_MetastaticSite_QNAME, MetastaticSite.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfFirstCompleteResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_first_complete_response") + public JAXBElement createDayOfFirstCompleteResponse(DayOfFirstCompleteResponse value) { + return new JAXBElement(_DayOfFirstCompleteResponse_QNAME, DayOfFirstCompleteResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfFirstResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_first_response") + public JAXBElement createDayOfFirstResponse(DayOfFirstResponse value) { + return new JAXBElement(_DayOfFirstResponse_QNAME, DayOfFirstResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticSiteAtDiagnosisOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "metastatic_site_at_diagnosis_other") + public JAXBElement createMetastaticSiteAtDiagnosisOther(MetastaticSiteAtDiagnosisOther value) { + return new JAXBElement(_MetastaticSiteAtDiagnosisOther_QNAME, MetastaticSiteAtDiagnosisOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link FrequencyOfAlcoholConsumption }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "frequency_of_alcohol_consumption") + public JAXBElement createFrequencyOfAlcoholConsumption(FrequencyOfAlcoholConsumption value) { + return new JAXBElement(_FrequencyOfAlcoholConsumption_QNAME, FrequencyOfAlcoholConsumption.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link WorkplaceSmokeExposurePerDay }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "workplace_smoke_exposure_per_day") + public JAXBElement createWorkplaceSmokeExposurePerDay(WorkplaceSmokeExposurePerDay value) { + return new JAXBElement(_WorkplaceSmokeExposurePerDay_QNAME, WorkplaceSmokeExposurePerDay.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadHeartAttackIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "cad_heart_attack_indicator") + public JAXBElement createCadHeartAttackIndicator(CadHeartAttackIndicator value) { + return new JAXBElement(_CadHeartAttackIndicator_QNAME, CadHeartAttackIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdditionalTreatmentCompletionSuccessOutcome }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "additional_treatment_completion_success_outcome") + public JAXBElement createAdditionalTreatmentCompletionSuccessOutcome(AdditionalTreatmentCompletionSuccessOutcome value) { + return new JAXBElement(_AdditionalTreatmentCompletionSuccessOutcome_QNAME, AdditionalTreatmentCompletionSuccessOutcome.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdultSmokeExposureYears }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "adult_smoke_exposure_years") + public JAXBElement createAdultSmokeExposureYears(AdultSmokeExposureYears value) { + return new JAXBElement(_AdultSmokeExposureYears_QNAME, AdultSmokeExposureYears.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PriorSystemicTherapyType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "prior_systemic_therapy_type") + public JAXBElement createPriorSystemicTherapyType(PriorSystemicTherapyType value) { + return new JAXBElement(_PriorSystemicTherapyType_QNAME, PriorSystemicTherapyType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfPatientProgressionFree }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_patient_progression_free") + public JAXBElement createMonthOfPatientProgressionFree(MonthOfPatientProgressionFree value) { + return new JAXBElement(_MonthOfPatientProgressionFree_QNAME, MonthOfPatientProgressionFree.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AnatomicNeoplasmSubdivision }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "anatomic_neoplasm_subdivision") + public JAXBElement createAnatomicNeoplasmSubdivision(AnatomicNeoplasmSubdivision value) { + return new JAXBElement(_AnatomicNeoplasmSubdivision_QNAME, AnatomicNeoplasmSubdivision.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PrimaryTherapyOutcomeSuccessAtFollowup }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "primary_therapy_outcome_success_at_followup") + public JAXBElement createPrimaryTherapyOutcomeSuccessAtFollowup(PrimaryTherapyOutcomeSuccessAtFollowup value) { + return new JAXBElement(_PrimaryTherapyOutcomeSuccessAtFollowup_QNAME, PrimaryTherapyOutcomeSuccessAtFollowup.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Height }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "height") + public JAXBElement createHeight(Height value) { + return new JAXBElement(_Height_QNAME, Height.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistoryOfRadiationPrimarySite }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "history_of_radiation_primary_site") + public JAXBElement createHistoryOfRadiationPrimarySite(HistoryOfRadiationPrimarySite value) { + return new JAXBElement(_HistoryOfRadiationPrimarySite_QNAME, HistoryOfRadiationPrimarySite.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ErResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "er_response_type") + public JAXBElement createErResponseType(ErResponseType value) { + return new JAXBElement(_ErResponseType_QNAME, ErResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AsthmaIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "asthma_indicator") + public JAXBElement createAsthmaIndicator(AsthmaIndicator value) { + return new JAXBElement(_AsthmaIndicator_QNAME, AsthmaIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherTherapyOtherMalignancyText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_therapy_other_malignancy_text") + public JAXBElement createOtherTherapyOtherMalignancyText(OtherTherapyOtherMalignancyText value) { + return new JAXBElement(_OtherTherapyOtherMalignancyText_QNAME, OtherTherapyOtherMalignancyText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PersonNeoplasmCancerStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "person_neoplasm_cancer_status") + public JAXBElement createPersonNeoplasmCancerStatus(PersonNeoplasmCancerStatus value) { + return new JAXBElement(_PersonNeoplasmCancerStatus_QNAME, PersonNeoplasmCancerStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfCopdDx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_copd_dx") + public JAXBElement createYearOfCopdDx(YearOfCopdDx value) { + return new JAXBElement(_YearOfCopdDx_QNAME, YearOfCopdDx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherDustExposureType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_dust_exposure_type") + public JAXBElement createOtherDustExposureType(OtherDustExposureType value) { + return new JAXBElement(_OtherDustExposureType_QNAME, OtherDustExposureType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link StatinUseCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "statin_use_category") + public JAXBElement createStatinUseCategory(StatinUseCategory value) { + return new JAXBElement(_StatinUseCategory_QNAME, StatinUseCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PlateletResultCount }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "platelet_result_count") + public JAXBElement createPlateletResultCount(PlateletResultCount value) { + return new JAXBElement(_PlateletResultCount_QNAME, PlateletResultCount.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ChildhoodSmokeExposurePerDay }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "childhood_smoke_exposure_per_day") + public JAXBElement createChildhoodSmokeExposurePerDay(ChildhoodSmokeExposurePerDay value) { + return new JAXBElement(_ChildhoodSmokeExposurePerDay_QNAME, ChildhoodSmokeExposurePerDay.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BloodRelativeWithCancer }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "blood_relative_with_cancer") + public JAXBElement createBloodRelativeWithCancer(BloodRelativeWithCancer value) { + return new JAXBElement(_BloodRelativeWithCancer_QNAME, BloodRelativeWithCancer.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MaritalStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "marital_status") + public JAXBElement createMaritalStatus(MaritalStatus value) { + return new JAXBElement(_MaritalStatus_QNAME, MaritalStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DifficultToAnswerEpidemiology }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "difficult_to_answer_epidemiology") + public JAXBElement createDifficultToAnswerEpidemiology(DifficultToAnswerEpidemiology value) { + return new JAXBElement(_DifficultToAnswerEpidemiology_QNAME, DifficultToAnswerEpidemiology.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistoryPriorSurgeryTypeOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "history_prior_surgery_type_other") + public JAXBElement createHistoryPriorSurgeryTypeOther(HistoryPriorSurgeryTypeOther value) { + return new JAXBElement(_HistoryPriorSurgeryTypeOther_QNAME, HistoryPriorSurgeryTypeOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SmokingCessationIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "smoking_cessation_indicator") + public JAXBElement createSmokingCessationIndicator(SmokingCessationIndicator value) { + return new JAXBElement(_SmokingCessationIndicator_QNAME, SmokingCessationIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfAsthmaDx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_asthma_dx") + public JAXBElement createYearOfAsthmaDx(YearOfAsthmaDx value) { + return new JAXBElement(_YearOfAsthmaDx_QNAME, YearOfAsthmaDx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfTumorRecurrence }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_tumor_recurrence") + public JAXBElement createDayOfTumorRecurrence(DayOfTumorRecurrence value) { + return new JAXBElement(_DayOfTumorRecurrence_QNAME, DayOfTumorRecurrence.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfLastFollowup }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_last_followup") + public JAXBElement createDayOfLastFollowup(DayOfLastFollowup value) { + return new JAXBElement(_DayOfLastFollowup_QNAME, DayOfLastFollowup.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OccupationAssessmentIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "occupation_assessment_indicator") + public JAXBElement createOccupationAssessmentIndicator(OccupationAssessmentIndicator value) { + return new JAXBElement(_OccupationAssessmentIndicator_QNAME, OccupationAssessmentIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RadiationTherapyEnd }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "radiation_therapy_end") + public JAXBElement createRadiationTherapyEnd(RadiationTherapyEnd value) { + return new JAXBElement(_RadiationTherapyEnd_QNAME, RadiationTherapyEnd.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfStrokeDx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_stroke_dx") + public JAXBElement createYearOfStrokeDx(YearOfStrokeDx value) { + return new JAXBElement(_YearOfStrokeDx_QNAME, YearOfStrokeDx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticSiteAtDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "metastatic_site_at_diagnosis") + public JAXBElement createMetastaticSiteAtDiagnosis(MetastaticSiteAtDiagnosis value) { + return new JAXBElement(_MetastaticSiteAtDiagnosis_QNAME, MetastaticSiteAtDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfFormCompletion }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_form_completion") + public JAXBElement createYearOfFormCompletion(YearOfFormCompletion value) { + return new JAXBElement(_YearOfFormCompletion_QNAME, YearOfFormCompletion.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SmokingTimeInDayBegins }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "smoking_time_in_day_begins") + public JAXBElement createSmokingTimeInDayBegins(SmokingTimeInDayBegins value) { + return new JAXBElement(_SmokingTimeInDayBegins_QNAME, SmokingTimeInDayBegins.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfPneumoniaDx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_pneumonia_dx") + public JAXBElement createYearOfPneumoniaDx(YearOfPneumoniaDx value) { + return new JAXBElement(_YearOfPneumoniaDx_QNAME, YearOfPneumoniaDx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SmokingCessationDuration }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "smoking_cessation_duration") + public JAXBElement createSmokingCessationDuration(SmokingCessationDuration value) { + return new JAXBElement(_SmokingCessationDuration_QNAME, SmokingCessationDuration.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ErSolidTumorResponseDocumentedTypeOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "er_solid_tumor_response_documented_type_other") + public JAXBElement createErSolidTumorResponseDocumentedTypeOther(ErSolidTumorResponseDocumentedTypeOther value) { + return new JAXBElement(_ErSolidTumorResponseDocumentedTypeOther_QNAME, ErSolidTumorResponseDocumentedTypeOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RadioactiveMaterialExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "radioactive_material_exposure") + public JAXBElement createRadioactiveMaterialExposure(RadioactiveMaterialExposure value) { + return new JAXBElement(_RadioactiveMaterialExposure_QNAME, RadioactiveMaterialExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfInitialPathologicDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_initial_pathologic_diagnosis") + public JAXBElement createYearOfInitialPathologicDiagnosis(YearOfInitialPathologicDiagnosis value) { + return new JAXBElement(_YearOfInitialPathologicDiagnosis_QNAME, YearOfInitialPathologicDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdultSmokeExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "adult_smoke_exposure") + public JAXBElement createAdultSmokeExposure(AdultSmokeExposure value) { + return new JAXBElement(_AdultSmokeExposure_QNAME, AdultSmokeExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NumberPackYearsSmoked }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "number_pack_years_smoked") + public JAXBElement createNumberPackYearsSmoked(NumberPackYearsSmoked value) { + return new JAXBElement(_NumberPackYearsSmoked_QNAME, NumberPackYearsSmoked.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DiabetesIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "diabetes_indicator") + public JAXBElement createDiabetesIndicator(DiabetesIndicator value) { + return new JAXBElement(_DiabetesIndicator_QNAME, DiabetesIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfFirstPartialResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_first_partial_response") + public JAXBElement createDayOfFirstPartialResponse(DayOfFirstPartialResponse value) { + return new JAXBElement(_DayOfFirstPartialResponse_QNAME, DayOfFirstPartialResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MenopauseStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "menopause_status") + public JAXBElement createMenopauseStatus(MenopauseStatus value) { + return new JAXBElement(_MenopauseStatus_QNAME, MenopauseStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PhysicalExerciseDaysPerWeek }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "physical_exercise_days_per_week") + public JAXBElement createPhysicalExerciseDaysPerWeek(PhysicalExerciseDaysPerWeek value) { + return new JAXBElement(_PhysicalExerciseDaysPerWeek_QNAME, PhysicalExerciseDaysPerWeek.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link FollowupTreatmentSuccess }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "followup_treatment_success") + public JAXBElement createFollowupTreatmentSuccess(FollowupTreatmentSuccess value) { + return new JAXBElement(_FollowupTreatmentSuccess_QNAME, FollowupTreatmentSuccess.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfTumorProgression }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_tumor_progression") + public JAXBElement createMonthOfTumorProgression(MonthOfTumorProgression value) { + return new JAXBElement(_MonthOfTumorProgression_QNAME, MonthOfTumorProgression.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherTobaccoProductIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_tobacco_product_indicator") + public JAXBElement createOtherTobaccoProductIndicator(OtherTobaccoProductIndicator value) { + return new JAXBElement(_OtherTobaccoProductIndicator_QNAME, OtherTobaccoProductIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AssessmentTimepointCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "assessment_timepoint_category") + public JAXBElement createAssessmentTimepointCategory(AssessmentTimepointCategory value) { + return new JAXBElement(_AssessmentTimepointCategory_QNAME, AssessmentTimepointCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link IcdO3Histology }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "icd_o_3_histology") + public JAXBElement createIcdO3Histology(IcdO3Histology value) { + return new JAXBElement(_IcdO3Histology_QNAME, IcdO3Histology.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfClinicalDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_clinical_diagnosis") + public JAXBElement createMonthOfClinicalDiagnosis(MonthOfClinicalDiagnosis value) { + return new JAXBElement(_MonthOfClinicalDiagnosis_QNAME, MonthOfClinicalDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "post_surgical_procedure_assessment_thyroid_gland_carcinoma_status") + public JAXBElement createPostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus(PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus value) { + return new JAXBElement(_PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus_QNAME, PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SmokingHistoryIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "smoking_history_indicator") + public JAXBElement createSmokingHistoryIndicator(SmokingHistoryIndicator value) { + return new JAXBElement(_SmokingHistoryIndicator_QNAME, SmokingHistoryIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ChildhoodSmokeExposureYears }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "childhood_smoke_exposure_years") + public JAXBElement createChildhoodSmokeExposureYears(ChildhoodSmokeExposureYears value) { + return new JAXBElement(_ChildhoodSmokeExposureYears_QNAME, ChildhoodSmokeExposureYears.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfDiabetesDx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_diabetes_dx") + public JAXBElement createYearOfDiabetesDx(YearOfDiabetesDx value) { + return new JAXBElement(_YearOfDiabetesDx_QNAME, YearOfDiabetesDx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ErEstimatedDurationResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "er_estimated_duration_response") + public JAXBElement createErEstimatedDurationResponse(ErEstimatedDurationResponse value) { + return new JAXBElement(_ErEstimatedDurationResponse_QNAME, ErEstimatedDurationResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfTumorProgression }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_tumor_progression") + public JAXBElement createYearOfTumorProgression(YearOfTumorProgression value) { + return new JAXBElement(_YearOfTumorProgression_QNAME, YearOfTumorProgression.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherGasExposureType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_gas_exposure_type") + public JAXBElement createOtherGasExposureType(OtherGasExposureType value) { + return new JAXBElement(_OtherGasExposureType_QNAME, OtherGasExposureType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfPerformanceStatusAssessment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_performance_status_assessment") + public JAXBElement createMonthOfPerformanceStatusAssessment(MonthOfPerformanceStatusAssessment value) { + return new JAXBElement(_MonthOfPerformanceStatusAssessment_QNAME, MonthOfPerformanceStatusAssessment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfInitialPathologicDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_initial_pathologic_diagnosis") + public JAXBElement createMonthOfInitialPathologicDiagnosis(MonthOfInitialPathologicDiagnosis value) { + return new JAXBElement(_MonthOfInitialPathologicDiagnosis_QNAME, MonthOfInitialPathologicDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Comorbidity }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "comorbidity") + public JAXBElement createComorbidity(Comorbidity value) { + return new JAXBElement(_Comorbidity_QNAME, Comorbidity.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfPatientProgressionFree }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_patient_progression_free") + public JAXBElement createYearOfPatientProgressionFree(YearOfPatientProgressionFree value) { + return new JAXBElement(_YearOfPatientProgressionFree_QNAME, YearOfPatientProgressionFree.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfFormCompletion }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_form_completion") + public JAXBElement createDayOfFormCompletion(DayOfFormCompletion value) { + return new JAXBElement(_DayOfFormCompletion_QNAME, DayOfFormCompletion.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfTobaccoSmokingOnset }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_tobacco_smoking_onset") + public JAXBElement createYearOfTobaccoSmokingOnset(YearOfTobaccoSmokingOnset value) { + return new JAXBElement(_YearOfTobaccoSmokingOnset_QNAME, YearOfTobaccoSmokingOnset.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfPerformanceStatusAssessment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_performance_status_assessment") + public JAXBElement createDayOfPerformanceStatusAssessment(DayOfPerformanceStatusAssessment value) { + return new JAXBElement(_DayOfPerformanceStatusAssessment_QNAME, DayOfPerformanceStatusAssessment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfFirstCompleteResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_first_complete_response") + public JAXBElement createMonthOfFirstCompleteResponse(MonthOfFirstCompleteResponse value) { + return new JAXBElement(_MonthOfFirstCompleteResponse_QNAME, MonthOfFirstCompleteResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistoryPriorSurgeryIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "history_prior_surgery_indicator") + public JAXBElement createHistoryPriorSurgeryIndicator(HistoryPriorSurgeryIndicator value) { + return new JAXBElement(_HistoryPriorSurgeryIndicator_QNAME, HistoryPriorSurgeryIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DieselExhaustExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "diesel_exhaust_exposure") + public JAXBElement createDieselExhaustExposure(DieselExhaustExposure value) { + return new JAXBElement(_DieselExhaustExposure_QNAME, DieselExhaustExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AnatomicNeoplasmSubdivisionOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "anatomic_neoplasm_subdivision_other") + public JAXBElement createAnatomicNeoplasmSubdivisionOther(AnatomicNeoplasmSubdivisionOther value) { + return new JAXBElement(_AnatomicNeoplasmSubdivisionOther_QNAME, AnatomicNeoplasmSubdivisionOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfCadHeartAttackDx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_cad_heart_attack_dx") + public JAXBElement createYearOfCadHeartAttackDx(YearOfCadHeartAttackDx value) { + return new JAXBElement(_YearOfCadHeartAttackDx_QNAME, YearOfCadHeartAttackDx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RadiationTherapyTotalDosage }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "radiation_therapy_total_dosage") + public JAXBElement createRadiationTherapyTotalDosage(RadiationTherapyTotalDosage value) { + return new JAXBElement(_RadiationTherapyTotalDosage_QNAME, RadiationTherapyTotalDosage.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link WorkplaceSmokeExposureYears }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "workplace_smoke_exposure_years") + public JAXBElement createWorkplaceSmokeExposureYears(WorkplaceSmokeExposureYears value) { + return new JAXBElement(_WorkplaceSmokeExposureYears_QNAME, WorkplaceSmokeExposureYears.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MethodOfClinicalDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "method_of_clinical_diagnosis") + public JAXBElement createMethodOfClinicalDiagnosis(MethodOfClinicalDiagnosis value) { + return new JAXBElement(_MethodOfClinicalDiagnosis_QNAME, MethodOfClinicalDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfLastFollowup }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "month_of_last_followup") + public JAXBElement createMonthOfLastFollowup(MonthOfLastFollowup value) { + return new JAXBElement(_MonthOfLastFollowup_QNAME, MonthOfLastFollowup.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SmokingAvgCigarettesPerDay }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "smoking_avg_cigarettes_per_day") + public JAXBElement createSmokingAvgCigarettesPerDay(SmokingAvgCigarettesPerDay value) { + return new JAXBElement(_SmokingAvgCigarettesPerDay_QNAME, SmokingAvgCigarettesPerDay.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetforminUseCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "metformin_use_category") + public JAXBElement createMetforminUseCategory(MetforminUseCategory value) { + return new JAXBElement(_MetforminUseCategory_QNAME, MetforminUseCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link IcdO3Site }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "icd_o_3_site") + public JAXBElement createIcdO3Site(IcdO3Site value) { + return new JAXBElement(_IcdO3Site_QNAME, IcdO3Site.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MolecularAbnormalityResultsOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "molecular_abnormality_results_other") + public JAXBElement createMolecularAbnormalityResultsOther(MolecularAbnormalityResultsOther value) { + return new JAXBElement(_MolecularAbnormalityResultsOther_QNAME, MolecularAbnormalityResultsOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link WoodDustExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "wood_dust_exposure") + public JAXBElement createWoodDustExposure(WoodDustExposure value) { + return new JAXBElement(_WoodDustExposure_QNAME, WoodDustExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link WorkplaceSmokeExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "workplace_smoke_exposure") + public JAXBElement createWorkplaceSmokeExposure(WorkplaceSmokeExposure value) { + return new JAXBElement(_WorkplaceSmokeExposure_QNAME, WorkplaceSmokeExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AsbestosExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "asbestos_exposure") + public JAXBElement createAsbestosExposure(AsbestosExposure value) { + return new JAXBElement(_AsbestosExposure_QNAME, AsbestosExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AgeBeganSmokingInYears }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "age_began_smoking_in_years") + public JAXBElement createAgeBeganSmokingInYears(AgeBeganSmokingInYears value) { + return new JAXBElement(_AgeBeganSmokingInYears_QNAME, AgeBeganSmokingInYears.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PrimaryLymphNodePresentationAssessment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "primary_lymph_node_presentation_assessment") + public JAXBElement createPrimaryLymphNodePresentationAssessment(PrimaryLymphNodePresentationAssessment value) { + return new JAXBElement(_PrimaryLymphNodePresentationAssessment_QNAME, PrimaryLymphNodePresentationAssessment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherGasExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_gas_exposure") + public JAXBElement createOtherGasExposure(OtherGasExposure value) { + return new JAXBElement(_OtherGasExposure_QNAME, OtherGasExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SmokingFrequency }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "smoking_frequency") + public JAXBElement createSmokingFrequency(SmokingFrequency value) { + return new JAXBElement(_SmokingFrequency_QNAME, SmokingFrequency.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MarginStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "margin_status") + public JAXBElement createMarginStatus(MarginStatus value) { + return new JAXBElement(_MarginStatus_QNAME, MarginStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PerineuralInvasionPresent }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "perineural_invasion_present") + public JAXBElement createPerineuralInvasionPresent(PerineuralInvasionPresent value) { + return new JAXBElement(_PerineuralInvasionPresent_QNAME, PerineuralInvasionPresent.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfOtherMalignancy }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_other_malignancy") + public JAXBElement createYearOfOtherMalignancy(YearOfOtherMalignancy value) { + return new JAXBElement(_YearOfOtherMalignancy_QNAME, YearOfOtherMalignancy.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfTumorRecurrence }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "year_of_tumor_recurrence") + public JAXBElement createYearOfTumorRecurrence(YearOfTumorRecurrence value) { + return new JAXBElement(_YearOfTumorRecurrence_QNAME, YearOfTumorRecurrence.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CancerDiagnosisCancerTypeIcd9TextName }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "cancer_diagnosis_cancer_type_icd9_text_name") + public JAXBElement createCancerDiagnosisCancerTypeIcd9TextName(CancerDiagnosisCancerTypeIcd9TextName value) { + return new JAXBElement(_CancerDiagnosisCancerTypeIcd9TextName_QNAME, CancerDiagnosisCancerTypeIcd9TextName.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PatientProgressionStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "patient_progression_status") + public JAXBElement createPatientProgressionStatus(PatientProgressionStatus value) { + return new JAXBElement(_PatientProgressionStatus_QNAME, PatientProgressionStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CytogeneticAbnormality }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "cytogenetic_abnormality") + public JAXBElement createCytogeneticAbnormality(CytogeneticAbnormality value) { + return new JAXBElement(_CytogeneticAbnormality_QNAME, CytogeneticAbnormality.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfInitialPathologicDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_initial_pathologic_diagnosis") + public JAXBElement createDayOfInitialPathologicDiagnosis(DayOfInitialPathologicDiagnosis value) { + return new JAXBElement(_DayOfInitialPathologicDiagnosis_QNAME, DayOfInitialPathologicDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Icd10 }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "icd_10") + public JAXBElement createIcd10(Icd10 value) { + return new JAXBElement(_Icd10_QNAME, Icd10 .class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AspirinUseCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "aspirin_use_category") + public JAXBElement createAspirinUseCategory(AspirinUseCategory value) { + return new JAXBElement(_AspirinUseCategory_QNAME, AspirinUseCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdultSmokeExposurePerDay }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "adult_smoke_exposure_per_day") + public JAXBElement createAdultSmokeExposurePerDay(AdultSmokeExposurePerDay value) { + return new JAXBElement(_AdultSmokeExposurePerDay_QNAME, AdultSmokeExposurePerDay.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfClinicalDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "day_of_clinical_diagnosis") + public JAXBElement createDayOfClinicalDiagnosis(DayOfClinicalDiagnosis value) { + return new JAXBElement(_DayOfClinicalDiagnosis_QNAME, DayOfClinicalDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BirthControlPillHistoryUsageCategory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "birth_control_pill_history_usage_category") + public JAXBElement createBirthControlPillHistoryUsageCategory(BirthControlPillHistoryUsageCategory value) { + return new JAXBElement(_BirthControlPillHistoryUsageCategory_QNAME, BirthControlPillHistoryUsageCategory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MolecularAbnormalityResults }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "molecular_abnormality_results") + public JAXBElement createMolecularAbnormalityResults(MolecularAbnormalityResults value) { + return new JAXBElement(_MolecularAbnormalityResults_QNAME, MolecularAbnormalityResults.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DifficultToAnswerExposure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "difficult_to_answer_exposure") + public JAXBElement createDifficultToAnswerExposure(DifficultToAnswerExposure value) { + return new JAXBElement(_DifficultToAnswerExposure_QNAME, DifficultToAnswerExposure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherTobaccoProductType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "other_tobacco_product_type") + public JAXBElement createOtherTobaccoProductType(OtherTobaccoProductType value) { + return new JAXBElement(_OtherTobaccoProductType_QNAME, OtherTobaccoProductType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PostoperativeRxTx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "postoperative_rx_tx") + public JAXBElement createPostoperativeRxTx(PostoperativeRxTx value) { + return new JAXBElement(_PostoperativeRxTx_QNAME, PostoperativeRxTx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RelativeSmokingHistoryIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "relative_smoking_history_indicator") + public JAXBElement createRelativeSmokingHistoryIndicator(RelativeSmokingHistoryIndicator value) { + return new JAXBElement(_RelativeSmokingHistoryIndicator_QNAME, RelativeSmokingHistoryIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link StrokeIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", name = "stroke_indicator") + public JAXBElement createStrokeIndicator(StrokeIndicator value) { + return new JAXBElement(_StrokeIndicator_QNAME, StrokeIndicator.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OccupationAssessmentIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OccupationAssessmentIndicator.java new file mode 100644 index 0000000..02b6d1b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OccupationAssessmentIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182555" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OccupationAssessmentIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182555"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OccupationPrimaryJob.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OccupationPrimaryJob.java new file mode 100644 index 0000000..78bd79c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OccupationPrimaryJob.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5714" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OccupationPrimaryJob { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5714"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherDustExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherDustExposure.java new file mode 100644 index 0000000..48e371e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherDustExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193943" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherDustExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193943"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherDustExposureType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherDustExposureType.java new file mode 100644 index 0000000..f4a2d14 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherDustExposureType.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193944" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherDustExposureType { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193944"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherGasExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherGasExposure.java new file mode 100644 index 0000000..aca5a46 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherGasExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193946" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherGasExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193946"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherGasExposureType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherGasExposureType.java new file mode 100644 index 0000000..f17f549 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherGasExposureType.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193948" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherGasExposureType { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193948"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherMetastaticSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherMetastaticSite.java new file mode 100644 index 0000000..a639875 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherMetastaticSite.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3135371" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherMetastaticSite { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3135371"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherRadiationOtherMalignancy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherRadiationOtherMalignancy.java new file mode 100644 index 0000000..43caf91 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherRadiationOtherMalignancy.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3350649" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherRadiationOtherMalignancy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3350649"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancy.java new file mode 100644 index 0000000..0330fd6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancy.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2603192" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherTherapyOtherMalignancy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2603192"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancyText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancyText.java new file mode 100644 index 0000000..52993d1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancyText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2542520" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherTherapyOtherMalignancyText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2542520"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancyUnknown.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancyUnknown.java new file mode 100644 index 0000000..e9d6998 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTherapyOtherMalignancyUnknown.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4174846" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherTherapyOtherMalignancyUnknown { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4174846"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductDailyUse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductDailyUse.java new file mode 100644 index 0000000..4e04d89 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductDailyUse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2524512" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherTobaccoProductDailyUse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2524512"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductDuration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductDuration.java new file mode 100644 index 0000000..de271fd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductDuration.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3137957" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="years" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherTobaccoProductDuration { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3137957"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "years"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductIndicator.java new file mode 100644 index 0000000..2953236 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2182896" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OtherTobaccoProductIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2182896"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductType.java new file mode 100644 index 0000000..698785b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OtherTobaccoProductType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2926878" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class OtherTobaccoProductType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OxygenUseIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OxygenUseIndicator.java new file mode 100644 index 0000000..62546a9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OxygenUseIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3181401" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class OxygenUseIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3181401"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OxygenUseType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OxygenUseType.java new file mode 100644 index 0000000..45ebd1f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/OxygenUseType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3181408" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class OxygenUseType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientDeathReason.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientDeathReason.java new file mode 100644 index 0000000..326b5a7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientDeathReason.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2554674" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "patient_death_reason") +public class PatientDeathReason + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientProgressionStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientProgressionStatus.java new file mode 100644 index 0000000..35624b1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientProgressionStatus.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4381042" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PatientProgressionStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientSex.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientSex.java new file mode 100644 index 0000000..84996e1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PatientSex.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2660030" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "patient_sex") +public class PatientSex + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PerformanceStatusScaleTiming.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PerformanceStatusScaleTiming.java new file mode 100644 index 0000000..3f368a8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PerformanceStatusScaleTiming.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2792763" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "performance_status_scale_timing") +public class PerformanceStatusScaleTiming + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PerineuralInvasionPresent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PerineuralInvasionPresent.java new file mode 100644 index 0000000..f58909f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PerineuralInvasionPresent.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="64181" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PerineuralInvasionPresent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "64181"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PersonNeoplasmCancerStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PersonNeoplasmCancerStatus.java new file mode 100644 index 0000000..33d5531 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PersonNeoplasmCancerStatus.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2759550" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PersonNeoplasmCancerStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PersonOccupationYearsNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PersonOccupationYearsNumber.java new file mode 100644 index 0000000..88c694b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PersonOccupationYearsNumber.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2435424" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PersonOccupationYearsNumber { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2435424"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PharmRegimen.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PharmRegimen.java new file mode 100644 index 0000000..e33f4ea --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PharmRegimen.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3366758" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "pharm_regimen") +public class PharmRegimen + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PharmRegimenOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PharmRegimenOther.java new file mode 100644 index 0000000..329402e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PharmRegimenOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3366930" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "pharm_regimen_other") +public class PharmRegimenOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3366930"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PhysicalExerciseDaysPerWeek.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PhysicalExerciseDaysPerWeek.java new file mode 100644 index 0000000..41f8ceb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PhysicalExerciseDaysPerWeek.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4207916" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PhysicalExerciseDaysPerWeek + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PlateletResultCount.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PlateletResultCount.java new file mode 100644 index 0000000..b3dc239 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PlateletResultCount.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="58304" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PlateletResultCount { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "58304"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PneumoniaIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PneumoniaIndicator.java new file mode 100644 index 0000000..21e54e9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PneumoniaIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4175294" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PneumoniaIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4175294"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostOpAblationEmbolizationTx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostOpAblationEmbolizationTx.java new file mode 100644 index 0000000..75f6935 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostOpAblationEmbolizationTx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3172120" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PostOpAblationEmbolizationTx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3172120"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus.java new file mode 100644 index 0000000..83142b3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3186684" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostoperativeRxTx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostoperativeRxTx.java new file mode 100644 index 0000000..439af27 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PostoperativeRxTx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3397567" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PostoperativeRxTx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3397567"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryLymphNodePresentationAssessment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryLymphNodePresentationAssessment.java new file mode 100644 index 0000000..0b0b257 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryLymphNodePresentationAssessment.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2200396" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PrimaryLymphNodePresentationAssessment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2200396"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryTherapyOutcomeSuccess.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryTherapyOutcomeSuccess.java new file mode 100644 index 0000000..63d0302 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryTherapyOutcomeSuccess.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2786727" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PrimaryTherapyOutcomeSuccess + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryTherapyOutcomeSuccessAtFollowup.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryTherapyOutcomeSuccessAtFollowup.java new file mode 100644 index 0000000..b1c426d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PrimaryTherapyOutcomeSuccessAtFollowup.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104050" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PrimaryTherapyOutcomeSuccessAtFollowup + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PriorSystemicTherapyType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PriorSystemicTherapyType.java new file mode 100644 index 0000000..ae6ff5a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/PriorSystemicTherapyType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3119700" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PriorSystemicTherapyType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionDates.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionDates.java new file mode 100644 index 0000000..9222126 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionDates.java @@ -0,0 +1,275 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_tumor_progression"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_tumor_progression"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_tumor_progression"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_tumor_progression" minOccurs="0"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_patient_progression_free"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_patient_progression_free"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_patient_progression_free"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_patient_progression_free"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "monthOfTumorProgression", + "dayOfTumorProgression", + "yearOfTumorProgression", + "daysToTumorProgression", + "monthOfPatientProgressionFree", + "dayOfPatientProgressionFree", + "yearOfPatientProgressionFree", + "daysToPatientProgressionFree" +}) +@XmlRootElement(name = "progression_dates") +public class ProgressionDates { + + @XmlElement(name = "month_of_tumor_progression", nillable = true) + protected MonthOfTumorProgression monthOfTumorProgression; + @XmlElement(name = "day_of_tumor_progression", nillable = true) + protected DayOfTumorProgression dayOfTumorProgression; + @XmlElement(name = "year_of_tumor_progression", nillable = true) + protected YearOfTumorProgression yearOfTumorProgression; + @XmlElement(name = "days_to_tumor_progression") + protected DaysToTumorProgression daysToTumorProgression; + @XmlElement(name = "month_of_patient_progression_free", nillable = true) + protected MonthOfPatientProgressionFree monthOfPatientProgressionFree; + @XmlElement(name = "day_of_patient_progression_free", nillable = true) + protected DayOfPatientProgressionFree dayOfPatientProgressionFree; + @XmlElement(name = "year_of_patient_progression_free", nillable = true) + protected YearOfPatientProgressionFree yearOfPatientProgressionFree; + @XmlElement(name = "days_to_patient_progression_free") + protected DaysToPatientProgressionFree daysToPatientProgressionFree; + + /** + * Gets the value of the monthOfTumorProgression property. + * + * @return + * possible object is + * {@link MonthOfTumorProgression } + * + */ + public MonthOfTumorProgression getMonthOfTumorProgression() { + return monthOfTumorProgression; + } + + /** + * Sets the value of the monthOfTumorProgression property. + * + * @param value + * allowed object is + * {@link MonthOfTumorProgression } + * + */ + public void setMonthOfTumorProgression(MonthOfTumorProgression value) { + this.monthOfTumorProgression = value; + } + + /** + * Gets the value of the dayOfTumorProgression property. + * + * @return + * possible object is + * {@link DayOfTumorProgression } + * + */ + public DayOfTumorProgression getDayOfTumorProgression() { + return dayOfTumorProgression; + } + + /** + * Sets the value of the dayOfTumorProgression property. + * + * @param value + * allowed object is + * {@link DayOfTumorProgression } + * + */ + public void setDayOfTumorProgression(DayOfTumorProgression value) { + this.dayOfTumorProgression = value; + } + + /** + * Gets the value of the yearOfTumorProgression property. + * + * @return + * possible object is + * {@link YearOfTumorProgression } + * + */ + public YearOfTumorProgression getYearOfTumorProgression() { + return yearOfTumorProgression; + } + + /** + * Sets the value of the yearOfTumorProgression property. + * + * @param value + * allowed object is + * {@link YearOfTumorProgression } + * + */ + public void setYearOfTumorProgression(YearOfTumorProgression value) { + this.yearOfTumorProgression = value; + } + + /** + * Gets the value of the daysToTumorProgression property. + * + * @return + * possible object is + * {@link DaysToTumorProgression } + * + */ + public DaysToTumorProgression getDaysToTumorProgression() { + return daysToTumorProgression; + } + + /** + * Sets the value of the daysToTumorProgression property. + * + * @param value + * allowed object is + * {@link DaysToTumorProgression } + * + */ + public void setDaysToTumorProgression(DaysToTumorProgression value) { + this.daysToTumorProgression = value; + } + + /** + * Gets the value of the monthOfPatientProgressionFree property. + * + * @return + * possible object is + * {@link MonthOfPatientProgressionFree } + * + */ + public MonthOfPatientProgressionFree getMonthOfPatientProgressionFree() { + return monthOfPatientProgressionFree; + } + + /** + * Sets the value of the monthOfPatientProgressionFree property. + * + * @param value + * allowed object is + * {@link MonthOfPatientProgressionFree } + * + */ + public void setMonthOfPatientProgressionFree(MonthOfPatientProgressionFree value) { + this.monthOfPatientProgressionFree = value; + } + + /** + * Gets the value of the dayOfPatientProgressionFree property. + * + * @return + * possible object is + * {@link DayOfPatientProgressionFree } + * + */ + public DayOfPatientProgressionFree getDayOfPatientProgressionFree() { + return dayOfPatientProgressionFree; + } + + /** + * Sets the value of the dayOfPatientProgressionFree property. + * + * @param value + * allowed object is + * {@link DayOfPatientProgressionFree } + * + */ + public void setDayOfPatientProgressionFree(DayOfPatientProgressionFree value) { + this.dayOfPatientProgressionFree = value; + } + + /** + * Gets the value of the yearOfPatientProgressionFree property. + * + * @return + * possible object is + * {@link YearOfPatientProgressionFree } + * + */ + public YearOfPatientProgressionFree getYearOfPatientProgressionFree() { + return yearOfPatientProgressionFree; + } + + /** + * Sets the value of the yearOfPatientProgressionFree property. + * + * @param value + * allowed object is + * {@link YearOfPatientProgressionFree } + * + */ + public void setYearOfPatientProgressionFree(YearOfPatientProgressionFree value) { + this.yearOfPatientProgressionFree = value; + } + + /** + * Gets the value of the daysToPatientProgressionFree property. + * + * @return + * possible object is + * {@link DaysToPatientProgressionFree } + * + */ + public DaysToPatientProgressionFree getDaysToPatientProgressionFree() { + return daysToPatientProgressionFree; + } + + /** + * Sets the value of the daysToPatientProgressionFree property. + * + * @param value + * allowed object is + * {@link DaysToPatientProgressionFree } + * + */ + public void setDaysToPatientProgressionFree(DaysToPatientProgressionFree value) { + this.daysToPatientProgressionFree = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionDeterminedByNotes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionDeterminedByNotes.java new file mode 100644 index 0000000..180a624 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionDeterminedByNotes.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2786210" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "progression_determined_by_notes") +public class ProgressionDeterminedByNotes + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionStatus.java new file mode 100644 index 0000000..fdc8e42 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProgressionStatus.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2673787" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "progression_status") +public class ProgressionStatus { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2673787"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProtocolStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProtocolStatus.java new file mode 100644 index 0000000..4d1eddd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ProtocolStatus.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102355" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "protocol_status") +public class ProtocolStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Race.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Race.java new file mode 100644 index 0000000..e96c4da --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Race.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2192199" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "race") +public class Race + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RaceList.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RaceList.java new file mode 100644 index 0000000..ae1cbe7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RaceList.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}race" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "race" +}) +@XmlRootElement(name = "race_list") +public class RaceList { + + @XmlElement(required = true) + protected List race; + + /** + * Gets the value of the race 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 race property. + * + *

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

+     *    getRace().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Race } + * + * + */ + public List getRace() { + if (race == null) { + race = new ArrayList(); + } + return this.race; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapy.java new file mode 100644 index 0000000..f613fd3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapy.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2005312" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "radiation_therapy") +public class RadiationTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2005312"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.9"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapyEnd.java new file mode 100644 index 0000000..d58d6f7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapyEnd.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4618471" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class RadiationTherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4618471"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapyTotalDosage.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapyTotalDosage.java new file mode 100644 index 0000000..e62b16b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadiationTherapyTotalDosage.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="36" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class RadiationTherapyTotalDosage + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadioactiveMaterialExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadioactiveMaterialExposure.java new file mode 100644 index 0000000..dc5e637 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RadioactiveMaterialExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193900" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class RadioactiveMaterialExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193900"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RegimenIndication.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RegimenIndication.java new file mode 100644 index 0000000..8ca3c34 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RegimenIndication.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2793511" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "regimen_indication") +public class RegimenIndication + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RegimenIndicationNotes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RegimenIndicationNotes.java new file mode 100644 index 0000000..b392beb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RegimenIndicationNotes.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2793516" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "regimen_indication_notes") +public class RegimenIndicationNotes + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeDeathIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeDeathIndicator.java new file mode 100644 index 0000000..d075da8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeDeathIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4207627" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class RelativeDeathIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4207627"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeFamilyCancerHistory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeFamilyCancerHistory.java new file mode 100644 index 0000000..f44e189 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeFamilyCancerHistory.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2691192" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class RelativeFamilyCancerHistory { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2691192"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeSmokingHistoryIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeSmokingHistoryIndicator.java new file mode 100644 index 0000000..e8ae5cc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/RelativeSmokingHistoryIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4207571" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class RelativeSmokingHistoryIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4207571"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ResidualTumor.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ResidualTumor.java new file mode 100644 index 0000000..3fa46f1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ResidualTumor.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2608702" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ResidualTumor + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Response.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Response.java new file mode 100644 index 0000000..e1fb7ad --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Response.java @@ -0,0 +1,211 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}er_disease_extent_prior_er_treatment"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}er_response_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}er_estimated_duration_response"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}response_dates"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}er_solid_tumor_response_documented_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}er_solid_tumor_response_documented_type_other"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "erDiseaseExtentPriorErTreatment", + "erResponseType", + "erEstimatedDurationResponse", + "responseDates", + "erSolidTumorResponseDocumentedType", + "erSolidTumorResponseDocumentedTypeOther" +}) +@XmlRootElement(name = "response") +public class Response { + + @XmlElement(name = "er_disease_extent_prior_er_treatment", required = true, nillable = true) + protected ErDiseaseExtentPriorErTreatment erDiseaseExtentPriorErTreatment; + @XmlElement(name = "er_response_type", required = true, nillable = true) + protected ErResponseType erResponseType; + @XmlElement(name = "er_estimated_duration_response", required = true, nillable = true) + protected ErEstimatedDurationResponse erEstimatedDurationResponse; + @XmlElement(name = "response_dates", required = true) + protected ResponseDates responseDates; + @XmlElement(name = "er_solid_tumor_response_documented_type", required = true, nillable = true) + protected ErSolidTumorResponseDocumentedType erSolidTumorResponseDocumentedType; + @XmlElement(name = "er_solid_tumor_response_documented_type_other", required = true, nillable = true) + protected ErSolidTumorResponseDocumentedTypeOther erSolidTumorResponseDocumentedTypeOther; + + /** + * Gets the value of the erDiseaseExtentPriorErTreatment property. + * + * @return + * possible object is + * {@link ErDiseaseExtentPriorErTreatment } + * + */ + public ErDiseaseExtentPriorErTreatment getErDiseaseExtentPriorErTreatment() { + return erDiseaseExtentPriorErTreatment; + } + + /** + * Sets the value of the erDiseaseExtentPriorErTreatment property. + * + * @param value + * allowed object is + * {@link ErDiseaseExtentPriorErTreatment } + * + */ + public void setErDiseaseExtentPriorErTreatment(ErDiseaseExtentPriorErTreatment value) { + this.erDiseaseExtentPriorErTreatment = value; + } + + /** + * Gets the value of the erResponseType property. + * + * @return + * possible object is + * {@link ErResponseType } + * + */ + public ErResponseType getErResponseType() { + return erResponseType; + } + + /** + * Sets the value of the erResponseType property. + * + * @param value + * allowed object is + * {@link ErResponseType } + * + */ + public void setErResponseType(ErResponseType value) { + this.erResponseType = value; + } + + /** + * Gets the value of the erEstimatedDurationResponse property. + * + * @return + * possible object is + * {@link ErEstimatedDurationResponse } + * + */ + public ErEstimatedDurationResponse getErEstimatedDurationResponse() { + return erEstimatedDurationResponse; + } + + /** + * Sets the value of the erEstimatedDurationResponse property. + * + * @param value + * allowed object is + * {@link ErEstimatedDurationResponse } + * + */ + public void setErEstimatedDurationResponse(ErEstimatedDurationResponse value) { + this.erEstimatedDurationResponse = value; + } + + /** + * Gets the value of the responseDates property. + * + * @return + * possible object is + * {@link ResponseDates } + * + */ + public ResponseDates getResponseDates() { + return responseDates; + } + + /** + * Sets the value of the responseDates property. + * + * @param value + * allowed object is + * {@link ResponseDates } + * + */ + public void setResponseDates(ResponseDates value) { + this.responseDates = value; + } + + /** + * Gets the value of the erSolidTumorResponseDocumentedType property. + * + * @return + * possible object is + * {@link ErSolidTumorResponseDocumentedType } + * + */ + public ErSolidTumorResponseDocumentedType getErSolidTumorResponseDocumentedType() { + return erSolidTumorResponseDocumentedType; + } + + /** + * Sets the value of the erSolidTumorResponseDocumentedType property. + * + * @param value + * allowed object is + * {@link ErSolidTumorResponseDocumentedType } + * + */ + public void setErSolidTumorResponseDocumentedType(ErSolidTumorResponseDocumentedType value) { + this.erSolidTumorResponseDocumentedType = value; + } + + /** + * Gets the value of the erSolidTumorResponseDocumentedTypeOther property. + * + * @return + * possible object is + * {@link ErSolidTumorResponseDocumentedTypeOther } + * + */ + public ErSolidTumorResponseDocumentedTypeOther getErSolidTumorResponseDocumentedTypeOther() { + return erSolidTumorResponseDocumentedTypeOther; + } + + /** + * Sets the value of the erSolidTumorResponseDocumentedTypeOther property. + * + * @param value + * allowed object is + * {@link ErSolidTumorResponseDocumentedTypeOther } + * + */ + public void setErSolidTumorResponseDocumentedTypeOther(ErSolidTumorResponseDocumentedTypeOther value) { + this.erSolidTumorResponseDocumentedTypeOther = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ResponseDates.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ResponseDates.java new file mode 100644 index 0000000..3a5dcef --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ResponseDates.java @@ -0,0 +1,391 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_first_response"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_first_response"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_first_response"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_first_response"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_first_complete_response"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_first_complete_response"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_first_complete_response"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_first_complete_response"/>
+ *         </choice>
+ *         <choice>
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}month_of_first_partial_response"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}day_of_first_partial_response"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}year_of_first_partial_response"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/2.7}days_to_first_partial_response"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "monthOfFirstResponse", + "dayOfFirstResponse", + "yearOfFirstResponse", + "daysToFirstResponse", + "monthOfFirstCompleteResponse", + "dayOfFirstCompleteResponse", + "yearOfFirstCompleteResponse", + "daysToFirstCompleteResponse", + "monthOfFirstPartialResponse", + "dayOfFirstPartialResponse", + "yearOfFirstPartialResponse", + "daysToFirstPartialResponse" +}) +@XmlRootElement(name = "response_dates") +public class ResponseDates { + + @XmlElement(name = "month_of_first_response", nillable = true) + protected MonthOfFirstResponse monthOfFirstResponse; + @XmlElement(name = "day_of_first_response", nillable = true) + protected DayOfFirstResponse dayOfFirstResponse; + @XmlElement(name = "year_of_first_response", nillable = true) + protected YearOfFirstResponse yearOfFirstResponse; + @XmlElement(name = "days_to_first_response") + protected DaysToFirstResponse daysToFirstResponse; + @XmlElement(name = "month_of_first_complete_response", nillable = true) + protected MonthOfFirstCompleteResponse monthOfFirstCompleteResponse; + @XmlElement(name = "day_of_first_complete_response", nillable = true) + protected DayOfFirstCompleteResponse dayOfFirstCompleteResponse; + @XmlElement(name = "year_of_first_complete_response", nillable = true) + protected YearOfFirstCompleteResponse yearOfFirstCompleteResponse; + @XmlElement(name = "days_to_first_complete_response") + protected DaysToFirstCompleteResponse daysToFirstCompleteResponse; + @XmlElement(name = "month_of_first_partial_response", nillable = true) + protected MonthOfFirstPartialResponse monthOfFirstPartialResponse; + @XmlElement(name = "day_of_first_partial_response", nillable = true) + protected DayOfFirstPartialResponse dayOfFirstPartialResponse; + @XmlElement(name = "year_of_first_partial_response", nillable = true) + protected YearOfFirstPartialResponse yearOfFirstPartialResponse; + @XmlElement(name = "days_to_first_partial_response") + protected DaysToFirstPartialResponse daysToFirstPartialResponse; + + /** + * Gets the value of the monthOfFirstResponse property. + * + * @return + * possible object is + * {@link MonthOfFirstResponse } + * + */ + public MonthOfFirstResponse getMonthOfFirstResponse() { + return monthOfFirstResponse; + } + + /** + * Sets the value of the monthOfFirstResponse property. + * + * @param value + * allowed object is + * {@link MonthOfFirstResponse } + * + */ + public void setMonthOfFirstResponse(MonthOfFirstResponse value) { + this.monthOfFirstResponse = value; + } + + /** + * Gets the value of the dayOfFirstResponse property. + * + * @return + * possible object is + * {@link DayOfFirstResponse } + * + */ + public DayOfFirstResponse getDayOfFirstResponse() { + return dayOfFirstResponse; + } + + /** + * Sets the value of the dayOfFirstResponse property. + * + * @param value + * allowed object is + * {@link DayOfFirstResponse } + * + */ + public void setDayOfFirstResponse(DayOfFirstResponse value) { + this.dayOfFirstResponse = value; + } + + /** + * Gets the value of the yearOfFirstResponse property. + * + * @return + * possible object is + * {@link YearOfFirstResponse } + * + */ + public YearOfFirstResponse getYearOfFirstResponse() { + return yearOfFirstResponse; + } + + /** + * Sets the value of the yearOfFirstResponse property. + * + * @param value + * allowed object is + * {@link YearOfFirstResponse } + * + */ + public void setYearOfFirstResponse(YearOfFirstResponse value) { + this.yearOfFirstResponse = value; + } + + /** + * Gets the value of the daysToFirstResponse property. + * + * @return + * possible object is + * {@link DaysToFirstResponse } + * + */ + public DaysToFirstResponse getDaysToFirstResponse() { + return daysToFirstResponse; + } + + /** + * Sets the value of the daysToFirstResponse property. + * + * @param value + * allowed object is + * {@link DaysToFirstResponse } + * + */ + public void setDaysToFirstResponse(DaysToFirstResponse value) { + this.daysToFirstResponse = value; + } + + /** + * Gets the value of the monthOfFirstCompleteResponse property. + * + * @return + * possible object is + * {@link MonthOfFirstCompleteResponse } + * + */ + public MonthOfFirstCompleteResponse getMonthOfFirstCompleteResponse() { + return monthOfFirstCompleteResponse; + } + + /** + * Sets the value of the monthOfFirstCompleteResponse property. + * + * @param value + * allowed object is + * {@link MonthOfFirstCompleteResponse } + * + */ + public void setMonthOfFirstCompleteResponse(MonthOfFirstCompleteResponse value) { + this.monthOfFirstCompleteResponse = value; + } + + /** + * Gets the value of the dayOfFirstCompleteResponse property. + * + * @return + * possible object is + * {@link DayOfFirstCompleteResponse } + * + */ + public DayOfFirstCompleteResponse getDayOfFirstCompleteResponse() { + return dayOfFirstCompleteResponse; + } + + /** + * Sets the value of the dayOfFirstCompleteResponse property. + * + * @param value + * allowed object is + * {@link DayOfFirstCompleteResponse } + * + */ + public void setDayOfFirstCompleteResponse(DayOfFirstCompleteResponse value) { + this.dayOfFirstCompleteResponse = value; + } + + /** + * Gets the value of the yearOfFirstCompleteResponse property. + * + * @return + * possible object is + * {@link YearOfFirstCompleteResponse } + * + */ + public YearOfFirstCompleteResponse getYearOfFirstCompleteResponse() { + return yearOfFirstCompleteResponse; + } + + /** + * Sets the value of the yearOfFirstCompleteResponse property. + * + * @param value + * allowed object is + * {@link YearOfFirstCompleteResponse } + * + */ + public void setYearOfFirstCompleteResponse(YearOfFirstCompleteResponse value) { + this.yearOfFirstCompleteResponse = value; + } + + /** + * Gets the value of the daysToFirstCompleteResponse property. + * + * @return + * possible object is + * {@link DaysToFirstCompleteResponse } + * + */ + public DaysToFirstCompleteResponse getDaysToFirstCompleteResponse() { + return daysToFirstCompleteResponse; + } + + /** + * Sets the value of the daysToFirstCompleteResponse property. + * + * @param value + * allowed object is + * {@link DaysToFirstCompleteResponse } + * + */ + public void setDaysToFirstCompleteResponse(DaysToFirstCompleteResponse value) { + this.daysToFirstCompleteResponse = value; + } + + /** + * Gets the value of the monthOfFirstPartialResponse property. + * + * @return + * possible object is + * {@link MonthOfFirstPartialResponse } + * + */ + public MonthOfFirstPartialResponse getMonthOfFirstPartialResponse() { + return monthOfFirstPartialResponse; + } + + /** + * Sets the value of the monthOfFirstPartialResponse property. + * + * @param value + * allowed object is + * {@link MonthOfFirstPartialResponse } + * + */ + public void setMonthOfFirstPartialResponse(MonthOfFirstPartialResponse value) { + this.monthOfFirstPartialResponse = value; + } + + /** + * Gets the value of the dayOfFirstPartialResponse property. + * + * @return + * possible object is + * {@link DayOfFirstPartialResponse } + * + */ + public DayOfFirstPartialResponse getDayOfFirstPartialResponse() { + return dayOfFirstPartialResponse; + } + + /** + * Sets the value of the dayOfFirstPartialResponse property. + * + * @param value + * allowed object is + * {@link DayOfFirstPartialResponse } + * + */ + public void setDayOfFirstPartialResponse(DayOfFirstPartialResponse value) { + this.dayOfFirstPartialResponse = value; + } + + /** + * Gets the value of the yearOfFirstPartialResponse property. + * + * @return + * possible object is + * {@link YearOfFirstPartialResponse } + * + */ + public YearOfFirstPartialResponse getYearOfFirstPartialResponse() { + return yearOfFirstPartialResponse; + } + + /** + * Sets the value of the yearOfFirstPartialResponse property. + * + * @param value + * allowed object is + * {@link YearOfFirstPartialResponse } + * + */ + public void setYearOfFirstPartialResponse(YearOfFirstPartialResponse value) { + this.yearOfFirstPartialResponse = value; + } + + /** + * Gets the value of the daysToFirstPartialResponse property. + * + * @return + * possible object is + * {@link DaysToFirstPartialResponse } + * + */ + public DaysToFirstPartialResponse getDaysToFirstPartialResponse() { + return daysToFirstPartialResponse; + } + + /** + * Sets the value of the daysToFirstPartialResponse property. + * + * @param value + * allowed object is + * {@link DaysToFirstPartialResponse } + * + */ + public void setDaysToFirstPartialResponse(DaysToFirstPartialResponse value) { + this.daysToFirstPartialResponse = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingAvgCigarettesPerDay.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingAvgCigarettesPerDay.java new file mode 100644 index 0000000..1e3239b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingAvgCigarettesPerDay.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2001716" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SmokingAvgCigarettesPerDay { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2001716"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationDuration.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationDuration.java new file mode 100644 index 0000000..69fb524 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationDuration.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2006695" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SmokingCessationDuration { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2006695"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationDurationUnits.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationDurationUnits.java new file mode 100644 index 0000000..e4c3185 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationDurationUnits.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2006693" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class SmokingCessationDurationUnits + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationIndicator.java new file mode 100644 index 0000000..6b03e5d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingCessationIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2201900" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SmokingCessationIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2201900"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingDurationYears.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingDurationYears.java new file mode 100644 index 0000000..6646c0f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingDurationYears.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2001715" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SmokingDurationYears { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2001715"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingFrequency.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingFrequency.java new file mode 100644 index 0000000..138093b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingFrequency.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2179799" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class SmokingFrequency + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingHistoryIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingHistoryIndicator.java new file mode 100644 index 0000000..891c2b5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingHistoryIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2182896" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SmokingHistoryIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2182896"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingTimeInDayBegins.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingTimeInDayBegins.java new file mode 100644 index 0000000..2b0c72d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SmokingTimeInDayBegins.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3279220" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class SmokingTimeInDayBegins + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposure.java new file mode 100644 index 0000000..b430202 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182241" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SocialSmokeExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182241"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposurePerDay.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposurePerDay.java new file mode 100644 index 0000000..b654d6b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposurePerDay.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182264" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="hours" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SocialSmokeExposurePerDay { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182264"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "hours"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposureYears.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposureYears.java new file mode 100644 index 0000000..c37b32a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SocialSmokeExposureYears.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2190208" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SocialSmokeExposureYears { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2190208"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SourceOfPatientDeathReason.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SourceOfPatientDeathReason.java new file mode 100644 index 0000000..70e3e67 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SourceOfPatientDeathReason.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2390921" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class SourceOfPatientDeathReason + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SpecifySingleAgentTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SpecifySingleAgentTherapy.java new file mode 100644 index 0000000..9e034a0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/SpecifySingleAgentTherapy.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3590022" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "specify_single_agent_therapy") +public class SpecifySingleAgentTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3590022"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StatinUseCategory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StatinUseCategory.java new file mode 100644 index 0000000..63a5bbc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StatinUseCategory.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4175551" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class StatinUseCategory + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StemCellTransplantation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StemCellTransplantation.java new file mode 100644 index 0000000..6bda5d6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StemCellTransplantation.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2957417" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "stem_cell_transplantation") +public class StemCellTransplantation + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StoppedSmokingYear.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StoppedSmokingYear.java new file mode 100644 index 0000000..ec04562 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StoppedSmokingYear.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2228610" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class StoppedSmokingYear { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2228610"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StrokeIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StrokeIndicator.java new file mode 100644 index 0000000..dfc35d7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/StrokeIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2180040" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class StrokeIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2180040"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedMolecularTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedMolecularTherapy.java new file mode 100644 index 0000000..042ae95 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedMolecularTherapy.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2785850" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class TargetedMolecularTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2785850"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.9"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedNodalRegion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedNodalRegion.java new file mode 100644 index 0000000..5af41df --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedNodalRegion.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3762198" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "targeted_nodal_region") +public class TargetedNodalRegion + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedNodalRegionOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedNodalRegionOther.java new file mode 100644 index 0000000..19a0fdc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TargetedNodalRegionOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="62999" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "targeted_nodal_region_other") +public class TargetedNodalRegionOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "62999"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TissueProspectiveCollectionIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TissueProspectiveCollectionIndicator.java new file mode 100644 index 0000000..923d4e6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TissueProspectiveCollectionIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3088492" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class TissueProspectiveCollectionIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3088492"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TissueRetrospectiveCollectionIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TissueRetrospectiveCollectionIndicator.java new file mode 100644 index 0000000..5529366 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TissueRetrospectiveCollectionIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3088528" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class TissueRetrospectiveCollectionIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3088528"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentOutcome.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentOutcome.java new file mode 100644 index 0000000..2a682e5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentOutcome.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102383" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "treatment_outcome") +public class TreatmentOutcome + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentType.java new file mode 100644 index 0000000..7862423 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentType.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102381" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "treatment_type") +public class TreatmentType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentTypeOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentTypeOther.java new file mode 100644 index 0000000..19fa42e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TreatmentTypeOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5544691" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "treatment_type_other") +public class TreatmentTypeOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5544691"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorMorphology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorMorphology.java new file mode 100644 index 0000000..f60808f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorMorphology.java @@ -0,0 +1,101 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HistologicalType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.TumorMorphologyPercentage; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}histological_type"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/shared/2.7}tumor_morphology_percentage"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "histologicalType", + "tumorMorphologyPercentage" +}) +@XmlRootElement(name = "tumor_morphology") +public class TumorMorphology { + + @XmlElement(name = "histological_type", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true, nillable = true) + protected HistologicalType histologicalType; + @XmlElement(name = "tumor_morphology_percentage", namespace = "http://tcga.nci/bcr/xml/shared/2.7", required = true, nillable = true) + protected TumorMorphologyPercentage tumorMorphologyPercentage; + + /** + * Gets the value of the histologicalType property. + * + * @return + * possible object is + * {@link HistologicalType } + * + */ + public HistologicalType getHistologicalType() { + return histologicalType; + } + + /** + * Sets the value of the histologicalType property. + * + * @param value + * allowed object is + * {@link HistologicalType } + * + */ + public void setHistologicalType(HistologicalType value) { + this.histologicalType = value; + } + + /** + * Gets the value of the tumorMorphologyPercentage property. + * + * @return + * possible object is + * {@link TumorMorphologyPercentage } + * + */ + public TumorMorphologyPercentage getTumorMorphologyPercentage() { + return tumorMorphologyPercentage; + } + + /** + * Sets the value of the tumorMorphologyPercentage property. + * + * @param value + * allowed object is + * {@link TumorMorphologyPercentage } + * + */ + public void setTumorMorphologyPercentage(TumorMorphologyPercentage value) { + this.tumorMorphologyPercentage = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorMorphologyList.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorMorphologyList.java new file mode 100644 index 0000000..47872dc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorMorphologyList.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}tumor_morphology" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "tumorMorphology" +}) +@XmlRootElement(name = "tumor_morphology_list") +public class TumorMorphologyList { + + @XmlElement(name = "tumor_morphology") + protected List tumorMorphology; + + /** + * Gets the value of the tumorMorphology 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 tumorMorphology property. + * + *

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

+     *    getTumorMorphology().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link TumorMorphology } + * + * + */ + public List getTumorMorphology() { + if (tumorMorphology == null) { + tumorMorphology = new ArrayList(); + } + return this.tumorMorphology; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorResidualDisease.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorResidualDisease.java new file mode 100644 index 0000000..627c0a3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorResidualDisease.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2785858" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.11" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class TumorResidualDisease + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSite.java new file mode 100644 index 0000000..f272474 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSite.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3427536" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "tumor_tissue_site") +public class TumorTissueSite + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSiteList.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSiteList.java new file mode 100644 index 0000000..f8a6974 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSiteList.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}tumor_tissue_site" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "tumorTissueSite" +}) +@XmlRootElement(name = "tumor_tissue_site_list") +public class TumorTissueSiteList { + + @XmlElement(name = "tumor_tissue_site") + protected List tumorTissueSite; + + /** + * Gets the value of the tumorTissueSite 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 tumorTissueSite property. + * + *

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

+     *    getTumorTissueSite().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link TumorTissueSite } + * + * + */ + public List getTumorTissueSite() { + if (tumorTissueSite == null) { + tumorTissueSite = new ArrayList(); + } + return this.tumorTissueSite; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSiteOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSiteOther.java new file mode 100644 index 0000000..f3bf5cf --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/TumorTissueSiteOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2584114" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class TumorTissueSiteOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2584114"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Unstructured.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Unstructured.java new file mode 100644 index 0000000..66ef26d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Unstructured.java @@ -0,0 +1,76 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}field" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "field" +}) +@XmlRootElement(name = "unstructured") +public class Unstructured { + + protected List field; + + /** + * Gets the value of the field 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 field property. + * + *

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

+     *    getField().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Field } + * + * + */ + public List getField() { + if (field == null) { + field = new ArrayList(); + } + return this.field; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/VenousInvasion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/VenousInvasion.java new file mode 100644 index 0000000..054933f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/VenousInvasion.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="64358" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "venous_invasion") +public class VenousInvasion { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "64358"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ViralHepatitisSerologies.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ViralHepatitisSerologies.java new file mode 100644 index 0000000..53f1286 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ViralHepatitisSerologies.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/2.7}viral_hepatitis_serology" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "viralHepatitisSerology" +}) +@XmlRootElement(name = "viral_hepatitis_serologies") +public class ViralHepatitisSerologies { + + @XmlElement(name = "viral_hepatitis_serology", required = true, nillable = true) + protected List viralHepatitisSerology; + + /** + * Gets the value of the viralHepatitisSerology 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 viralHepatitisSerology property. + * + *

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

+     *    getViralHepatitisSerology().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ViralHepatitisSerology } + * + * + */ + public List getViralHepatitisSerology() { + if (viralHepatitisSerology == null) { + viralHepatitisSerology = new ArrayList(); + } + return this.viralHepatitisSerology; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ViralHepatitisSerology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ViralHepatitisSerology.java new file mode 100644 index 0000000..479cd21 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/ViralHepatitisSerology.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4395982" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ViralHepatitisSerology + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/VitalStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/VitalStatus.java new file mode 100644 index 0000000..0fc1cfa --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/VitalStatus.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "vital_status") +public class VitalStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Weight.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Weight.java new file mode 100644 index 0000000..b5210d1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/Weight.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="651" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="kg" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class Weight + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WeightPriorToDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WeightPriorToDiagnosis.java new file mode 100644 index 0000000..5e871a5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WeightPriorToDiagnosis.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4178191" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="kg" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class WeightPriorToDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4178191"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "kg"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WoodDustExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WoodDustExposure.java new file mode 100644 index 0000000..637bbdf --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WoodDustExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4193912" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class WoodDustExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4193912"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposure.java new file mode 100644 index 0000000..6c6313a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182227" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class WorkplaceSmokeExposure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182227"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposurePerDay.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposurePerDay.java new file mode 100644 index 0000000..d512775 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposurePerDay.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4182264" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="hours" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class WorkplaceSmokeExposurePerDay { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4182264"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "hours"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposureYears.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposureYears.java new file mode 100644 index 0000000..022ab48 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/WorkplaceSmokeExposureYears.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2190208" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class WorkplaceSmokeExposureYears { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2190208"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfAsthmaDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfAsthmaDx.java new file mode 100644 index 0000000..da5129d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfAsthmaDx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798743" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfAsthmaDx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798743"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfBirth.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfBirth.java new file mode 100644 index 0000000..19965c5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfBirth.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896954" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_birth") +public class YearOfBirth { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896954"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfCadHeartAttackDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfCadHeartAttackDx.java new file mode 100644 index 0000000..6309c33 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfCadHeartAttackDx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798743" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfCadHeartAttackDx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798743"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfClinicalDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfClinicalDiagnosis.java new file mode 100644 index 0000000..d887bb0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfClinicalDiagnosis.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102358" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_clinical_diagnosis") +public class YearOfClinicalDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102358"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfCopdDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfCopdDx.java new file mode 100644 index 0000000..12fb729 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfCopdDx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798743" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfCopdDx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798743"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfDeath.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfDeath.java new file mode 100644 index 0000000..ba0dd1c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfDeath.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897030" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_death") +public class YearOfDeath { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897030"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfDiabetesDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfDiabetesDx.java new file mode 100644 index 0000000..23f34ef --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfDiabetesDx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798743" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfDiabetesDx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798743"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstCompleteResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstCompleteResponse.java new file mode 100644 index 0000000..f72e246 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstCompleteResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886979" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfFirstCompleteResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886979"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstPartialResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstPartialResponse.java new file mode 100644 index 0000000..abb7adc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstPartialResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886998" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfFirstPartialResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886998"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstResponse.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstResponse.java new file mode 100644 index 0000000..e75cd56 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFirstResponse.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886973" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfFirstResponse { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886973"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFormCompletion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFormCompletion.java new file mode 100644 index 0000000..59b1fff --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfFormCompletion.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2975720" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfFormCompletion { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2975720"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfHivAidsDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfHivAidsDx.java new file mode 100644 index 0000000..6acdf9a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfHivAidsDx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798743" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfHivAidsDx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798743"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfHypertensionDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfHypertensionDx.java new file mode 100644 index 0000000..c923c2f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfHypertensionDx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798743" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfHypertensionDx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798743"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfInitialPathologicDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfInitialPathologicDiagnosis.java new file mode 100644 index 0000000..9a71e9d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfInitialPathologicDiagnosis.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2896960" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfInitialPathologicDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2896960"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfLastFollowup.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfLastFollowup.java new file mode 100644 index 0000000..8ec2095 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfLastFollowup.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897024" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfLastFollowup { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897024"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfLastKnownAlive.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfLastKnownAlive.java new file mode 100644 index 0000000..f6b0482 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfLastKnownAlive.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2975726" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_last_known_alive") +public class YearOfLastKnownAlive { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2975726"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.1"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfMostRecentDateOfLastContact.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfMostRecentDateOfLastContact.java new file mode 100644 index 0000000..473194e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfMostRecentDateOfLastContact.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5116089" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_most_recent_date_of_last_contact") +public class YearOfMostRecentDateOfLastContact { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5116089"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfOtherMalignancy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfOtherMalignancy.java new file mode 100644 index 0000000..475cd9e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfOtherMalignancy.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3107424" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfOtherMalignancy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3107424"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPatientProgressionFree.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPatientProgressionFree.java new file mode 100644 index 0000000..8c3b680 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPatientProgressionFree.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4886954" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfPatientProgressionFree { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4886954"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPerformanceStatusAssessment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPerformanceStatusAssessment.java new file mode 100644 index 0000000..ef3aacc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPerformanceStatusAssessment.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3151126" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfPerformanceStatusAssessment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3151126"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPneumoniaDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPneumoniaDx.java new file mode 100644 index 0000000..f43f2b9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfPneumoniaDx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798743" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfPneumoniaDx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798743"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfStrokeDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfStrokeDx.java new file mode 100644 index 0000000..b999f07 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfStrokeDx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798743" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfStrokeDx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798743"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTobaccoSmokingOnset.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTobaccoSmokingOnset.java new file mode 100644 index 0000000..7b88017 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTobaccoSmokingOnset.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2228604" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfTobaccoSmokingOnset { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2228604"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTreatmentEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTreatmentEnd.java new file mode 100644 index 0000000..0d30cfb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTreatmentEnd.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102389" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_treatment_end") +public class YearOfTreatmentEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102389"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTreatmentStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTreatmentStart.java new file mode 100644 index 0000000..9965216 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTreatmentStart.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102386" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_treatment_start") +public class YearOfTreatmentStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "5102386"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTumorProgression.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTumorProgression.java new file mode 100644 index 0000000..af1bf70 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTumorProgression.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897018" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfTumorProgression { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897018"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTumorRecurrence.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTumorRecurrence.java new file mode 100644 index 0000000..44751af --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/YearOfTumorRecurrence.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897008" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.12" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfTumorRecurrence { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897008"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.12"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/package-info.java new file mode 100644 index 0000000..6f41e19 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/shared/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/ErythrocyteSedimentationRateResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/ErythrocyteSedimentationRateResult.java new file mode 100644 index 0000000..1e83403 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/ErythrocyteSedimentationRateResult.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104952" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ErythrocyteSedimentationRateResult + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/HemoglobinResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/HemoglobinResult.java new file mode 100644 index 0000000..0163e8b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/HemoglobinResult.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3113466" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class HemoglobinResult + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/LactateDehydrogenaseResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/LactateDehydrogenaseResult.java new file mode 100644 index 0000000..dc69a5a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/LactateDehydrogenaseResult.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3113468" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class LactateDehydrogenaseResult + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/NumberOfLymphnodesPositive.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/NumberOfLymphnodesPositive.java new file mode 100644 index 0000000..a84c17d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/NumberOfLymphnodesPositive.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="89" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class NumberOfLymphnodesPositive + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/ObjectFactory.java new file mode 100644 index 0000000..08cddb3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/ObjectFactory.java @@ -0,0 +1,168 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2 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 _HemoglobinResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", "hemoglobin_result"); + private final static QName _PlateletQualitativeResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", "platelet_qualitative_result"); + private final static QName _ErythrocyteSedimentationRateResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", "erythrocyte_sedimentation_rate_result"); + private final static QName _NumberOfLymphnodesPositive_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", "number_of_lymphnodes_positive"); + private final static QName _WhiteCellCountResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", "white_cell_count_result"); + private final static QName _SerumCalciumResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", "serum_calcium_result"); + private final static QName _LactateDehydrogenaseResult_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", "lactate_dehydrogenase_result"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link SerumCalciumResult } + * + */ + public SerumCalciumResult createSerumCalciumResult() { + return new SerumCalciumResult(); + } + + /** + * Create an instance of {@link HemoglobinResult } + * + */ + public HemoglobinResult createHemoglobinResult() { + return new HemoglobinResult(); + } + + /** + * Create an instance of {@link PlateletQualitativeResult } + * + */ + public PlateletQualitativeResult createPlateletQualitativeResult() { + return new PlateletQualitativeResult(); + } + + /** + * Create an instance of {@link WhiteCellCountResult } + * + */ + public WhiteCellCountResult createWhiteCellCountResult() { + return new WhiteCellCountResult(); + } + + /** + * Create an instance of {@link ErythrocyteSedimentationRateResult } + * + */ + public ErythrocyteSedimentationRateResult createErythrocyteSedimentationRateResult() { + return new ErythrocyteSedimentationRateResult(); + } + + /** + * Create an instance of {@link NumberOfLymphnodesPositive } + * + */ + public NumberOfLymphnodesPositive createNumberOfLymphnodesPositive() { + return new NumberOfLymphnodesPositive(); + } + + /** + * Create an instance of {@link LactateDehydrogenaseResult } + * + */ + public LactateDehydrogenaseResult createLactateDehydrogenaseResult() { + return new LactateDehydrogenaseResult(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HemoglobinResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", name = "hemoglobin_result") + public JAXBElement createHemoglobinResult(HemoglobinResult value) { + return new JAXBElement(_HemoglobinResult_QNAME, HemoglobinResult.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PlateletQualitativeResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", name = "platelet_qualitative_result") + public JAXBElement createPlateletQualitativeResult(PlateletQualitativeResult value) { + return new JAXBElement(_PlateletQualitativeResult_QNAME, PlateletQualitativeResult.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ErythrocyteSedimentationRateResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", name = "erythrocyte_sedimentation_rate_result") + public JAXBElement createErythrocyteSedimentationRateResult(ErythrocyteSedimentationRateResult value) { + return new JAXBElement(_ErythrocyteSedimentationRateResult_QNAME, ErythrocyteSedimentationRateResult.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NumberOfLymphnodesPositive }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", name = "number_of_lymphnodes_positive") + public JAXBElement createNumberOfLymphnodesPositive(NumberOfLymphnodesPositive value) { + return new JAXBElement(_NumberOfLymphnodesPositive_QNAME, NumberOfLymphnodesPositive.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link WhiteCellCountResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", name = "white_cell_count_result") + public JAXBElement createWhiteCellCountResult(WhiteCellCountResult value) { + return new JAXBElement(_WhiteCellCountResult_QNAME, WhiteCellCountResult.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SerumCalciumResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", name = "serum_calcium_result") + public JAXBElement createSerumCalciumResult(SerumCalciumResult value) { + return new JAXBElement(_SerumCalciumResult_QNAME, SerumCalciumResult.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LactateDehydrogenaseResult }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/kirc_kirp/2.7", name = "lactate_dehydrogenase_result") + public JAXBElement createLactateDehydrogenaseResult(LactateDehydrogenaseResult value) { + return new JAXBElement(_LactateDehydrogenaseResult_QNAME, LactateDehydrogenaseResult.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/PlateletQualitativeResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/PlateletQualitativeResult.java new file mode 100644 index 0000000..318a114 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/PlateletQualitativeResult.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104944" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PlateletQualitativeResult + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/SerumCalciumResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/SerumCalciumResult.java new file mode 100644 index 0000000..63544f6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/SerumCalciumResult.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3113470" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class SerumCalciumResult + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/WhiteCellCountResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/WhiteCellCountResult.java new file mode 100644 index 0000000..b4eed49 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/kirc_kirp/_2/WhiteCellCountResult.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104948" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.1" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class WhiteCellCountResult + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalPharmaceuticalTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalPharmaceuticalTherapy.java new file mode 100644 index 0000000..8952446 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalPharmaceuticalTherapy.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3427616" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AdditionalPharmaceuticalTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3427616"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalRadiationTherapy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalRadiationTherapy.java new file mode 100644 index 0000000..4026848 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalRadiationTherapy.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3427615" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AdditionalRadiationTherapy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3427615"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalSurgeryLocoregionalProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalSurgeryLocoregionalProcedure.java new file mode 100644 index 0000000..56bdb6e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalSurgeryLocoregionalProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008755" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AdditionalSurgeryLocoregionalProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3008755"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalSurgeryMetastaticProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalSurgeryMetastaticProcedure.java new file mode 100644 index 0000000..1e16930 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/AdditionalSurgeryMetastaticProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008757" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class AdditionalSurgeryMetastaticProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3008757"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfAdditionalSurgeryLocoregionalProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfAdditionalSurgeryLocoregionalProcedure.java new file mode 100644 index 0000000..754ea40 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfAdditionalSurgeryLocoregionalProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897034" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfAdditionalSurgeryLocoregionalProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897034"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfAdditionalSurgeryMetastaticProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfAdditionalSurgeryMetastaticProcedure.java new file mode 100644 index 0000000..4904480 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfAdditionalSurgeryMetastaticProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897040" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfAdditionalSurgeryMetastaticProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897040"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventAdditionalSurgeryProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventAdditionalSurgeryProcedure.java new file mode 100644 index 0000000..d141f99 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventAdditionalSurgeryProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3427613" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfNewTumorEventAdditionalSurgeryProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3427613"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventAfterInitialTreatment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventAfterInitialTreatment.java new file mode 100644 index 0000000..82f88cf --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventAfterInitialTreatment.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104042" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfNewTumorEventAfterInitialTreatment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3104042"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventTransplant.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventTransplant.java new file mode 100644 index 0000000..b7f57e4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DayOfNewTumorEventTransplant.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3168021" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfNewTumorEventTransplant { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3168021"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToAdditionalSurgeryLocoregionalProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToAdditionalSurgeryLocoregionalProcedure.java new file mode 100644 index 0000000..f15d8d2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToAdditionalSurgeryLocoregionalProcedure.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3408572" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_additional_surgery_locoregional_procedure") +public class DaysToAdditionalSurgeryLocoregionalProcedure + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToAdditionalSurgeryMetastaticProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToAdditionalSurgeryMetastaticProcedure.java new file mode 100644 index 0000000..04097f0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToAdditionalSurgeryMetastaticProcedure.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3408682" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_additional_surgery_metastatic_procedure") +public class DaysToAdditionalSurgeryMetastaticProcedure + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventAdditionalSurgeryProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventAdditionalSurgeryProcedure.java new file mode 100644 index 0000000..0d16ea2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventAdditionalSurgeryProcedure.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008335" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_new_tumor_event_additional_surgery_procedure") +public class DaysToNewTumorEventAdditionalSurgeryProcedure + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventAfterInitialTreatment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventAfterInitialTreatment.java new file mode 100644 index 0000000..fa55b62 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventAfterInitialTreatment.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3392464" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_new_tumor_event_after_initial_treatment") +public class DaysToNewTumorEventAfterInitialTreatment + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventTransplant.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventTransplant.java new file mode 100644 index 0000000..6119511 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/DaysToNewTumorEventTransplant.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4461934" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class DaysToNewTumorEventTransplant + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/HistologicDiseaseProgressionPresentIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/HistologicDiseaseProgressionPresentIndicator.java new file mode 100644 index 0000000..fd41ab6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/HistologicDiseaseProgressionPresentIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3181376" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HistologicDiseaseProgressionPresentIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3181376"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.4"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfAdditionalSurgeryLocoregionalProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfAdditionalSurgeryLocoregionalProcedure.java new file mode 100644 index 0000000..732450f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfAdditionalSurgeryLocoregionalProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897032" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfAdditionalSurgeryLocoregionalProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897032"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfAdditionalSurgeryMetastaticProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfAdditionalSurgeryMetastaticProcedure.java new file mode 100644 index 0000000..6dd34fe --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfAdditionalSurgeryMetastaticProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897038" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfAdditionalSurgeryMetastaticProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897038"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventAdditionalSurgeryProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventAdditionalSurgeryProcedure.java new file mode 100644 index 0000000..9b6f770 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventAdditionalSurgeryProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3427612" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfNewTumorEventAdditionalSurgeryProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3427612"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventAfterInitialTreatment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventAfterInitialTreatment.java new file mode 100644 index 0000000..21ffa37 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventAfterInitialTreatment.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104044" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfNewTumorEventAfterInitialTreatment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3104044"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventTransplant.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventTransplant.java new file mode 100644 index 0000000..fad31f8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/MonthOfNewTumorEventTransplant.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3168022" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfNewTumorEventTransplant { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3168022"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewDiseaseMultifocal.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewDiseaseMultifocal.java new file mode 100644 index 0000000..90b28d8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewDiseaseMultifocal.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3524937" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewDiseaseMultifocal { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3524937"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewEventTreatmentType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewEventTreatmentType.java new file mode 100644 index 0000000..e691835 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewEventTreatmentType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102391" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class NewEventTreatmentType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmConfirmedDiagnosisMethodName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmConfirmedDiagnosisMethodName.java new file mode 100644 index 0000000..c36bee6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmConfirmedDiagnosisMethodName.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3186701" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class NewNeoplasmConfirmedDiagnosisMethodName + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmEventOccurrenceAnatomicSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmEventOccurrenceAnatomicSite.java new file mode 100644 index 0000000..f9d295b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmEventOccurrenceAnatomicSite.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3108271" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class NewNeoplasmEventOccurrenceAnatomicSite + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmEventType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmEventType.java new file mode 100644 index 0000000..4ed7172 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmEventType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3119721" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class NewNeoplasmEventType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmOccurrenceAnatomicSiteText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmOccurrenceAnatomicSiteText.java new file mode 100644 index 0000000..3ed4b91 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewNeoplasmOccurrenceAnatomicSiteText.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3128033" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewNeoplasmOccurrenceAnatomicSiteText { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3128033"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorDiscontiguousLesionNum.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorDiscontiguousLesionNum.java new file mode 100644 index 0000000..d2073f5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorDiscontiguousLesionNum.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3526717" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorDiscontiguousLesionNum { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3526717"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAblationEmboTx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAblationEmboTx.java new file mode 100644 index 0000000..626e602 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAblationEmboTx.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3173961" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorEventAblationEmboTx { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3173961"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAdditionalSurgeryProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAdditionalSurgeryProcedure.java new file mode 100644 index 0000000..3358f76 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAdditionalSurgeryProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3427611" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorEventAdditionalSurgeryProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3427611"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAfterInitialTreatment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAfterInitialTreatment.java new file mode 100644 index 0000000..2e653ca --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventAfterInitialTreatment.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3121376" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorEventAfterInitialTreatment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3121376"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventLiverTransplant.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventLiverTransplant.java new file mode 100644 index 0000000..02f8a28 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorEventLiverTransplant.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3168060" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorEventLiverTransplant { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3168060"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathBurden.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathBurden.java new file mode 100644 index 0000000..b604732 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathBurden.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3526721" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorPostResectionPathBurden { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3526721"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathDepth.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathDepth.java new file mode 100644 index 0000000..6867505 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathDepth.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3528004" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorPostResectionPathDepth { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3528004"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathLength.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathLength.java new file mode 100644 index 0000000..4efd7ad --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathLength.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3528003" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorPostResectionPathLength { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3528003"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathWidth.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathWidth.java new file mode 100644 index 0000000..ab427a8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPostResectionPathWidth.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3528020" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorPostResectionPathWidth { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3528020"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadBurden.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadBurden.java new file mode 100644 index 0000000..a53bb0b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadBurden.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3526720" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorPriorResectionRadBurden { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3526720"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadDepth.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadDepth.java new file mode 100644 index 0000000..0ce873f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadDepth.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3527996" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorPriorResectionRadDepth { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3527996"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadLength.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadLength.java new file mode 100644 index 0000000..05cf91c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadLength.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3527990" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorPriorResectionRadLength { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3527990"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadWidth.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadWidth.java new file mode 100644 index 0000000..612ef4f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/NewTumorPriorResectionRadWidth.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3527997" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class NewTumorPriorResectionRadWidth { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3527997"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ObjectFactory.java new file mode 100644 index 0000000..5990690 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ObjectFactory.java @@ -0,0 +1,838 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2 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 _DayOfNewTumorEventAfterInitialTreatment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "day_of_new_tumor_event_after_initial_treatment"); + private final static QName _DayOfAdditionalSurgeryMetastaticProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "day_of_additional_surgery_metastatic_procedure"); + private final static QName _NewTumorEventAdditionalSurgeryProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_event_additional_surgery_procedure"); + private final static QName _NewNeoplasmConfirmedDiagnosisMethodName_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_neoplasm_confirmed_diagnosis_method_name"); + private final static QName _NewTumorPostResectionPathLength_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_post_resection_path_length"); + private final static QName _NewNeoplasmEventType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_neoplasm_event_type"); + private final static QName _NewTumorEventLiverTransplant_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_event_liver_transplant"); + private final static QName _DaysToNewTumorEventTransplant_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "days_to_new_tumor_event_transplant"); + private final static QName _MonthOfAdditionalSurgeryLocoregionalProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "month_of_additional_surgery_locoregional_procedure"); + private final static QName _NewTumorPostResectionPathBurden_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_post_resection_path_burden"); + private final static QName _NewTumorPriorResectionRadLength_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_prior_resection_rad_length"); + private final static QName _HistologicDiseaseProgressionPresentIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "histologic_disease_progression_present_indicator"); + private final static QName _MonthOfNewTumorEventAfterInitialTreatment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "month_of_new_tumor_event_after_initial_treatment"); + private final static QName _MonthOfNewTumorEventTransplant_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "month_of_new_tumor_event_transplant"); + private final static QName _AdditionalSurgeryLocoregionalProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "additional_surgery_locoregional_procedure"); + private final static QName _NewEventTreatmentType_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_event_treatment_type"); + private final static QName _NewTumorEventAblationEmboTx_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_event_ablation_embo_tx"); + private final static QName _DayOfAdditionalSurgeryLocoregionalProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "day_of_additional_surgery_locoregional_procedure"); + private final static QName _DayOfNewTumorEventAdditionalSurgeryProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "day_of_new_tumor_event_additional_surgery_procedure"); + private final static QName _DayOfNewTumorEventTransplant_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "day_of_new_tumor_event_transplant"); + private final static QName _YearOfAdditionalSurgeryLocoregionalProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "year_of_additional_surgery_locoregional_procedure"); + private final static QName _NewNeoplasmEventOccurrenceAnatomicSite_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_neoplasm_event_occurrence_anatomic_site"); + private final static QName _YearOfNewTumorEventTransplant_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "year_of_new_tumor_event_transplant"); + private final static QName _TreatmentOutcome_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "treatment_outcome"); + private final static QName _NewTumorEventAfterInitialTreatment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_event_after_initial_treatment"); + private final static QName _AdditionalRadiationTherapy_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "additional_radiation_therapy"); + private final static QName _AdditionalSurgeryMetastaticProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "additional_surgery_metastatic_procedure"); + private final static QName _NewNeoplasmOccurrenceAnatomicSiteText_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_neoplasm_occurrence_anatomic_site_text"); + private final static QName _YearOfNewTumorEventAfterInitialTreatment_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "year_of_new_tumor_event_after_initial_treatment"); + private final static QName _YearOfAdditionalSurgeryMetastaticProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "year_of_additional_surgery_metastatic_procedure"); + private final static QName _AdditionalPharmaceuticalTherapy_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "additional_pharmaceutical_therapy"); + private final static QName _NewDiseaseMultifocal_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_disease_multifocal"); + private final static QName _ResidualDiseasePostNewTumorEventMarginStatus_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "residual_disease_post_new_tumor_event_margin_status"); + private final static QName _MonthOfAdditionalSurgeryMetastaticProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "month_of_additional_surgery_metastatic_procedure"); + private final static QName _NewTumorPriorResectionRadWidth_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_prior_resection_rad_width"); + private final static QName _YearOfNewTumorEventAdditionalSurgeryProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "year_of_new_tumor_event_additional_surgery_procedure"); + private final static QName _NewTumorPriorResectionRadDepth_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_prior_resection_rad_depth"); + private final static QName _NewTumorDiscontiguousLesionNum_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_discontiguous_lesion_num"); + private final static QName _MonthOfNewTumorEventAdditionalSurgeryProcedure_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "month_of_new_tumor_event_additional_surgery_procedure"); + private final static QName _NewTumorPostResectionPathWidth_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_post_resection_path_width"); + private final static QName _NewTumorPriorResectionRadBurden_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_prior_resection_rad_burden"); + private final static QName _NewTumorPostResectionPathDepth_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", "new_tumor_post_resection_path_depth"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link NewTumorEventAfterInitialTreatment } + * + */ + public NewTumorEventAfterInitialTreatment createNewTumorEventAfterInitialTreatment() { + return new NewTumorEventAfterInitialTreatment(); + } + + /** + * Create an instance of {@link DayOfNewTumorEventAfterInitialTreatment } + * + */ + public DayOfNewTumorEventAfterInitialTreatment createDayOfNewTumorEventAfterInitialTreatment() { + return new DayOfNewTumorEventAfterInitialTreatment(); + } + + /** + * Create an instance of {@link MonthOfNewTumorEventAfterInitialTreatment } + * + */ + public MonthOfNewTumorEventAfterInitialTreatment createMonthOfNewTumorEventAfterInitialTreatment() { + return new MonthOfNewTumorEventAfterInitialTreatment(); + } + + /** + * Create an instance of {@link YearOfNewTumorEventAfterInitialTreatment } + * + */ + public YearOfNewTumorEventAfterInitialTreatment createYearOfNewTumorEventAfterInitialTreatment() { + return new YearOfNewTumorEventAfterInitialTreatment(); + } + + /** + * Create an instance of {@link DaysToNewTumorEventAfterInitialTreatment } + * + */ + public DaysToNewTumorEventAfterInitialTreatment createDaysToNewTumorEventAfterInitialTreatment() { + return new DaysToNewTumorEventAfterInitialTreatment(); + } + + /** + * Create an instance of {@link AdditionalSurgeryLocoregionalProcedure } + * + */ + public AdditionalSurgeryLocoregionalProcedure createAdditionalSurgeryLocoregionalProcedure() { + return new AdditionalSurgeryLocoregionalProcedure(); + } + + /** + * Create an instance of {@link DayOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public DayOfAdditionalSurgeryLocoregionalProcedure createDayOfAdditionalSurgeryLocoregionalProcedure() { + return new DayOfAdditionalSurgeryLocoregionalProcedure(); + } + + /** + * Create an instance of {@link MonthOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public MonthOfAdditionalSurgeryLocoregionalProcedure createMonthOfAdditionalSurgeryLocoregionalProcedure() { + return new MonthOfAdditionalSurgeryLocoregionalProcedure(); + } + + /** + * Create an instance of {@link YearOfAdditionalSurgeryLocoregionalProcedure } + * + */ + public YearOfAdditionalSurgeryLocoregionalProcedure createYearOfAdditionalSurgeryLocoregionalProcedure() { + return new YearOfAdditionalSurgeryLocoregionalProcedure(); + } + + /** + * Create an instance of {@link DaysToAdditionalSurgeryLocoregionalProcedure } + * + */ + public DaysToAdditionalSurgeryLocoregionalProcedure createDaysToAdditionalSurgeryLocoregionalProcedure() { + return new DaysToAdditionalSurgeryLocoregionalProcedure(); + } + + /** + * Create an instance of {@link AdditionalSurgeryMetastaticProcedure } + * + */ + public AdditionalSurgeryMetastaticProcedure createAdditionalSurgeryMetastaticProcedure() { + return new AdditionalSurgeryMetastaticProcedure(); + } + + /** + * Create an instance of {@link DayOfAdditionalSurgeryMetastaticProcedure } + * + */ + public DayOfAdditionalSurgeryMetastaticProcedure createDayOfAdditionalSurgeryMetastaticProcedure() { + return new DayOfAdditionalSurgeryMetastaticProcedure(); + } + + /** + * Create an instance of {@link MonthOfAdditionalSurgeryMetastaticProcedure } + * + */ + public MonthOfAdditionalSurgeryMetastaticProcedure createMonthOfAdditionalSurgeryMetastaticProcedure() { + return new MonthOfAdditionalSurgeryMetastaticProcedure(); + } + + /** + * Create an instance of {@link YearOfAdditionalSurgeryMetastaticProcedure } + * + */ + public YearOfAdditionalSurgeryMetastaticProcedure createYearOfAdditionalSurgeryMetastaticProcedure() { + return new YearOfAdditionalSurgeryMetastaticProcedure(); + } + + /** + * Create an instance of {@link DaysToAdditionalSurgeryMetastaticProcedure } + * + */ + public DaysToAdditionalSurgeryMetastaticProcedure createDaysToAdditionalSurgeryMetastaticProcedure() { + return new DaysToAdditionalSurgeryMetastaticProcedure(); + } + + /** + * Create an instance of {@link AdditionalRadiationTherapy } + * + */ + public AdditionalRadiationTherapy createAdditionalRadiationTherapy() { + return new AdditionalRadiationTherapy(); + } + + /** + * Create an instance of {@link AdditionalPharmaceuticalTherapy } + * + */ + public AdditionalPharmaceuticalTherapy createAdditionalPharmaceuticalTherapy() { + return new AdditionalPharmaceuticalTherapy(); + } + + /** + * Create an instance of {@link NewTumorEventAblationEmboTx } + * + */ + public NewTumorEventAblationEmboTx createNewTumorEventAblationEmboTx() { + return new NewTumorEventAblationEmboTx(); + } + + /** + * Create an instance of {@link DaysToNewTumorEventAdditionalSurgeryProcedure } + * + */ + public DaysToNewTumorEventAdditionalSurgeryProcedure createDaysToNewTumorEventAdditionalSurgeryProcedure() { + return new DaysToNewTumorEventAdditionalSurgeryProcedure(); + } + + /** + * Create an instance of {@link HistologicDiseaseProgressionPresentIndicator } + * + */ + public HistologicDiseaseProgressionPresentIndicator createHistologicDiseaseProgressionPresentIndicator() { + return new HistologicDiseaseProgressionPresentIndicator(); + } + + /** + * Create an instance of {@link YearOfNewTumorEventTransplant } + * + */ + public YearOfNewTumorEventTransplant createYearOfNewTumorEventTransplant() { + return new YearOfNewTumorEventTransplant(); + } + + /** + * Create an instance of {@link NewTumorEventAdditionalSurgeryProcedure } + * + */ + public NewTumorEventAdditionalSurgeryProcedure createNewTumorEventAdditionalSurgeryProcedure() { + return new NewTumorEventAdditionalSurgeryProcedure(); + } + + /** + * Create an instance of {@link MonthOfNewTumorEventTransplant } + * + */ + public MonthOfNewTumorEventTransplant createMonthOfNewTumorEventTransplant() { + return new MonthOfNewTumorEventTransplant(); + } + + /** + * Create an instance of {@link NewDiseaseMultifocal } + * + */ + public NewDiseaseMultifocal createNewDiseaseMultifocal() { + return new NewDiseaseMultifocal(); + } + + /** + * Create an instance of {@link NewNeoplasmEventOccurrenceAnatomicSite } + * + */ + public NewNeoplasmEventOccurrenceAnatomicSite createNewNeoplasmEventOccurrenceAnatomicSite() { + return new NewNeoplasmEventOccurrenceAnatomicSite(); + } + + /** + * Create an instance of {@link ResidualDiseasePostNewTumorEventMarginStatus } + * + */ + public ResidualDiseasePostNewTumorEventMarginStatus createResidualDiseasePostNewTumorEventMarginStatus() { + return new ResidualDiseasePostNewTumorEventMarginStatus(); + } + + /** + * Create an instance of {@link MonthOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public MonthOfNewTumorEventAdditionalSurgeryProcedure createMonthOfNewTumorEventAdditionalSurgeryProcedure() { + return new MonthOfNewTumorEventAdditionalSurgeryProcedure(); + } + + /** + * Create an instance of {@link NewTumorPostResectionPathBurden } + * + */ + public NewTumorPostResectionPathBurden createNewTumorPostResectionPathBurden() { + return new NewTumorPostResectionPathBurden(); + } + + /** + * Create an instance of {@link NewTumorPriorResectionRadLength } + * + */ + public NewTumorPriorResectionRadLength createNewTumorPriorResectionRadLength() { + return new NewTumorPriorResectionRadLength(); + } + + /** + * Create an instance of {@link NewEventTreatmentType } + * + */ + public NewEventTreatmentType createNewEventTreatmentType() { + return new NewEventTreatmentType(); + } + + /** + * Create an instance of {@link DayOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public DayOfNewTumorEventAdditionalSurgeryProcedure createDayOfNewTumorEventAdditionalSurgeryProcedure() { + return new DayOfNewTumorEventAdditionalSurgeryProcedure(); + } + + /** + * Create an instance of {@link NewNeoplasmEventType } + * + */ + public NewNeoplasmEventType createNewNeoplasmEventType() { + return new NewNeoplasmEventType(); + } + + /** + * Create an instance of {@link NewTumorEventLiverTransplant } + * + */ + public NewTumorEventLiverTransplant createNewTumorEventLiverTransplant() { + return new NewTumorEventLiverTransplant(); + } + + /** + * Create an instance of {@link NewTumorPriorResectionRadDepth } + * + */ + public NewTumorPriorResectionRadDepth createNewTumorPriorResectionRadDepth() { + return new NewTumorPriorResectionRadDepth(); + } + + /** + * Create an instance of {@link DayOfNewTumorEventTransplant } + * + */ + public DayOfNewTumorEventTransplant createDayOfNewTumorEventTransplant() { + return new DayOfNewTumorEventTransplant(); + } + + /** + * Create an instance of {@link NewNeoplasmOccurrenceAnatomicSiteText } + * + */ + public NewNeoplasmOccurrenceAnatomicSiteText createNewNeoplasmOccurrenceAnatomicSiteText() { + return new NewNeoplasmOccurrenceAnatomicSiteText(); + } + + /** + * Create an instance of {@link ProgressionDeterminedBy } + * + */ + public ProgressionDeterminedBy createProgressionDeterminedBy() { + return new ProgressionDeterminedBy(); + } + + /** + * Create an instance of {@link NewTumorDiscontiguousLesionNum } + * + */ + public NewTumorDiscontiguousLesionNum createNewTumorDiscontiguousLesionNum() { + return new NewTumorDiscontiguousLesionNum(); + } + + /** + * Create an instance of {@link DaysToNewTumorEventTransplant } + * + */ + public DaysToNewTumorEventTransplant createDaysToNewTumorEventTransplant() { + return new DaysToNewTumorEventTransplant(); + } + + /** + * Create an instance of {@link NewTumorPostResectionPathDepth } + * + */ + public NewTumorPostResectionPathDepth createNewTumorPostResectionPathDepth() { + return new NewTumorPostResectionPathDepth(); + } + + /** + * Create an instance of {@link NewTumorPostResectionPathWidth } + * + */ + public NewTumorPostResectionPathWidth createNewTumorPostResectionPathWidth() { + return new NewTumorPostResectionPathWidth(); + } + + /** + * Create an instance of {@link NewTumorPriorResectionRadWidth } + * + */ + public NewTumorPriorResectionRadWidth createNewTumorPriorResectionRadWidth() { + return new NewTumorPriorResectionRadWidth(); + } + + /** + * Create an instance of {@link NewNeoplasmConfirmedDiagnosisMethodName } + * + */ + public NewNeoplasmConfirmedDiagnosisMethodName createNewNeoplasmConfirmedDiagnosisMethodName() { + return new NewNeoplasmConfirmedDiagnosisMethodName(); + } + + /** + * Create an instance of {@link NewTumorPriorResectionRadBurden } + * + */ + public NewTumorPriorResectionRadBurden createNewTumorPriorResectionRadBurden() { + return new NewTumorPriorResectionRadBurden(); + } + + /** + * Create an instance of {@link YearOfNewTumorEventAdditionalSurgeryProcedure } + * + */ + public YearOfNewTumorEventAdditionalSurgeryProcedure createYearOfNewTumorEventAdditionalSurgeryProcedure() { + return new YearOfNewTumorEventAdditionalSurgeryProcedure(); + } + + /** + * Create an instance of {@link TreatmentOutcome } + * + */ + public TreatmentOutcome createTreatmentOutcome() { + return new TreatmentOutcome(); + } + + /** + * Create an instance of {@link NewTumorPostResectionPathLength } + * + */ + public NewTumorPostResectionPathLength createNewTumorPostResectionPathLength() { + return new NewTumorPostResectionPathLength(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfNewTumorEventAfterInitialTreatment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "day_of_new_tumor_event_after_initial_treatment") + public JAXBElement createDayOfNewTumorEventAfterInitialTreatment(DayOfNewTumorEventAfterInitialTreatment value) { + return new JAXBElement(_DayOfNewTumorEventAfterInitialTreatment_QNAME, DayOfNewTumorEventAfterInitialTreatment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfAdditionalSurgeryMetastaticProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "day_of_additional_surgery_metastatic_procedure") + public JAXBElement createDayOfAdditionalSurgeryMetastaticProcedure(DayOfAdditionalSurgeryMetastaticProcedure value) { + return new JAXBElement(_DayOfAdditionalSurgeryMetastaticProcedure_QNAME, DayOfAdditionalSurgeryMetastaticProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorEventAdditionalSurgeryProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_event_additional_surgery_procedure") + public JAXBElement createNewTumorEventAdditionalSurgeryProcedure(NewTumorEventAdditionalSurgeryProcedure value) { + return new JAXBElement(_NewTumorEventAdditionalSurgeryProcedure_QNAME, NewTumorEventAdditionalSurgeryProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewNeoplasmConfirmedDiagnosisMethodName }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_neoplasm_confirmed_diagnosis_method_name") + public JAXBElement createNewNeoplasmConfirmedDiagnosisMethodName(NewNeoplasmConfirmedDiagnosisMethodName value) { + return new JAXBElement(_NewNeoplasmConfirmedDiagnosisMethodName_QNAME, NewNeoplasmConfirmedDiagnosisMethodName.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorPostResectionPathLength }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_post_resection_path_length") + public JAXBElement createNewTumorPostResectionPathLength(NewTumorPostResectionPathLength value) { + return new JAXBElement(_NewTumorPostResectionPathLength_QNAME, NewTumorPostResectionPathLength.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewNeoplasmEventType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_neoplasm_event_type") + public JAXBElement createNewNeoplasmEventType(NewNeoplasmEventType value) { + return new JAXBElement(_NewNeoplasmEventType_QNAME, NewNeoplasmEventType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorEventLiverTransplant }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_event_liver_transplant") + public JAXBElement createNewTumorEventLiverTransplant(NewTumorEventLiverTransplant value) { + return new JAXBElement(_NewTumorEventLiverTransplant_QNAME, NewTumorEventLiverTransplant.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DaysToNewTumorEventTransplant }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "days_to_new_tumor_event_transplant") + public JAXBElement createDaysToNewTumorEventTransplant(DaysToNewTumorEventTransplant value) { + return new JAXBElement(_DaysToNewTumorEventTransplant_QNAME, DaysToNewTumorEventTransplant.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfAdditionalSurgeryLocoregionalProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "month_of_additional_surgery_locoregional_procedure") + public JAXBElement createMonthOfAdditionalSurgeryLocoregionalProcedure(MonthOfAdditionalSurgeryLocoregionalProcedure value) { + return new JAXBElement(_MonthOfAdditionalSurgeryLocoregionalProcedure_QNAME, MonthOfAdditionalSurgeryLocoregionalProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorPostResectionPathBurden }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_post_resection_path_burden") + public JAXBElement createNewTumorPostResectionPathBurden(NewTumorPostResectionPathBurden value) { + return new JAXBElement(_NewTumorPostResectionPathBurden_QNAME, NewTumorPostResectionPathBurden.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorPriorResectionRadLength }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_prior_resection_rad_length") + public JAXBElement createNewTumorPriorResectionRadLength(NewTumorPriorResectionRadLength value) { + return new JAXBElement(_NewTumorPriorResectionRadLength_QNAME, NewTumorPriorResectionRadLength.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistologicDiseaseProgressionPresentIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "histologic_disease_progression_present_indicator") + public JAXBElement createHistologicDiseaseProgressionPresentIndicator(HistologicDiseaseProgressionPresentIndicator value) { + return new JAXBElement(_HistologicDiseaseProgressionPresentIndicator_QNAME, HistologicDiseaseProgressionPresentIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfNewTumorEventAfterInitialTreatment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "month_of_new_tumor_event_after_initial_treatment") + public JAXBElement createMonthOfNewTumorEventAfterInitialTreatment(MonthOfNewTumorEventAfterInitialTreatment value) { + return new JAXBElement(_MonthOfNewTumorEventAfterInitialTreatment_QNAME, MonthOfNewTumorEventAfterInitialTreatment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfNewTumorEventTransplant }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "month_of_new_tumor_event_transplant") + public JAXBElement createMonthOfNewTumorEventTransplant(MonthOfNewTumorEventTransplant value) { + return new JAXBElement(_MonthOfNewTumorEventTransplant_QNAME, MonthOfNewTumorEventTransplant.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdditionalSurgeryLocoregionalProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "additional_surgery_locoregional_procedure") + public JAXBElement createAdditionalSurgeryLocoregionalProcedure(AdditionalSurgeryLocoregionalProcedure value) { + return new JAXBElement(_AdditionalSurgeryLocoregionalProcedure_QNAME, AdditionalSurgeryLocoregionalProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewEventTreatmentType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_event_treatment_type") + public JAXBElement createNewEventTreatmentType(NewEventTreatmentType value) { + return new JAXBElement(_NewEventTreatmentType_QNAME, NewEventTreatmentType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorEventAblationEmboTx }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_event_ablation_embo_tx") + public JAXBElement createNewTumorEventAblationEmboTx(NewTumorEventAblationEmboTx value) { + return new JAXBElement(_NewTumorEventAblationEmboTx_QNAME, NewTumorEventAblationEmboTx.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfAdditionalSurgeryLocoregionalProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "day_of_additional_surgery_locoregional_procedure") + public JAXBElement createDayOfAdditionalSurgeryLocoregionalProcedure(DayOfAdditionalSurgeryLocoregionalProcedure value) { + return new JAXBElement(_DayOfAdditionalSurgeryLocoregionalProcedure_QNAME, DayOfAdditionalSurgeryLocoregionalProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfNewTumorEventAdditionalSurgeryProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "day_of_new_tumor_event_additional_surgery_procedure") + public JAXBElement createDayOfNewTumorEventAdditionalSurgeryProcedure(DayOfNewTumorEventAdditionalSurgeryProcedure value) { + return new JAXBElement(_DayOfNewTumorEventAdditionalSurgeryProcedure_QNAME, DayOfNewTumorEventAdditionalSurgeryProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfNewTumorEventTransplant }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "day_of_new_tumor_event_transplant") + public JAXBElement createDayOfNewTumorEventTransplant(DayOfNewTumorEventTransplant value) { + return new JAXBElement(_DayOfNewTumorEventTransplant_QNAME, DayOfNewTumorEventTransplant.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfAdditionalSurgeryLocoregionalProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "year_of_additional_surgery_locoregional_procedure") + public JAXBElement createYearOfAdditionalSurgeryLocoregionalProcedure(YearOfAdditionalSurgeryLocoregionalProcedure value) { + return new JAXBElement(_YearOfAdditionalSurgeryLocoregionalProcedure_QNAME, YearOfAdditionalSurgeryLocoregionalProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewNeoplasmEventOccurrenceAnatomicSite }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_neoplasm_event_occurrence_anatomic_site") + public JAXBElement createNewNeoplasmEventOccurrenceAnatomicSite(NewNeoplasmEventOccurrenceAnatomicSite value) { + return new JAXBElement(_NewNeoplasmEventOccurrenceAnatomicSite_QNAME, NewNeoplasmEventOccurrenceAnatomicSite.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfNewTumorEventTransplant }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "year_of_new_tumor_event_transplant") + public JAXBElement createYearOfNewTumorEventTransplant(YearOfNewTumorEventTransplant value) { + return new JAXBElement(_YearOfNewTumorEventTransplant_QNAME, YearOfNewTumorEventTransplant.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TreatmentOutcome }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "treatment_outcome") + public JAXBElement createTreatmentOutcome(TreatmentOutcome value) { + return new JAXBElement(_TreatmentOutcome_QNAME, TreatmentOutcome.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorEventAfterInitialTreatment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_event_after_initial_treatment") + public JAXBElement createNewTumorEventAfterInitialTreatment(NewTumorEventAfterInitialTreatment value) { + return new JAXBElement(_NewTumorEventAfterInitialTreatment_QNAME, NewTumorEventAfterInitialTreatment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdditionalRadiationTherapy }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "additional_radiation_therapy") + public JAXBElement createAdditionalRadiationTherapy(AdditionalRadiationTherapy value) { + return new JAXBElement(_AdditionalRadiationTherapy_QNAME, AdditionalRadiationTherapy.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdditionalSurgeryMetastaticProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "additional_surgery_metastatic_procedure") + public JAXBElement createAdditionalSurgeryMetastaticProcedure(AdditionalSurgeryMetastaticProcedure value) { + return new JAXBElement(_AdditionalSurgeryMetastaticProcedure_QNAME, AdditionalSurgeryMetastaticProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewNeoplasmOccurrenceAnatomicSiteText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_neoplasm_occurrence_anatomic_site_text") + public JAXBElement createNewNeoplasmOccurrenceAnatomicSiteText(NewNeoplasmOccurrenceAnatomicSiteText value) { + return new JAXBElement(_NewNeoplasmOccurrenceAnatomicSiteText_QNAME, NewNeoplasmOccurrenceAnatomicSiteText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfNewTumorEventAfterInitialTreatment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "year_of_new_tumor_event_after_initial_treatment") + public JAXBElement createYearOfNewTumorEventAfterInitialTreatment(YearOfNewTumorEventAfterInitialTreatment value) { + return new JAXBElement(_YearOfNewTumorEventAfterInitialTreatment_QNAME, YearOfNewTumorEventAfterInitialTreatment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfAdditionalSurgeryMetastaticProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "year_of_additional_surgery_metastatic_procedure") + public JAXBElement createYearOfAdditionalSurgeryMetastaticProcedure(YearOfAdditionalSurgeryMetastaticProcedure value) { + return new JAXBElement(_YearOfAdditionalSurgeryMetastaticProcedure_QNAME, YearOfAdditionalSurgeryMetastaticProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdditionalPharmaceuticalTherapy }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "additional_pharmaceutical_therapy") + public JAXBElement createAdditionalPharmaceuticalTherapy(AdditionalPharmaceuticalTherapy value) { + return new JAXBElement(_AdditionalPharmaceuticalTherapy_QNAME, AdditionalPharmaceuticalTherapy.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewDiseaseMultifocal }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_disease_multifocal") + public JAXBElement createNewDiseaseMultifocal(NewDiseaseMultifocal value) { + return new JAXBElement(_NewDiseaseMultifocal_QNAME, NewDiseaseMultifocal.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ResidualDiseasePostNewTumorEventMarginStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "residual_disease_post_new_tumor_event_margin_status") + public JAXBElement createResidualDiseasePostNewTumorEventMarginStatus(ResidualDiseasePostNewTumorEventMarginStatus value) { + return new JAXBElement(_ResidualDiseasePostNewTumorEventMarginStatus_QNAME, ResidualDiseasePostNewTumorEventMarginStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfAdditionalSurgeryMetastaticProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "month_of_additional_surgery_metastatic_procedure") + public JAXBElement createMonthOfAdditionalSurgeryMetastaticProcedure(MonthOfAdditionalSurgeryMetastaticProcedure value) { + return new JAXBElement(_MonthOfAdditionalSurgeryMetastaticProcedure_QNAME, MonthOfAdditionalSurgeryMetastaticProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorPriorResectionRadWidth }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_prior_resection_rad_width") + public JAXBElement createNewTumorPriorResectionRadWidth(NewTumorPriorResectionRadWidth value) { + return new JAXBElement(_NewTumorPriorResectionRadWidth_QNAME, NewTumorPriorResectionRadWidth.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfNewTumorEventAdditionalSurgeryProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "year_of_new_tumor_event_additional_surgery_procedure") + public JAXBElement createYearOfNewTumorEventAdditionalSurgeryProcedure(YearOfNewTumorEventAdditionalSurgeryProcedure value) { + return new JAXBElement(_YearOfNewTumorEventAdditionalSurgeryProcedure_QNAME, YearOfNewTumorEventAdditionalSurgeryProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorPriorResectionRadDepth }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_prior_resection_rad_depth") + public JAXBElement createNewTumorPriorResectionRadDepth(NewTumorPriorResectionRadDepth value) { + return new JAXBElement(_NewTumorPriorResectionRadDepth_QNAME, NewTumorPriorResectionRadDepth.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorDiscontiguousLesionNum }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_discontiguous_lesion_num") + public JAXBElement createNewTumorDiscontiguousLesionNum(NewTumorDiscontiguousLesionNum value) { + return new JAXBElement(_NewTumorDiscontiguousLesionNum_QNAME, NewTumorDiscontiguousLesionNum.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfNewTumorEventAdditionalSurgeryProcedure }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "month_of_new_tumor_event_additional_surgery_procedure") + public JAXBElement createMonthOfNewTumorEventAdditionalSurgeryProcedure(MonthOfNewTumorEventAdditionalSurgeryProcedure value) { + return new JAXBElement(_MonthOfNewTumorEventAdditionalSurgeryProcedure_QNAME, MonthOfNewTumorEventAdditionalSurgeryProcedure.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorPostResectionPathWidth }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_post_resection_path_width") + public JAXBElement createNewTumorPostResectionPathWidth(NewTumorPostResectionPathWidth value) { + return new JAXBElement(_NewTumorPostResectionPathWidth_QNAME, NewTumorPostResectionPathWidth.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorPriorResectionRadBurden }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_prior_resection_rad_burden") + public JAXBElement createNewTumorPriorResectionRadBurden(NewTumorPriorResectionRadBurden value) { + return new JAXBElement(_NewTumorPriorResectionRadBurden_QNAME, NewTumorPriorResectionRadBurden.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NewTumorPostResectionPathDepth }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7", name = "new_tumor_post_resection_path_depth") + public JAXBElement createNewTumorPostResectionPathDepth(NewTumorPostResectionPathDepth value) { + return new JAXBElement(_NewTumorPostResectionPathDepth_QNAME, NewTumorPostResectionPathDepth.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ProgressionDeterminedBy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ProgressionDeterminedBy.java new file mode 100644 index 0000000..4f836d0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ProgressionDeterminedBy.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2786205" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.9" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "progression_determined_by") +public class ProgressionDeterminedBy + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ResidualDiseasePostNewTumorEventMarginStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ResidualDiseasePostNewTumorEventMarginStatus.java new file mode 100644 index 0000000..74706c4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/ResidualDiseasePostNewTumorEventMarginStatus.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008753" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ResidualDiseasePostNewTumorEventMarginStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/TreatmentOutcome.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/TreatmentOutcome.java new file mode 100644 index 0000000..21c794b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/TreatmentOutcome.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5102392" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class TreatmentOutcome + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfAdditionalSurgeryLocoregionalProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfAdditionalSurgeryLocoregionalProcedure.java new file mode 100644 index 0000000..34695a3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfAdditionalSurgeryLocoregionalProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897036" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfAdditionalSurgeryLocoregionalProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897036"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfAdditionalSurgeryMetastaticProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfAdditionalSurgeryMetastaticProcedure.java new file mode 100644 index 0000000..97e39d6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfAdditionalSurgeryMetastaticProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897042" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfAdditionalSurgeryMetastaticProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897042"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventAdditionalSurgeryProcedure.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventAdditionalSurgeryProcedure.java new file mode 100644 index 0000000..69ac351 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventAdditionalSurgeryProcedure.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3427614" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfNewTumorEventAdditionalSurgeryProcedure { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3427614"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventAfterInitialTreatment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventAfterInitialTreatment.java new file mode 100644 index 0000000..e6f874b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventAfterInitialTreatment.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3104046" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfNewTumorEventAfterInitialTreatment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3104046"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.2"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventTransplant.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventTransplant.java new file mode 100644 index 0000000..0df349a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/YearOfNewTumorEventTransplant.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3168037" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfNewTumorEventTransplant { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3168037"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/package-info.java new file mode 100644 index 0000000..cc2f60a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/new_tumor_event/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/shared/new_tumor_event/2.7") +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BLymphocyteGenotypingMethod.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BLymphocyteGenotypingMethod.java new file mode 100644 index 0000000..fc24b11 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BLymphocyteGenotypingMethod.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233449" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "b_lymphocyte_genotyping_method") +public class BLymphocyteGenotypingMethod + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowBiopsyDone.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowBiopsyDone.java new file mode 100644 index 0000000..a90a232 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowBiopsyDone.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2180833" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bone_marrow_biopsy_done") +public class BoneMarrowBiopsyDone { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2180833"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowInvolvement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowInvolvement.java new file mode 100644 index 0000000..86f4a4c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowInvolvement.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2180550" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bone_marrow_involvement") +public class BoneMarrowInvolvement { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2180550"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowSampleHistology.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowSampleHistology.java new file mode 100644 index 0000000..a8c5240 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/BoneMarrowSampleHistology.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233401" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class BoneMarrowSampleHistology + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/Cd4CountsAtDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/Cd4CountsAtDiagnosis.java new file mode 100644 index 0000000..f72e968 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/Cd4CountsAtDiagnosis.java @@ -0,0 +1,419 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2922654" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="cells/mm3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "cd4_counts_at_diagnosis") +public class Cd4CountsAtDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2922654"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "cells/mm3"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/CdcHivRiskGroup.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/CdcHivRiskGroup.java new file mode 100644 index 0000000..2f2917f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/CdcHivRiskGroup.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2542215" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "cdc_hiv_risk_group") +public class CdcHivRiskGroup + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfCancerDebulkingSurgery.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfCancerDebulkingSurgery.java new file mode 100644 index 0000000..9d34a45 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfCancerDebulkingSurgery.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4631581" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_cancer_debulking_surgery") +public class DayOfCancerDebulkingSurgery { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4631581"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfChemotherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfChemotherapyEnd.java new file mode 100644 index 0000000..15fe281 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfChemotherapyEnd.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897058" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfChemotherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897058"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfChemotherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfChemotherapyStart.java new file mode 100644 index 0000000..8753aea --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfChemotherapyStart.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897052" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DayOfChemotherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897052"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfHivDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfHivDiagnosis.java new file mode 100644 index 0000000..ee25a0e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfHivDiagnosis.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3579644" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_hiv_diagnosis") +public class DayOfHivDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3579644"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfStemCellTransplantation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfStemCellTransplantation.java new file mode 100644 index 0000000..611fc9b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DayOfStemCellTransplantation.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3366912" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_stem_cell_transplantation") +public class DayOfStemCellTransplantation { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3366912"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToCancerDebulkingSurgery.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToCancerDebulkingSurgery.java new file mode 100644 index 0000000..883483a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToCancerDebulkingSurgery.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4631694" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_cancer_debulking_surgery") +public class DaysToCancerDebulkingSurgery + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToChemotherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToChemotherapyEnd.java new file mode 100644 index 0000000..5df9cc5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToChemotherapyEnd.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008299" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_chemotherapy_end") +public class DaysToChemotherapyEnd + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToChemotherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToChemotherapyStart.java new file mode 100644 index 0000000..c539263 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToChemotherapyStart.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008297" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_chemotherapy_start") +public class DaysToChemotherapyStart + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToHivDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToHivDiagnosis.java new file mode 100644 index 0000000..4494f1b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToHivDiagnosis.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4618491" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_hiv_diagnosis") +public class DaysToHivDiagnosis + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToStemCellTransplantation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToStemCellTransplantation.java new file mode 100644 index 0000000..800c51b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/DaysToStemCellTransplantation.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3414613" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_stem_cell_transplantation") +public class DaysToStemCellTransplantation + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EbvPositiveMalignantCellsPercent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EbvPositiveMalignantCellsPercent.java new file mode 100644 index 0000000..fd6bb72 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EbvPositiveMalignantCellsPercent.java @@ -0,0 +1,419 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233649" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="percent" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "ebv_positive_malignant_cells_percent") +public class EbvPositiveMalignantCellsPercent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3233649"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "percent"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EbvStatusMalignantCellsMethod.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EbvStatusMalignantCellsMethod.java new file mode 100644 index 0000000..19f8595 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EbvStatusMalignantCellsMethod.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233656" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "ebv_status_malignant_cells_method") +public class EbvStatusMalignantCellsMethod + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EpsteinBarrViralStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EpsteinBarrViralStatus.java new file mode 100644 index 0000000..325f79b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/EpsteinBarrViralStatus.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2003961" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "epstein_barr_viral_status") +public class EpsteinBarrViralStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalInvolvementSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalInvolvementSite.java new file mode 100644 index 0000000..d2d32ed --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalInvolvementSite.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3288482" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "extranodal_involvement_site") +public class ExtranodalInvolvementSite + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalInvolvmentSiteOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalInvolvmentSiteOther.java new file mode 100644 index 0000000..ae67603 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalInvolvmentSiteOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3234303" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ExtranodalInvolvmentSiteOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3234303"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalSitesInvolvementNumber.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalSitesInvolvementNumber.java new file mode 100644 index 0000000..9fb6995 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ExtranodalSitesInvolvementNumber.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233242" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class ExtranodalSitesInvolvementNumber { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3233242"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/FollicularComponentPercent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/FollicularComponentPercent.java new file mode 100644 index 0000000..c48b2bb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/FollicularComponentPercent.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3232840" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "follicular_component_percent") +public class FollicularComponentPercent + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HbvTest.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HbvTest.java new file mode 100644 index 0000000..a8f841f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HbvTest.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2180456" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "hbv_test") +public class HbvTest + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HcvTest.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HcvTest.java new file mode 100644 index 0000000..42e603d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HcvTest.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2695021" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "hcv_test") +public class HcvTest + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunologicalDisease.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunologicalDisease.java new file mode 100644 index 0000000..8f53e66 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunologicalDisease.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233628" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "history_immunological_disease") +public class HistoryImmunologicalDisease + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunologicalDiseaseOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunologicalDiseaseOther.java new file mode 100644 index 0000000..04215ca --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunologicalDiseaseOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233629" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "history_immunological_disease_other") +public class HistoryImmunologicalDiseaseOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3233629"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunosuppresiveRx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunosuppresiveRx.java new file mode 100644 index 0000000..e0eb85a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunosuppresiveRx.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233638" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "history_immunosuppresive_rx") +public class HistoryImmunosuppresiveRx + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunosuppressiveRxOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunosuppressiveRxOther.java new file mode 100644 index 0000000..0f3ecff --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryImmunosuppressiveRxOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2873928" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "history_immunosuppressive_rx_other") +public class HistoryImmunosuppressiveRxOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2873928"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryOfOtherMalignancy.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryOfOtherMalignancy.java new file mode 100644 index 0000000..4ff5b2c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryOfOtherMalignancy.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2718428" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "history_of_other_malignancy") +public class HistoryOfOtherMalignancy { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2718428"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryRelevantInfectiousDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryRelevantInfectiousDx.java new file mode 100644 index 0000000..e1e06ea --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryRelevantInfectiousDx.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233642" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "history_relevant_infectious_dx") +public class HistoryRelevantInfectiousDx + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryRelevantInfectiousDxOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryRelevantInfectiousDxOther.java new file mode 100644 index 0000000..475e87d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HistoryRelevantInfectiousDxOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233643" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "history_relevant_infectious_dx_other") +public class HistoryRelevantInfectiousDxOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3233643"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HivRnaLoadAtDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HivRnaLoadAtDiagnosis.java new file mode 100644 index 0000000..ed2e887 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HivRnaLoadAtDiagnosis.java @@ -0,0 +1,419 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2922674" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="counts/mL" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "hiv_rna_load_at_diagnosis") +public class HivRnaLoadAtDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2922674"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "counts/mL"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HpvTest.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HpvTest.java new file mode 100644 index 0000000..50b039b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/HpvTest.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2230033" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "hpv_test") +public class HpvTest + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/IghGenotypeResults.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/IghGenotypeResults.java new file mode 100644 index 0000000..4b39d11 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/IghGenotypeResults.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233560" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "igh_genotype_results") +public class IghGenotypeResults + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/IgkGenotypeResults.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/IgkGenotypeResults.java new file mode 100644 index 0000000..a066ca7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/IgkGenotypeResults.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233565" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "igk_genotype_results") +public class IgkGenotypeResults + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/KshvHhv8Test.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/KshvHhv8Test.java new file mode 100644 index 0000000..d996d36 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/KshvHhv8Test.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3335773" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "kshv_hhv8_test") +public class KshvHhv8Test + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LdhLevel.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LdhLevel.java new file mode 100644 index 0000000..52c4745 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LdhLevel.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2798766" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="IU" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class LdhLevel { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2798766"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "IU"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LdhNormRangeUpper.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LdhNormRangeUpper.java new file mode 100644 index 0000000..1c9d952 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LdhNormRangeUpper.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2597015" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="IU" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class LdhNormRangeUpper { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2597015"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "IU"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LymphNodeInvolvementSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LymphNodeInvolvementSite.java new file mode 100644 index 0000000..c513336 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/LymphNodeInvolvementSite.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2180591" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "lymph_node_involvement_site") +public class LymphNodeInvolvementSite + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MaximumTumorBulkAnatomicLocation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MaximumTumorBulkAnatomicLocation.java new file mode 100644 index 0000000..d955ae9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MaximumTumorBulkAnatomicLocation.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233300" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MaximumTumorBulkAnatomicLocation { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3233300"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MaximumTumorBulkAnatomicSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MaximumTumorBulkAnatomicSite.java new file mode 100644 index 0000000..3187f13 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MaximumTumorBulkAnatomicSite.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3639616" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "maximum_tumor_bulk_anatomic_site") +public class MaximumTumorBulkAnatomicSite + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/Mib1PositivePercentageRange.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/Mib1PositivePercentageRange.java new file mode 100644 index 0000000..2b942c2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/Mib1PositivePercentageRange.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3233414" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "mib1_positive_percentage_range") +public class Mib1PositivePercentageRange + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfCancerDebulkingSurgery.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfCancerDebulkingSurgery.java new file mode 100644 index 0000000..23f7521 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfCancerDebulkingSurgery.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4631583" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_cancer_debulking_surgery") +public class MonthOfCancerDebulkingSurgery { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4631583"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfChemotherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfChemotherapyEnd.java new file mode 100644 index 0000000..da36353 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfChemotherapyEnd.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897056" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfChemotherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897056"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfChemotherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfChemotherapyStart.java new file mode 100644 index 0000000..0043e72 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfChemotherapyStart.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897050" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MonthOfChemotherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897050"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfHivDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfHivDiagnosis.java new file mode 100644 index 0000000..0961ad8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfHivDiagnosis.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3579640" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_hiv_diagnosis") +public class MonthOfHivDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3579640"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfStemCellTransplantation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfStemCellTransplantation.java new file mode 100644 index 0000000..6ffa33c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/MonthOfStemCellTransplantation.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3366911" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_stem_cell_transplantation") +public class MonthOfStemCellTransplantation { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3366911"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/NadirCd4Counts.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/NadirCd4Counts.java new file mode 100644 index 0000000..f38269d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/NadirCd4Counts.java @@ -0,0 +1,419 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2684395" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="cells/mm3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "nadir_cd4_counts") +public class NadirCd4Counts { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2684395"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "cells/mm3"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ObjectFactory.java new file mode 100644 index 0000000..65e3c7f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/ObjectFactory.java @@ -0,0 +1,654 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2 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 _MonthOfChemotherapyEnd_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "month_of_chemotherapy_end"); + private final static QName _DayOfChemotherapyStart_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "day_of_chemotherapy_start"); + private final static QName _DayOfChemotherapyEnd_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "day_of_chemotherapy_end"); + private final static QName _YearOfChemotherapyStart_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "year_of_chemotherapy_start"); + private final static QName _LdhLevel_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "ldh_level"); + private final static QName _LdhNormRangeUpper_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "ldh_norm_range_upper"); + private final static QName _YearOfChemotherapyEnd_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "year_of_chemotherapy_end"); + private final static QName _MaximumTumorBulkAnatomicLocation_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "maximum_tumor_bulk_anatomic_location"); + private final static QName _MonthOfChemotherapyStart_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "month_of_chemotherapy_start"); + private final static QName _ExtranodalInvolvmentSiteOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "extranodal_involvment_site_other"); + private final static QName _BoneMarrowSampleHistology_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "bone_marrow_sample_histology"); + private final static QName _ExtranodalSitesInvolvementNumber_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "extranodal_sites_involvement_number"); + private final static QName _PosLymphNodeLocationOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "pos_lymph_node_location_other"); + private final static QName _PosLymphNodeLocation_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", "pos_lymph_node_location"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link DayOfStemCellTransplantation } + * + */ + public DayOfStemCellTransplantation createDayOfStemCellTransplantation() { + return new DayOfStemCellTransplantation(); + } + + /** + * Create an instance of {@link MonthOfStemCellTransplantation } + * + */ + public MonthOfStemCellTransplantation createMonthOfStemCellTransplantation() { + return new MonthOfStemCellTransplantation(); + } + + /** + * Create an instance of {@link YearOfStemCellTransplantation } + * + */ + public YearOfStemCellTransplantation createYearOfStemCellTransplantation() { + return new YearOfStemCellTransplantation(); + } + + /** + * Create an instance of {@link DaysToStemCellTransplantation } + * + */ + public DaysToStemCellTransplantation createDaysToStemCellTransplantation() { + return new DaysToStemCellTransplantation(); + } + + /** + * Create an instance of {@link MaximumTumorBulkAnatomicSite } + * + */ + public MaximumTumorBulkAnatomicSite createMaximumTumorBulkAnatomicSite() { + return new MaximumTumorBulkAnatomicSite(); + } + + /** + * Create an instance of {@link IgkGenotypeResults } + * + */ + public IgkGenotypeResults createIgkGenotypeResults() { + return new IgkGenotypeResults(); + } + + /** + * Create an instance of {@link MonthOfChemotherapyEnd } + * + */ + public MonthOfChemotherapyEnd createMonthOfChemotherapyEnd() { + return new MonthOfChemotherapyEnd(); + } + + /** + * Create an instance of {@link EbvPositiveMalignantCellsPercent } + * + */ + public EbvPositiveMalignantCellsPercent createEbvPositiveMalignantCellsPercent() { + return new EbvPositiveMalignantCellsPercent(); + } + + /** + * Create an instance of {@link MaximumTumorBulkAnatomicLocation } + * + */ + public MaximumTumorBulkAnatomicLocation createMaximumTumorBulkAnatomicLocation() { + return new MaximumTumorBulkAnatomicLocation(); + } + + /** + * Create an instance of {@link PosLymphNodeLocationOther } + * + */ + public PosLymphNodeLocationOther createPosLymphNodeLocationOther() { + return new PosLymphNodeLocationOther(); + } + + /** + * Create an instance of {@link Cd4CountsAtDiagnosis } + * + */ + public Cd4CountsAtDiagnosis createCd4CountsAtDiagnosis() { + return new Cd4CountsAtDiagnosis(); + } + + /** + * Create an instance of {@link YearOfCancerDebulkingSurgery } + * + */ + public YearOfCancerDebulkingSurgery createYearOfCancerDebulkingSurgery() { + return new YearOfCancerDebulkingSurgery(); + } + + /** + * Create an instance of {@link MonthOfChemotherapyStart } + * + */ + public MonthOfChemotherapyStart createMonthOfChemotherapyStart() { + return new MonthOfChemotherapyStart(); + } + + /** + * Create an instance of {@link BoneMarrowSampleHistology } + * + */ + public BoneMarrowSampleHistology createBoneMarrowSampleHistology() { + return new BoneMarrowSampleHistology(); + } + + /** + * Create an instance of {@link DayOfChemotherapyStart } + * + */ + public DayOfChemotherapyStart createDayOfChemotherapyStart() { + return new DayOfChemotherapyStart(); + } + + /** + * Create an instance of {@link YearOfChemotherapyEnd } + * + */ + public YearOfChemotherapyEnd createYearOfChemotherapyEnd() { + return new YearOfChemotherapyEnd(); + } + + /** + * Create an instance of {@link PriorAidsConditions } + * + */ + public PriorAidsConditions createPriorAidsConditions() { + return new PriorAidsConditions(); + } + + /** + * Create an instance of {@link FollicularComponentPercent } + * + */ + public FollicularComponentPercent createFollicularComponentPercent() { + return new FollicularComponentPercent(); + } + + /** + * Create an instance of {@link OnHaartTherapyAtCancerDiagnosis } + * + */ + public OnHaartTherapyAtCancerDiagnosis createOnHaartTherapyAtCancerDiagnosis() { + return new OnHaartTherapyAtCancerDiagnosis(); + } + + /** + * Create an instance of {@link DaysToChemotherapyStart } + * + */ + public DaysToChemotherapyStart createDaysToChemotherapyStart() { + return new DaysToChemotherapyStart(); + } + + /** + * Create an instance of {@link HistoryImmunosuppressiveRxOther } + * + */ + public HistoryImmunosuppressiveRxOther createHistoryImmunosuppressiveRxOther() { + return new HistoryImmunosuppressiveRxOther(); + } + + /** + * Create an instance of {@link HistoryOfOtherMalignancy } + * + */ + public HistoryOfOtherMalignancy createHistoryOfOtherMalignancy() { + return new HistoryOfOtherMalignancy(); + } + + /** + * Create an instance of {@link LdhNormRangeUpper } + * + */ + public LdhNormRangeUpper createLdhNormRangeUpper() { + return new LdhNormRangeUpper(); + } + + /** + * Create an instance of {@link HistoryImmunologicalDisease } + * + */ + public HistoryImmunologicalDisease createHistoryImmunologicalDisease() { + return new HistoryImmunologicalDisease(); + } + + /** + * Create an instance of {@link DaysToCancerDebulkingSurgery } + * + */ + public DaysToCancerDebulkingSurgery createDaysToCancerDebulkingSurgery() { + return new DaysToCancerDebulkingSurgery(); + } + + /** + * Create an instance of {@link HivRnaLoadAtDiagnosis } + * + */ + public HivRnaLoadAtDiagnosis createHivRnaLoadAtDiagnosis() { + return new HivRnaLoadAtDiagnosis(); + } + + /** + * Create an instance of {@link MonthOfCancerDebulkingSurgery } + * + */ + public MonthOfCancerDebulkingSurgery createMonthOfCancerDebulkingSurgery() { + return new MonthOfCancerDebulkingSurgery(); + } + + /** + * Create an instance of {@link OnHaartTherapyPriorToCancerDiagnosis } + * + */ + public OnHaartTherapyPriorToCancerDiagnosis createOnHaartTherapyPriorToCancerDiagnosis() { + return new OnHaartTherapyPriorToCancerDiagnosis(); + } + + /** + * Create an instance of {@link ExtranodalInvolvmentSiteOther } + * + */ + public ExtranodalInvolvmentSiteOther createExtranodalInvolvmentSiteOther() { + return new ExtranodalInvolvmentSiteOther(); + } + + /** + * Create an instance of {@link HcvTest } + * + */ + public HcvTest createHcvTest() { + return new HcvTest(); + } + + /** + * Create an instance of {@link DaysToHivDiagnosis } + * + */ + public DaysToHivDiagnosis createDaysToHivDiagnosis() { + return new DaysToHivDiagnosis(); + } + + /** + * Create an instance of {@link EbvStatusMalignantCellsMethod } + * + */ + public EbvStatusMalignantCellsMethod createEbvStatusMalignantCellsMethod() { + return new EbvStatusMalignantCellsMethod(); + } + + /** + * Create an instance of {@link BoneMarrowBiopsyDone } + * + */ + public BoneMarrowBiopsyDone createBoneMarrowBiopsyDone() { + return new BoneMarrowBiopsyDone(); + } + + /** + * Create an instance of {@link BoneMarrowInvolvement } + * + */ + public BoneMarrowInvolvement createBoneMarrowInvolvement() { + return new BoneMarrowInvolvement(); + } + + /** + * Create an instance of {@link LymphNodeInvolvementSite } + * + */ + public LymphNodeInvolvementSite createLymphNodeInvolvementSite() { + return new LymphNodeInvolvementSite(); + } + + /** + * Create an instance of {@link HpvTest } + * + */ + public HpvTest createHpvTest() { + return new HpvTest(); + } + + /** + * Create an instance of {@link ExtranodalInvolvementSite } + * + */ + public ExtranodalInvolvementSite createExtranodalInvolvementSite() { + return new ExtranodalInvolvementSite(); + } + + /** + * Create an instance of {@link NadirCd4Counts } + * + */ + public NadirCd4Counts createNadirCd4Counts() { + return new NadirCd4Counts(); + } + + /** + * Create an instance of {@link HistoryRelevantInfectiousDxOther } + * + */ + public HistoryRelevantInfectiousDxOther createHistoryRelevantInfectiousDxOther() { + return new HistoryRelevantInfectiousDxOther(); + } + + /** + * Create an instance of {@link Mib1PositivePercentageRange } + * + */ + public Mib1PositivePercentageRange createMib1PositivePercentageRange() { + return new Mib1PositivePercentageRange(); + } + + /** + * Create an instance of {@link BLymphocyteGenotypingMethod } + * + */ + public BLymphocyteGenotypingMethod createBLymphocyteGenotypingMethod() { + return new BLymphocyteGenotypingMethod(); + } + + /** + * Create an instance of {@link HistoryImmunosuppresiveRx } + * + */ + public HistoryImmunosuppresiveRx createHistoryImmunosuppresiveRx() { + return new HistoryImmunosuppresiveRx(); + } + + /** + * Create an instance of {@link PosLymphNodeLocation } + * + */ + public PosLymphNodeLocation createPosLymphNodeLocation() { + return new PosLymphNodeLocation(); + } + + /** + * Create an instance of {@link HistoryImmunologicalDiseaseOther } + * + */ + public HistoryImmunologicalDiseaseOther createHistoryImmunologicalDiseaseOther() { + return new HistoryImmunologicalDiseaseOther(); + } + + /** + * Create an instance of {@link HistoryRelevantInfectiousDx } + * + */ + public HistoryRelevantInfectiousDx createHistoryRelevantInfectiousDx() { + return new HistoryRelevantInfectiousDx(); + } + + /** + * Create an instance of {@link HbvTest } + * + */ + public HbvTest createHbvTest() { + return new HbvTest(); + } + + /** + * Create an instance of {@link MonthOfHivDiagnosis } + * + */ + public MonthOfHivDiagnosis createMonthOfHivDiagnosis() { + return new MonthOfHivDiagnosis(); + } + + /** + * Create an instance of {@link YearOfChemotherapyStart } + * + */ + public YearOfChemotherapyStart createYearOfChemotherapyStart() { + return new YearOfChemotherapyStart(); + } + + /** + * Create an instance of {@link CdcHivRiskGroup } + * + */ + public CdcHivRiskGroup createCdcHivRiskGroup() { + return new CdcHivRiskGroup(); + } + + /** + * Create an instance of {@link ExtranodalSitesInvolvementNumber } + * + */ + public ExtranodalSitesInvolvementNumber createExtranodalSitesInvolvementNumber() { + return new ExtranodalSitesInvolvementNumber(); + } + + /** + * Create an instance of {@link EpsteinBarrViralStatus } + * + */ + public EpsteinBarrViralStatus createEpsteinBarrViralStatus() { + return new EpsteinBarrViralStatus(); + } + + /** + * Create an instance of {@link YearOfHivDiagnosis } + * + */ + public YearOfHivDiagnosis createYearOfHivDiagnosis() { + return new YearOfHivDiagnosis(); + } + + /** + * Create an instance of {@link IghGenotypeResults } + * + */ + public IghGenotypeResults createIghGenotypeResults() { + return new IghGenotypeResults(); + } + + /** + * Create an instance of {@link DayOfCancerDebulkingSurgery } + * + */ + public DayOfCancerDebulkingSurgery createDayOfCancerDebulkingSurgery() { + return new DayOfCancerDebulkingSurgery(); + } + + /** + * Create an instance of {@link KshvHhv8Test } + * + */ + public KshvHhv8Test createKshvHhv8Test() { + return new KshvHhv8Test(); + } + + /** + * Create an instance of {@link LdhLevel } + * + */ + public LdhLevel createLdhLevel() { + return new LdhLevel(); + } + + /** + * Create an instance of {@link DayOfChemotherapyEnd } + * + */ + public DayOfChemotherapyEnd createDayOfChemotherapyEnd() { + return new DayOfChemotherapyEnd(); + } + + /** + * Create an instance of {@link DaysToChemotherapyEnd } + * + */ + public DaysToChemotherapyEnd createDaysToChemotherapyEnd() { + return new DaysToChemotherapyEnd(); + } + + /** + * Create an instance of {@link DayOfHivDiagnosis } + * + */ + public DayOfHivDiagnosis createDayOfHivDiagnosis() { + return new DayOfHivDiagnosis(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfChemotherapyEnd }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "month_of_chemotherapy_end") + public JAXBElement createMonthOfChemotherapyEnd(MonthOfChemotherapyEnd value) { + return new JAXBElement(_MonthOfChemotherapyEnd_QNAME, MonthOfChemotherapyEnd.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfChemotherapyStart }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "day_of_chemotherapy_start") + public JAXBElement createDayOfChemotherapyStart(DayOfChemotherapyStart value) { + return new JAXBElement(_DayOfChemotherapyStart_QNAME, DayOfChemotherapyStart.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DayOfChemotherapyEnd }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "day_of_chemotherapy_end") + public JAXBElement createDayOfChemotherapyEnd(DayOfChemotherapyEnd value) { + return new JAXBElement(_DayOfChemotherapyEnd_QNAME, DayOfChemotherapyEnd.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfChemotherapyStart }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "year_of_chemotherapy_start") + public JAXBElement createYearOfChemotherapyStart(YearOfChemotherapyStart value) { + return new JAXBElement(_YearOfChemotherapyStart_QNAME, YearOfChemotherapyStart.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LdhLevel }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "ldh_level") + public JAXBElement createLdhLevel(LdhLevel value) { + return new JAXBElement(_LdhLevel_QNAME, LdhLevel.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LdhNormRangeUpper }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "ldh_norm_range_upper") + public JAXBElement createLdhNormRangeUpper(LdhNormRangeUpper value) { + return new JAXBElement(_LdhNormRangeUpper_QNAME, LdhNormRangeUpper.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link YearOfChemotherapyEnd }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "year_of_chemotherapy_end") + public JAXBElement createYearOfChemotherapyEnd(YearOfChemotherapyEnd value) { + return new JAXBElement(_YearOfChemotherapyEnd_QNAME, YearOfChemotherapyEnd.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MaximumTumorBulkAnatomicLocation }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "maximum_tumor_bulk_anatomic_location") + public JAXBElement createMaximumTumorBulkAnatomicLocation(MaximumTumorBulkAnatomicLocation value) { + return new JAXBElement(_MaximumTumorBulkAnatomicLocation_QNAME, MaximumTumorBulkAnatomicLocation.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MonthOfChemotherapyStart }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "month_of_chemotherapy_start") + public JAXBElement createMonthOfChemotherapyStart(MonthOfChemotherapyStart value) { + return new JAXBElement(_MonthOfChemotherapyStart_QNAME, MonthOfChemotherapyStart.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ExtranodalInvolvmentSiteOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "extranodal_involvment_site_other") + public JAXBElement createExtranodalInvolvmentSiteOther(ExtranodalInvolvmentSiteOther value) { + return new JAXBElement(_ExtranodalInvolvmentSiteOther_QNAME, ExtranodalInvolvmentSiteOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BoneMarrowSampleHistology }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "bone_marrow_sample_histology") + public JAXBElement createBoneMarrowSampleHistology(BoneMarrowSampleHistology value) { + return new JAXBElement(_BoneMarrowSampleHistology_QNAME, BoneMarrowSampleHistology.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ExtranodalSitesInvolvementNumber }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "extranodal_sites_involvement_number") + public JAXBElement createExtranodalSitesInvolvementNumber(ExtranodalSitesInvolvementNumber value) { + return new JAXBElement(_ExtranodalSitesInvolvementNumber_QNAME, ExtranodalSitesInvolvementNumber.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PosLymphNodeLocationOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "pos_lymph_node_location_other") + public JAXBElement createPosLymphNodeLocationOther(PosLymphNodeLocationOther value) { + return new JAXBElement(_PosLymphNodeLocationOther_QNAME, PosLymphNodeLocationOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link PosLymphNodeLocation }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7", name = "pos_lymph_node_location") + public JAXBElement createPosLymphNodeLocation(PosLymphNodeLocation value) { + return new JAXBElement(_PosLymphNodeLocation_QNAME, PosLymphNodeLocation.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/OnHaartTherapyAtCancerDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/OnHaartTherapyAtCancerDiagnosis.java new file mode 100644 index 0000000..0507319 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/OnHaartTherapyAtCancerDiagnosis.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2922679" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "on_haart_therapy_at_cancer_diagnosis") +public class OnHaartTherapyAtCancerDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2922679"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/OnHaartTherapyPriorToCancerDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/OnHaartTherapyPriorToCancerDiagnosis.java new file mode 100644 index 0000000..dc668e9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/OnHaartTherapyPriorToCancerDiagnosis.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3335156" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "on_haart_therapy_prior_to_cancer_diagnosis") +public class OnHaartTherapyPriorToCancerDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3335156"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PosLymphNodeLocation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PosLymphNodeLocation.java new file mode 100644 index 0000000..6641838 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PosLymphNodeLocation.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3151519" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class PosLymphNodeLocation + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PosLymphNodeLocationOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PosLymphNodeLocationOther.java new file mode 100644 index 0000000..c67a05e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PosLymphNodeLocationOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3151522" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class PosLymphNodeLocationOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3151522"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PriorAidsConditions.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PriorAidsConditions.java new file mode 100644 index 0000000..4487b98 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/PriorAidsConditions.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2679581" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "prior_aids_conditions") +public class PriorAidsConditions + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfCancerDebulkingSurgery.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfCancerDebulkingSurgery.java new file mode 100644 index 0000000..ae8a349 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfCancerDebulkingSurgery.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4631584" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_cancer_debulking_surgery") +public class YearOfCancerDebulkingSurgery { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4631584"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfChemotherapyEnd.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfChemotherapyEnd.java new file mode 100644 index 0000000..c2f288f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfChemotherapyEnd.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897060" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfChemotherapyEnd { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897060"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfChemotherapyStart.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfChemotherapyStart.java new file mode 100644 index 0000000..785f5c5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfChemotherapyStart.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2897054" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class YearOfChemotherapyStart { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2897054"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfHivDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfHivDiagnosis.java new file mode 100644 index 0000000..ae3fda5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfHivDiagnosis.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3579643" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_hiv_diagnosis") +public class YearOfHivDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3579643"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfStemCellTransplantation.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfStemCellTransplantation.java new file mode 100644 index 0000000..6eb89e6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/YearOfStemCellTransplantation.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3366913" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_stem_cell_transplantation") +public class YearOfStemCellTransplantation { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3366913"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/package-info.java new file mode 100644 index 0000000..60fed27 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/ocg/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/shared/ocg/2.7") +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/AnnArbor.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/AnnArbor.java new file mode 100644 index 0000000..befa825 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/AnnArbor.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/stage/2.7}b_symptoms" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}extranodal_involvement" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bSymptoms", + "extranodalInvolvement" +}) +@XmlRootElement(name = "ann_arbor") +public class AnnArbor { + + @XmlElement(name = "b_symptoms") + protected BSymptoms bSymptoms; + @XmlElement(name = "extranodal_involvement") + protected ExtranodalInvolvement extranodalInvolvement; + + /** + * Gets the value of the bSymptoms property. + * + * @return + * possible object is + * {@link BSymptoms } + * + */ + public BSymptoms getBSymptoms() { + return bSymptoms; + } + + /** + * Sets the value of the bSymptoms property. + * + * @param value + * allowed object is + * {@link BSymptoms } + * + */ + public void setBSymptoms(BSymptoms value) { + this.bSymptoms = value; + } + + /** + * Gets the value of the extranodalInvolvement property. + * + * @return + * possible object is + * {@link ExtranodalInvolvement } + * + */ + public ExtranodalInvolvement getExtranodalInvolvement() { + return extranodalInvolvement; + } + + /** + * Sets the value of the extranodalInvolvement property. + * + * @param value + * allowed object is + * {@link ExtranodalInvolvement } + * + */ + public void setExtranodalInvolvement(ExtranodalInvolvement value) { + this.extranodalInvolvement = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/BSymptoms.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/BSymptoms.java new file mode 100644 index 0000000..576b9ab --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/BSymptoms.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2902402" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "b_symptoms") +public class BSymptoms { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2902402"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalCategories.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalCategories.java new file mode 100644 index 0000000..6a0c1fd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalCategories.java @@ -0,0 +1,127 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_T"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_N"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_M"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "clinicalT", + "clinicalN", + "clinicalM" +}) +@XmlRootElement(name = "clinical_categories") +public class ClinicalCategories { + + @XmlElement(name = "clinical_T", required = true) + protected ClinicalT clinicalT; + @XmlElement(name = "clinical_N", required = true) + protected ClinicalN clinicalN; + @XmlElement(name = "clinical_M", required = true) + protected ClinicalM clinicalM; + + /** + * Gets the value of the clinicalT property. + * + * @return + * possible object is + * {@link ClinicalT } + * + */ + public ClinicalT getClinicalT() { + return clinicalT; + } + + /** + * Sets the value of the clinicalT property. + * + * @param value + * allowed object is + * {@link ClinicalT } + * + */ + public void setClinicalT(ClinicalT value) { + this.clinicalT = value; + } + + /** + * Gets the value of the clinicalN property. + * + * @return + * possible object is + * {@link ClinicalN } + * + */ + public ClinicalN getClinicalN() { + return clinicalN; + } + + /** + * Sets the value of the clinicalN property. + * + * @param value + * allowed object is + * {@link ClinicalN } + * + */ + public void setClinicalN(ClinicalN value) { + this.clinicalN = value; + } + + /** + * Gets the value of the clinicalM property. + * + * @return + * possible object is + * {@link ClinicalM } + * + */ + public ClinicalM getClinicalM() { + return clinicalM; + } + + /** + * Sets the value of the clinicalM property. + * + * @param value + * allowed object is + * {@link ClinicalM } + * + */ + public void setClinicalM(ClinicalM value) { + this.clinicalM = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalM.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalM.java new file mode 100644 index 0000000..3e6d2f8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalM.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_M_cde_type" default="3440331" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "clinical_M") +public class ClinicalM + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalN.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalN.java new file mode 100644 index 0000000..bb75cb0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalN.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_N_cde_type" default="3440330" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "clinical_N") +public class ClinicalN + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalStage.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalStage.java new file mode 100644 index 0000000..b8a3a8f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalStage.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_stage_cde_type" default="3440332" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "clinical_stage") +public class ClinicalStage + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalT.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalT.java new file mode 100644 index 0000000..a1871bd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ClinicalT.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_T_cde_type" default="3440328" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "clinical_T") +public class ClinicalT + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/DayOfPsa.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/DayOfPsa.java new file mode 100644 index 0000000..65bec56 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/DayOfPsa.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3351901" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_psa") +public class DayOfPsa { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3351901"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/DaysToPsa.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/DaysToPsa.java new file mode 100644 index 0000000..5a60972 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/DaysToPsa.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3414608" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_psa") +public class DaysToPsa + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ExtranodalInvolvement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ExtranodalInvolvement.java new file mode 100644 index 0000000..bb49f66 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ExtranodalInvolvement.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3364582" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "extranodal_involvement") +public class ExtranodalInvolvement { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3364582"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/GleasonGrading.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/GleasonGrading.java new file mode 100644 index 0000000..8454804 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/GleasonGrading.java @@ -0,0 +1,155 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/stage/2.7}gleason_score" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}primary_pattern" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}secondary_pattern" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}tertiary_pattern" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "gleasonScore", + "primaryPattern", + "secondaryPattern", + "tertiaryPattern" +}) +@XmlRootElement(name = "gleason_grading") +public class GleasonGrading { + + @XmlElement(name = "gleason_score") + protected GleasonScore gleasonScore; + @XmlElement(name = "primary_pattern") + protected PrimaryPattern primaryPattern; + @XmlElement(name = "secondary_pattern") + protected SecondaryPattern secondaryPattern; + @XmlElement(name = "tertiary_pattern") + protected TertiaryPattern tertiaryPattern; + + /** + * Gets the value of the gleasonScore property. + * + * @return + * possible object is + * {@link GleasonScore } + * + */ + public GleasonScore getGleasonScore() { + return gleasonScore; + } + + /** + * Sets the value of the gleasonScore property. + * + * @param value + * allowed object is + * {@link GleasonScore } + * + */ + public void setGleasonScore(GleasonScore value) { + this.gleasonScore = value; + } + + /** + * Gets the value of the primaryPattern property. + * + * @return + * possible object is + * {@link PrimaryPattern } + * + */ + public PrimaryPattern getPrimaryPattern() { + return primaryPattern; + } + + /** + * Sets the value of the primaryPattern property. + * + * @param value + * allowed object is + * {@link PrimaryPattern } + * + */ + public void setPrimaryPattern(PrimaryPattern value) { + this.primaryPattern = value; + } + + /** + * Gets the value of the secondaryPattern property. + * + * @return + * possible object is + * {@link SecondaryPattern } + * + */ + public SecondaryPattern getSecondaryPattern() { + return secondaryPattern; + } + + /** + * Sets the value of the secondaryPattern property. + * + * @param value + * allowed object is + * {@link SecondaryPattern } + * + */ + public void setSecondaryPattern(SecondaryPattern value) { + this.secondaryPattern = value; + } + + /** + * Gets the value of the tertiaryPattern property. + * + * @return + * possible object is + * {@link TertiaryPattern } + * + */ + public TertiaryPattern getTertiaryPattern() { + return tertiaryPattern; + } + + /** + * Sets the value of the tertiaryPattern property. + * + * @param value + * allowed object is + * {@link TertiaryPattern } + * + */ + public void setTertiaryPattern(TertiaryPattern value) { + this.tertiaryPattern = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/GleasonScore.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/GleasonScore.java new file mode 100644 index 0000000..def7075 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/GleasonScore.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2534619" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "gleason_score") +public class GleasonScore { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2534619"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/IgcccgStage.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/IgcccgStage.java new file mode 100644 index 0000000..7012570 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/IgcccgStage.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3901822" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "igcccg_stage") +public class IgcccgStage + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/MasaokaStage.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/MasaokaStage.java new file mode 100644 index 0000000..a8803cd --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/MasaokaStage.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3952848" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "masaoka_stage") +public class MasaokaStage + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/MonthOfPsa.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/MonthOfPsa.java new file mode 100644 index 0000000..89891b4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/MonthOfPsa.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3351900" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_psa") +public class MonthOfPsa { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3351900"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ObjectFactory.java new file mode 100644 index 0000000..de3c1dc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/ObjectFactory.java @@ -0,0 +1,300 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2 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 _StageOther_QNAME = new QName("http://tcga.nci/bcr/xml/clinical/shared/stage/2.7", "stage_other"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link StageEvent } + * + */ + public StageEvent createStageEvent() { + return new StageEvent(); + } + + /** + * Create an instance of {@link SystemVersion } + * + */ + public SystemVersion createSystemVersion() { + return new SystemVersion(); + } + + /** + * Create an instance of {@link ClinicalStage } + * + */ + public ClinicalStage createClinicalStage() { + return new ClinicalStage(); + } + + /** + * Create an instance of {@link PathologicStage } + * + */ + public PathologicStage createPathologicStage() { + return new PathologicStage(); + } + + /** + * Create an instance of {@link StageOther } + * + */ + public StageOther createStageOther() { + return new StageOther(); + } + + /** + * Create an instance of {@link TnmCategories } + * + */ + public TnmCategories createTnmCategories() { + return new TnmCategories(); + } + + /** + * Create an instance of {@link ClinicalCategories } + * + */ + public ClinicalCategories createClinicalCategories() { + return new ClinicalCategories(); + } + + /** + * Create an instance of {@link ClinicalT } + * + */ + public ClinicalT createClinicalT() { + return new ClinicalT(); + } + + /** + * Create an instance of {@link ClinicalN } + * + */ + public ClinicalN createClinicalN() { + return new ClinicalN(); + } + + /** + * Create an instance of {@link ClinicalM } + * + */ + public ClinicalM createClinicalM() { + return new ClinicalM(); + } + + /** + * Create an instance of {@link PathologicCategories } + * + */ + public PathologicCategories createPathologicCategories() { + return new PathologicCategories(); + } + + /** + * Create an instance of {@link PathologicT } + * + */ + public PathologicT createPathologicT() { + return new PathologicT(); + } + + /** + * Create an instance of {@link PathologicN } + * + */ + public PathologicN createPathologicN() { + return new PathologicN(); + } + + /** + * Create an instance of {@link PathologicM } + * + */ + public PathologicM createPathologicM() { + return new PathologicM(); + } + + /** + * Create an instance of {@link Psa } + * + */ + public Psa createPsa() { + return new Psa(); + } + + /** + * Create an instance of {@link PsaValue } + * + */ + public PsaValue createPsaValue() { + return new PsaValue(); + } + + /** + * Create an instance of {@link DayOfPsa } + * + */ + public DayOfPsa createDayOfPsa() { + return new DayOfPsa(); + } + + /** + * Create an instance of {@link MonthOfPsa } + * + */ + public MonthOfPsa createMonthOfPsa() { + return new MonthOfPsa(); + } + + /** + * Create an instance of {@link YearOfPsa } + * + */ + public YearOfPsa createYearOfPsa() { + return new YearOfPsa(); + } + + /** + * Create an instance of {@link DaysToPsa } + * + */ + public DaysToPsa createDaysToPsa() { + return new DaysToPsa(); + } + + /** + * Create an instance of {@link GleasonGrading } + * + */ + public GleasonGrading createGleasonGrading() { + return new GleasonGrading(); + } + + /** + * Create an instance of {@link GleasonScore } + * + */ + public GleasonScore createGleasonScore() { + return new GleasonScore(); + } + + /** + * Create an instance of {@link PrimaryPattern } + * + */ + public PrimaryPattern createPrimaryPattern() { + return new PrimaryPattern(); + } + + /** + * Create an instance of {@link SecondaryPattern } + * + */ + public SecondaryPattern createSecondaryPattern() { + return new SecondaryPattern(); + } + + /** + * Create an instance of {@link TertiaryPattern } + * + */ + public TertiaryPattern createTertiaryPattern() { + return new TertiaryPattern(); + } + + /** + * Create an instance of {@link AnnArbor } + * + */ + public AnnArbor createAnnArbor() { + return new AnnArbor(); + } + + /** + * Create an instance of {@link BSymptoms } + * + */ + public BSymptoms createBSymptoms() { + return new BSymptoms(); + } + + /** + * Create an instance of {@link ExtranodalInvolvement } + * + */ + public ExtranodalInvolvement createExtranodalInvolvement() { + return new ExtranodalInvolvement(); + } + + /** + * Create an instance of {@link SerumMarkers } + * + */ + public SerumMarkers createSerumMarkers() { + return new SerumMarkers(); + } + + /** + * Create an instance of {@link IgcccgStage } + * + */ + public IgcccgStage createIgcccgStage() { + return new IgcccgStage(); + } + + /** + * Create an instance of {@link MasaokaStage } + * + */ + public MasaokaStage createMasaokaStage() { + return new MasaokaStage(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link StageOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/clinical/shared/stage/2.7", name = "stage_other") + public JAXBElement createStageOther(StageOther value) { + return new JAXBElement(_StageOther_QNAME, StageOther.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicCategories.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicCategories.java new file mode 100644 index 0000000..577aec4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicCategories.java @@ -0,0 +1,127 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_T"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_N"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_M"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "pathologicT", + "pathologicN", + "pathologicM" +}) +@XmlRootElement(name = "pathologic_categories") +public class PathologicCategories { + + @XmlElement(name = "pathologic_T", required = true) + protected PathologicT pathologicT; + @XmlElement(name = "pathologic_N", required = true) + protected PathologicN pathologicN; + @XmlElement(name = "pathologic_M", required = true) + protected PathologicM pathologicM; + + /** + * Gets the value of the pathologicT property. + * + * @return + * possible object is + * {@link PathologicT } + * + */ + public PathologicT getPathologicT() { + return pathologicT; + } + + /** + * Sets the value of the pathologicT property. + * + * @param value + * allowed object is + * {@link PathologicT } + * + */ + public void setPathologicT(PathologicT value) { + this.pathologicT = value; + } + + /** + * Gets the value of the pathologicN property. + * + * @return + * possible object is + * {@link PathologicN } + * + */ + public PathologicN getPathologicN() { + return pathologicN; + } + + /** + * Sets the value of the pathologicN property. + * + * @param value + * allowed object is + * {@link PathologicN } + * + */ + public void setPathologicN(PathologicN value) { + this.pathologicN = value; + } + + /** + * Gets the value of the pathologicM property. + * + * @return + * possible object is + * {@link PathologicM } + * + */ + public PathologicM getPathologicM() { + return pathologicM; + } + + /** + * Sets the value of the pathologicM property. + * + * @param value + * allowed object is + * {@link PathologicM } + * + */ + public void setPathologicM(PathologicM value) { + this.pathologicM = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicM.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicM.java new file mode 100644 index 0000000..32e5f95 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicM.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_M_cde_type" default="3045439" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "pathologic_M") +public class PathologicM + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicN.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicN.java new file mode 100644 index 0000000..0350640 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicN.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_N_cde_type" default="3203106" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "pathologic_N") +public class PathologicN + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicStage.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicStage.java new file mode 100644 index 0000000..903ace9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicStage.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_stage_cde_type" default="3203222" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "pathologic_stage") +public class PathologicStage + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicT.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicT.java new file mode 100644 index 0000000..78ecc4b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PathologicT.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_T_cde_type" default="3045435" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "pathologic_T") +public class PathologicT + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PrimaryPattern.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PrimaryPattern.java new file mode 100644 index 0000000..e7de65b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PrimaryPattern.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2534617" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "primary_pattern") +public class PrimaryPattern { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2534617"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/Psa.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/Psa.java new file mode 100644 index 0000000..a7b569a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/Psa.java @@ -0,0 +1,187 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/stage/2.7}psa_value" minOccurs="0"/>
+ *         <choice minOccurs="0">
+ *           <sequence>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}day_of_psa"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}month_of_psa"/>
+ *             <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}year_of_psa"/>
+ *           </sequence>
+ *           <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}days_to_psa"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "psaValue", + "dayOfPsa", + "monthOfPsa", + "yearOfPsa", + "daysToPsa" +}) +@XmlRootElement(name = "psa") +public class Psa { + + @XmlElement(name = "psa_value") + protected PsaValue psaValue; + @XmlElement(name = "day_of_psa") + protected DayOfPsa dayOfPsa; + @XmlElement(name = "month_of_psa") + protected MonthOfPsa monthOfPsa; + @XmlElement(name = "year_of_psa") + protected YearOfPsa yearOfPsa; + @XmlElement(name = "days_to_psa") + protected DaysToPsa daysToPsa; + + /** + * Gets the value of the psaValue property. + * + * @return + * possible object is + * {@link PsaValue } + * + */ + public PsaValue getPsaValue() { + return psaValue; + } + + /** + * Sets the value of the psaValue property. + * + * @param value + * allowed object is + * {@link PsaValue } + * + */ + public void setPsaValue(PsaValue value) { + this.psaValue = value; + } + + /** + * Gets the value of the dayOfPsa property. + * + * @return + * possible object is + * {@link DayOfPsa } + * + */ + public DayOfPsa getDayOfPsa() { + return dayOfPsa; + } + + /** + * Sets the value of the dayOfPsa property. + * + * @param value + * allowed object is + * {@link DayOfPsa } + * + */ + public void setDayOfPsa(DayOfPsa value) { + this.dayOfPsa = value; + } + + /** + * Gets the value of the monthOfPsa property. + * + * @return + * possible object is + * {@link MonthOfPsa } + * + */ + public MonthOfPsa getMonthOfPsa() { + return monthOfPsa; + } + + /** + * Sets the value of the monthOfPsa property. + * + * @param value + * allowed object is + * {@link MonthOfPsa } + * + */ + public void setMonthOfPsa(MonthOfPsa value) { + this.monthOfPsa = value; + } + + /** + * Gets the value of the yearOfPsa property. + * + * @return + * possible object is + * {@link YearOfPsa } + * + */ + public YearOfPsa getYearOfPsa() { + return yearOfPsa; + } + + /** + * Sets the value of the yearOfPsa property. + * + * @param value + * allowed object is + * {@link YearOfPsa } + * + */ + public void setYearOfPsa(YearOfPsa value) { + this.yearOfPsa = value; + } + + /** + * Gets the value of the daysToPsa property. + * + * @return + * possible object is + * {@link DaysToPsa } + * + */ + public DaysToPsa getDaysToPsa() { + return daysToPsa; + } + + /** + * Sets the value of the daysToPsa property. + * + * @param value + * allowed object is + * {@link DaysToPsa } + * + */ + public void setDaysToPsa(DaysToPsa value) { + this.daysToPsa = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PsaValue.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PsaValue.java new file mode 100644 index 0000000..5e91989 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/PsaValue.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3351903" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "psa_value") +public class PsaValue + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SecondaryPattern.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SecondaryPattern.java new file mode 100644 index 0000000..db0cd36 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SecondaryPattern.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2534618" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "secondary_pattern") +public class SecondaryPattern { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2534618"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SerumMarkers.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SerumMarkers.java new file mode 100644 index 0000000..c97180b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SerumMarkers.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3901772" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "serum_markers") +public class SerumMarkers + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/StageEvent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/StageEvent.java new file mode 100644 index 0000000..b129bca --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/StageEvent.java @@ -0,0 +1,378 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/stage/2.7}system_version" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_stage" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_stage" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}stage_other" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}tnm_categories" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}psa" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}gleason_grading" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}ann_arbor" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}serum_markers" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}igcccg_stage" minOccurs="0"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}masaoka_stage" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="system" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}system_type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "systemVersion", + "clinicalStage", + "pathologicStage", + "stageOther", + "tnmCategories", + "psa", + "gleasonGrading", + "annArbor", + "serumMarkers", + "igcccgStage", + "masaokaStage" +}) +@XmlRootElement(name = "stage_event") +public class StageEvent { + + @XmlElement(name = "system_version") + protected SystemVersion systemVersion; + @XmlElement(name = "clinical_stage") + protected ClinicalStage clinicalStage; + @XmlElement(name = "pathologic_stage") + protected PathologicStage pathologicStage; + @XmlElement(name = "stage_other", nillable = true) + protected StageOther stageOther; + @XmlElement(name = "tnm_categories") + protected TnmCategories tnmCategories; + protected Psa psa; + @XmlElement(name = "gleason_grading") + protected GleasonGrading gleasonGrading; + @XmlElement(name = "ann_arbor") + protected AnnArbor annArbor; + @XmlElement(name = "serum_markers") + protected SerumMarkers serumMarkers; + @XmlElement(name = "igcccg_stage") + protected IgcccgStage igcccgStage; + @XmlElement(name = "masaoka_stage") + protected MasaokaStage masaokaStage; + @XmlAttribute(name = "system") + protected SystemType system; + + /** + * Gets the value of the systemVersion property. + * + * @return + * possible object is + * {@link SystemVersion } + * + */ + public SystemVersion getSystemVersion() { + return systemVersion; + } + + /** + * Sets the value of the systemVersion property. + * + * @param value + * allowed object is + * {@link SystemVersion } + * + */ + public void setSystemVersion(SystemVersion value) { + this.systemVersion = value; + } + + /** + * Gets the value of the clinicalStage property. + * + * @return + * possible object is + * {@link ClinicalStage } + * + */ + public ClinicalStage getClinicalStage() { + return clinicalStage; + } + + /** + * Sets the value of the clinicalStage property. + * + * @param value + * allowed object is + * {@link ClinicalStage } + * + */ + public void setClinicalStage(ClinicalStage value) { + this.clinicalStage = value; + } + + /** + * Gets the value of the pathologicStage property. + * + * @return + * possible object is + * {@link PathologicStage } + * + */ + public PathologicStage getPathologicStage() { + return pathologicStage; + } + + /** + * Sets the value of the pathologicStage property. + * + * @param value + * allowed object is + * {@link PathologicStage } + * + */ + public void setPathologicStage(PathologicStage value) { + this.pathologicStage = value; + } + + /** + * Gets the value of the stageOther property. + * + * @return + * possible object is + * {@link StageOther } + * + */ + public StageOther getStageOther() { + return stageOther; + } + + /** + * Sets the value of the stageOther property. + * + * @param value + * allowed object is + * {@link StageOther } + * + */ + public void setStageOther(StageOther value) { + this.stageOther = value; + } + + /** + * Gets the value of the tnmCategories property. + * + * @return + * possible object is + * {@link TnmCategories } + * + */ + public TnmCategories getTnmCategories() { + return tnmCategories; + } + + /** + * Sets the value of the tnmCategories property. + * + * @param value + * allowed object is + * {@link TnmCategories } + * + */ + public void setTnmCategories(TnmCategories value) { + this.tnmCategories = value; + } + + /** + * Gets the value of the psa property. + * + * @return + * possible object is + * {@link Psa } + * + */ + public Psa getPsa() { + return psa; + } + + /** + * Sets the value of the psa property. + * + * @param value + * allowed object is + * {@link Psa } + * + */ + public void setPsa(Psa value) { + this.psa = value; + } + + /** + * Gets the value of the gleasonGrading property. + * + * @return + * possible object is + * {@link GleasonGrading } + * + */ + public GleasonGrading getGleasonGrading() { + return gleasonGrading; + } + + /** + * Sets the value of the gleasonGrading property. + * + * @param value + * allowed object is + * {@link GleasonGrading } + * + */ + public void setGleasonGrading(GleasonGrading value) { + this.gleasonGrading = value; + } + + /** + * Gets the value of the annArbor property. + * + * @return + * possible object is + * {@link AnnArbor } + * + */ + public AnnArbor getAnnArbor() { + return annArbor; + } + + /** + * Sets the value of the annArbor property. + * + * @param value + * allowed object is + * {@link AnnArbor } + * + */ + public void setAnnArbor(AnnArbor value) { + this.annArbor = value; + } + + /** + * Gets the value of the serumMarkers property. + * + * @return + * possible object is + * {@link SerumMarkers } + * + */ + public SerumMarkers getSerumMarkers() { + return serumMarkers; + } + + /** + * Sets the value of the serumMarkers property. + * + * @param value + * allowed object is + * {@link SerumMarkers } + * + */ + public void setSerumMarkers(SerumMarkers value) { + this.serumMarkers = value; + } + + /** + * Gets the value of the igcccgStage property. + * + * @return + * possible object is + * {@link IgcccgStage } + * + */ + public IgcccgStage getIgcccgStage() { + return igcccgStage; + } + + /** + * Sets the value of the igcccgStage property. + * + * @param value + * allowed object is + * {@link IgcccgStage } + * + */ + public void setIgcccgStage(IgcccgStage value) { + this.igcccgStage = value; + } + + /** + * Gets the value of the masaokaStage property. + * + * @return + * possible object is + * {@link MasaokaStage } + * + */ + public MasaokaStage getMasaokaStage() { + return masaokaStage; + } + + /** + * Sets the value of the masaokaStage property. + * + * @param value + * allowed object is + * {@link MasaokaStage } + * + */ + public void setMasaokaStage(MasaokaStage value) { + this.masaokaStage = value; + } + + /** + * Gets the value of the system property. + * + * @return + * possible object is + * {@link SystemType } + * + */ + public SystemType getSystem() { + return system; + } + + /** + * Sets the value of the system property. + * + * @param value + * allowed object is + * {@link SystemType } + * + */ + public void setSystem(SystemType value) { + this.system = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/StageOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/StageOther.java new file mode 100644 index 0000000..5231623 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/StageOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2007104" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class StageOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2007104"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SystemType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SystemType.java new file mode 100644 index 0000000..619f3db --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SystemType.java @@ -0,0 +1,51 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlEnum; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for system_type. + * + *

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

+ *

+ * <simpleType name="system_type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="FIGO"/>
+ *     <enumeration value="AJCC"/>
+ *     <enumeration value="ANN_ARBOR"/>
+ *     <enumeration value="ENSAT"/>
+ *     <enumeration value="MASAOKA"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "system_type") +@XmlEnum +public enum SystemType { + + FIGO, + AJCC, + ANN_ARBOR, + ENSAT, + MASAOKA; + + public String value() { + return name(); + } + + public static SystemType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SystemVersion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SystemVersion.java new file mode 100644 index 0000000..44d6618 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/SystemVersion.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}system_version_cde_type" default="2722309" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "system_version") +public class SystemVersion + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/TertiaryPattern.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/TertiaryPattern.java new file mode 100644 index 0000000..a32442b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/TertiaryPattern.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2783875" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "tertiary_pattern") +public class TertiaryPattern { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2783875"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/TnmCategories.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/TnmCategories.java new file mode 100644 index 0000000..1cbd4d4 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/TnmCategories.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/clinical/shared/stage/2.7}clinical_categories"/>
+ *         <element ref="{http://tcga.nci/bcr/xml/clinical/shared/stage/2.7}pathologic_categories"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "clinicalCategories", + "pathologicCategories" +}) +@XmlRootElement(name = "tnm_categories") +public class TnmCategories { + + @XmlElement(name = "clinical_categories", required = true) + protected ClinicalCategories clinicalCategories; + @XmlElement(name = "pathologic_categories", required = true) + protected PathologicCategories pathologicCategories; + + /** + * Gets the value of the clinicalCategories property. + * + * @return + * possible object is + * {@link ClinicalCategories } + * + */ + public ClinicalCategories getClinicalCategories() { + return clinicalCategories; + } + + /** + * Sets the value of the clinicalCategories property. + * + * @param value + * allowed object is + * {@link ClinicalCategories } + * + */ + public void setClinicalCategories(ClinicalCategories value) { + this.clinicalCategories = value; + } + + /** + * Gets the value of the pathologicCategories property. + * + * @return + * possible object is + * {@link PathologicCategories } + * + */ + public PathologicCategories getPathologicCategories() { + return pathologicCategories; + } + + /** + * Sets the value of the pathologicCategories property. + * + * @param value + * allowed object is + * {@link PathologicCategories } + * + */ + public void setPathologicCategories(PathologicCategories value) { + this.pathologicCategories = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/YearOfPsa.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/YearOfPsa.java new file mode 100644 index 0000000..3d0b3b8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/YearOfPsa.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3351902" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_psa") +public class YearOfPsa { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3351902"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/package-info.java new file mode 100644 index 0000000..7a7af46 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/clinical/shared/stage/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/clinical/shared/stage/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/AdenocarcinomaInvasion.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/AdenocarcinomaInvasion.java new file mode 100644 index 0000000..9d940f6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/AdenocarcinomaInvasion.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3027106" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="4.6" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "adenocarcinoma_invasion") +public class AdenocarcinomaInvasion { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3027106"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "4.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrPatientBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrPatientBarcode.java new file mode 100644 index 0000000..3a0cb80 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrPatientBarcode.java @@ -0,0 +1,362 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2003301" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_patient_barcode") +public class BcrPatientBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2003301"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrPatientUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrPatientUuid.java new file mode 100644 index 0000000..faef1b7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrPatientUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_patient_uuid") +public class BcrPatientUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrSlideBarcode.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrSlideBarcode.java new file mode 100644 index 0000000..c676d94 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrSlideBarcode.java @@ -0,0 +1,362 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +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 anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>NCName">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_slide_barcode") +public class BcrSlideBarcode { + + @XmlValue + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "NCName") + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "1.8"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrSlideUuid.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrSlideUuid.java new file mode 100644 index 0000000..cb4561c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/BcrSlideUuid.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "bcr_slide_uuid") +public class BcrSlideUuid { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Comment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Comment.java new file mode 100644 index 0000000..806534c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Comment.java @@ -0,0 +1,355 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="797" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Comment { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "797"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.7"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ConsentOrDeathStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ConsentOrDeathStatus.java new file mode 100644 index 0000000..38563c6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ConsentOrDeathStatus.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3288361" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "consent_or_death_status") +public class ConsentOrDeathStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Country.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Country.java new file mode 100644 index 0000000..f9742d0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Country.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3203072" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class Country { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3203072"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DayOfConsent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DayOfConsent.java new file mode 100644 index 0000000..19119b3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DayOfConsent.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3081957" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_consent") +public class DayOfConsent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3081957"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DayOfSampleProcurement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DayOfSampleProcurement.java new file mode 100644 index 0000000..acb04a9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DayOfSampleProcurement.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_day">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008195" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "day_of_sample_procurement") +public class DayOfSampleProcurement { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3008195"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DaysToConsent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DaysToConsent.java new file mode 100644 index 0000000..bc85179 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DaysToConsent.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3288498" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_consent") +public class DaysToConsent + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DaysToSampleProcurement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DaysToSampleProcurement.java new file mode 100644 index 0000000..0b14183 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DaysToSampleProcurement.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3288495" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "days_to_sample_procurement") +public class DaysToSampleProcurement + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DrugTxIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DrugTxIndicator.java new file mode 100644 index 0000000..2b8e7db --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/DrugTxIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3178327" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class DrugTxIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3178327"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/EberIshResult.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/EberIshResult.java new file mode 100644 index 0000000..78933c6 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/EberIshResult.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3536327" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "eber_ish_result") +public class EberIshResult + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/FollicularPercent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/FollicularPercent.java new file mode 100644 index 0000000..577554b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/FollicularPercent.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3232840" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class FollicularPercent + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Gender.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Gender.java new file mode 100644 index 0000000..89da061 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Gender.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2200604" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="1.8" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "gender") +public class Gender + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityMethod.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityMethod.java new file mode 100644 index 0000000..4fdfdf5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityMethod.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3234684" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "genetic_abnormality_method") +public class GeneticAbnormalityMethod + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityMethodOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityMethodOther.java new file mode 100644 index 0000000..c643f31 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityMethodOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4459355" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "genetic_abnormality_method_other") +public class GeneticAbnormalityMethodOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4459355"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityResults.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityResults.java new file mode 100644 index 0000000..c2735c2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityResults.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3234680" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "genetic_abnormality_results") +public class GeneticAbnormalityResults + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityResultsOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityResultsOther.java new file mode 100644 index 0000000..2832e8e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityResultsOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="4459354" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "genetic_abnormality_results_other") +public class GeneticAbnormalityResultsOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "4459354"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityTested.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityTested.java new file mode 100644 index 0000000..2186b35 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityTested.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3234675" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "genetic_abnormality_tested") +public class GeneticAbnormalityTested + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityTestedOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityTestedOther.java new file mode 100644 index 0000000..2120938 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GeneticAbnormalityTestedOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3234685" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "genetic_abnormality_tested_other") +public class GeneticAbnormalityTestedOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3234685"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GermlineTestingPerformed.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GermlineTestingPerformed.java new file mode 100644 index 0000000..295b387 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/GermlineTestingPerformed.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3121565" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class GermlineTestingPerformed { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3121565"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalPercentage.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalPercentage.java new file mode 100644 index 0000000..8fe2c07 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalPercentage.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>integer_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3729998" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "histological_percentage") +public class HistologicalPercentage { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3729998"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalType.java new file mode 100644 index 0000000..ec5b88b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalType.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3081934" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class HistologicalType + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalTypeOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalTypeOther.java new file mode 100644 index 0000000..35a6fd0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistologicalTypeOther.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3124492" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class HistologicalTypeOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3124492"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistoryOfNeoadjuvantTreatment.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistoryOfNeoadjuvantTreatment.java new file mode 100644 index 0000000..9b5e986 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HistoryOfNeoadjuvantTreatment.java @@ -0,0 +1,46 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3382737" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "history_of_neoadjuvant_treatment") +public class HistoryOfNeoadjuvantTreatment + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HivStatus.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HivStatus.java new file mode 100644 index 0000000..da3c132 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/HivStatus.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2180464" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class HivStatus + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImageFileName.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImageFileName.java new file mode 100644 index 0000000..c979fb3 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImageFileName.java @@ -0,0 +1,41 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class ImageFileName + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisMethod.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisMethod.java new file mode 100644 index 0000000..401ade1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisMethod.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="64540" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "immunophenotypic_analysis_method") +public class ImmunophenotypicAnalysisMethod + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisResults.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisResults.java new file mode 100644 index 0000000..da262f9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisResults.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3234626" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "immunophenotypic_analysis_results") +public class ImmunophenotypicAnalysisResults + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisTested.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisTested.java new file mode 100644 index 0000000..4619345 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisTested.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3234614" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "immunophenotypic_analysis_tested") +public class ImmunophenotypicAnalysisTested + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisTestedOther.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisTestedOther.java new file mode 100644 index 0000000..1f2156c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ImmunophenotypicAnalysisTestedOther.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2516429" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "immunophenotypic_analysis_tested_other") +public class ImmunophenotypicAnalysisTestedOther { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2516429"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MaximumTumorDimension.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MaximumTumorDimension.java new file mode 100644 index 0000000..1394a12 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MaximumTumorDimension.java @@ -0,0 +1,417 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="64215" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="cm" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MaximumTumorDimension { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "64215"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "cm"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MetastaticDiagnosis.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MetastaticDiagnosis.java new file mode 100644 index 0000000..ae98abb --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MetastaticDiagnosis.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="65384" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class MetastaticDiagnosis { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "65384"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MethodOfSampleProcurement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MethodOfSampleProcurement.java new file mode 100644 index 0000000..a874749 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MethodOfSampleProcurement.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3103514" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "method_of_sample_procurement") +public class MethodOfSampleProcurement + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MonthOfConsent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MonthOfConsent.java new file mode 100644 index 0000000..681eccc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MonthOfConsent.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3081955" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_consent") +public class MonthOfConsent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3081955"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MonthOfSampleProcurement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MonthOfSampleProcurement.java new file mode 100644 index 0000000..acaf6b9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/MonthOfSampleProcurement.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_month">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008197" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "month_of_sample_procurement") +public class MonthOfSampleProcurement { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3008197"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/NeoplasmHistologicGrade.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/NeoplasmHistologicGrade.java new file mode 100644 index 0000000..b8a9516 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/NeoplasmHistologicGrade.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2785839" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class NeoplasmHistologicGrade + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Note.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Note.java new file mode 100644 index 0000000..589ee82 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Note.java @@ -0,0 +1,71 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}note_text"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "noteText" +}) +@XmlRootElement(name = "note") +public class Note { + + @XmlElement(name = "note_text", required = true, nillable = true) + protected NoteText noteText; + + /** + * Gets the value of the noteText property. + * + * @return + * possible object is + * {@link NoteText } + * + */ + public NoteText getNoteText() { + return noteText; + } + + /** + * Sets the value of the noteText property. + * + * @param value + * allowed object is + * {@link NoteText } + * + */ + public void setNoteText(NoteText value) { + this.noteText = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/NoteText.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/NoteText.java new file mode 100644 index 0000000..6c8db9e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/NoteText.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class NoteText + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Notes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Notes.java new file mode 100644 index 0000000..5f9ec20 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/Notes.java @@ -0,0 +1,78 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

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://tcga.nci/bcr/xml/shared/2.7}note" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "note" +}) +@XmlRootElement(name = "notes") +public class Notes { + + @XmlElement(required = true) + protected List note; + + /** + * Gets the value of the note 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 note property. + * + *

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

+     *    getNote().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Note } + * + * + */ + public List getNote() { + if (note == null) { + note = new ArrayList(); + } + return this.note; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ObjectFactory.java new file mode 100644 index 0000000..011f2b7 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/ObjectFactory.java @@ -0,0 +1,690 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2 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 _ImageFileName_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "image_file_name"); + private final static QName _MaximumTumorDimension_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "maximum_tumor_dimension"); + private final static QName _HivStatus_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "hiv_status"); + private final static QName _TumorMorphologyPercentage_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "tumor_morphology_percentage"); + private final static QName _GermlineTestingPerformed_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "germline_testing_performed"); + private final static QName _TobaccoSmokingHistory_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "tobacco_smoking_history"); + private final static QName _Country_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "country"); + private final static QName _TumorNucleiPercent_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "tumor_nuclei_percent"); + private final static QName _HistologicalType_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "histological_type"); + private final static QName _Comment_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "comment"); + private final static QName _NoteText_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "note_text"); + private final static QName _OtherMethodOfSampleProcurement_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "other_method_of_sample_procurement"); + private final static QName _HistologicalTypeOther_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "histological_type_other"); + private final static QName _NeoplasmHistologicGrade_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "neoplasm_histologic_grade"); + private final static QName _TumorNecrosisPercent_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "tumor_necrosis_percent"); + private final static QName _OtherDxSite_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "other_dx_site"); + private final static QName _MetastaticDiagnosis_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "metastatic_diagnosis"); + private final static QName _DrugTxIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "drug_tx_indicator"); + private final static QName _SurgeryIndicator_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "surgery_indicator"); + private final static QName _FollicularPercent_QNAME = new QName("http://tcga.nci/bcr/xml/shared/2.7", "follicular_percent"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link HistologicalType } + * + */ + public HistologicalType createHistologicalType() { + return new HistologicalType(); + } + + /** + * Create an instance of {@link OtherDx } + * + */ + public OtherDx createOtherDx() { + return new OtherDx(); + } + + /** + * Create an instance of {@link Gender } + * + */ + public Gender createGender() { + return new Gender(); + } + + /** + * Create an instance of {@link BcrPatientBarcode } + * + */ + public BcrPatientBarcode createBcrPatientBarcode() { + return new BcrPatientBarcode(); + } + + /** + * Create an instance of {@link TissueSourceSite } + * + */ + public TissueSourceSite createTissueSourceSite() { + return new TissueSourceSite(); + } + + /** + * Create an instance of {@link PatientId } + * + */ + public PatientId createPatientId() { + return new PatientId(); + } + + /** + * Create an instance of {@link BcrPatientUuid } + * + */ + public BcrPatientUuid createBcrPatientUuid() { + return new BcrPatientUuid(); + } + + /** + * Create an instance of {@link HistoryOfNeoadjuvantTreatment } + * + */ + public HistoryOfNeoadjuvantTreatment createHistoryOfNeoadjuvantTreatment() { + return new HistoryOfNeoadjuvantTreatment(); + } + + /** + * Create an instance of {@link NeoplasmHistologicGrade } + * + */ + public NeoplasmHistologicGrade createNeoplasmHistologicGrade() { + return new NeoplasmHistologicGrade(); + } + + /** + * Create an instance of {@link TobaccoSmokingHistory } + * + */ + public TobaccoSmokingHistory createTobaccoSmokingHistory() { + return new TobaccoSmokingHistory(); + } + + /** + * Create an instance of {@link Country } + * + */ + public Country createCountry() { + return new Country(); + } + + /** + * Create an instance of {@link Notes } + * + */ + public Notes createNotes() { + return new Notes(); + } + + /** + * Create an instance of {@link Note } + * + */ + public Note createNote() { + return new Note(); + } + + /** + * Create an instance of {@link NoteText } + * + */ + public NoteText createNoteText() { + return new NoteText(); + } + + /** + * Create an instance of {@link MonthOfConsent } + * + */ + public MonthOfConsent createMonthOfConsent() { + return new MonthOfConsent(); + } + + /** + * Create an instance of {@link GeneticAbnormalityResultsOther } + * + */ + public GeneticAbnormalityResultsOther createGeneticAbnormalityResultsOther() { + return new GeneticAbnormalityResultsOther(); + } + + /** + * Create an instance of {@link MaximumTumorDimension } + * + */ + public MaximumTumorDimension createMaximumTumorDimension() { + return new MaximumTumorDimension(); + } + + /** + * Create an instance of {@link GeneticAbnormalityTestedOther } + * + */ + public GeneticAbnormalityTestedOther createGeneticAbnormalityTestedOther() { + return new GeneticAbnormalityTestedOther(); + } + + /** + * Create an instance of {@link TumorNecrosisPercent } + * + */ + public TumorNecrosisPercent createTumorNecrosisPercent() { + return new TumorNecrosisPercent(); + } + + /** + * Create an instance of {@link ConsentOrDeathStatus } + * + */ + public ConsentOrDeathStatus createConsentOrDeathStatus() { + return new ConsentOrDeathStatus(); + } + + /** + * Create an instance of {@link ImageFileName } + * + */ + public ImageFileName createImageFileName() { + return new ImageFileName(); + } + + /** + * Create an instance of {@link ImmunophenotypicAnalysisResults } + * + */ + public ImmunophenotypicAnalysisResults createImmunophenotypicAnalysisResults() { + return new ImmunophenotypicAnalysisResults(); + } + + /** + * Create an instance of {@link GeneticAbnormalityMethod } + * + */ + public GeneticAbnormalityMethod createGeneticAbnormalityMethod() { + return new GeneticAbnormalityMethod(); + } + + /** + * Create an instance of {@link DrugTxIndicator } + * + */ + public DrugTxIndicator createDrugTxIndicator() { + return new DrugTxIndicator(); + } + + /** + * Create an instance of {@link DaysToConsent } + * + */ + public DaysToConsent createDaysToConsent() { + return new DaysToConsent(); + } + + /** + * Create an instance of {@link AdenocarcinomaInvasion } + * + */ + public AdenocarcinomaInvasion createAdenocarcinomaInvasion() { + return new AdenocarcinomaInvasion(); + } + + /** + * Create an instance of {@link HivStatus } + * + */ + public HivStatus createHivStatus() { + return new HivStatus(); + } + + /** + * Create an instance of {@link TumorNucleiPercent } + * + */ + public TumorNucleiPercent createTumorNucleiPercent() { + return new TumorNucleiPercent(); + } + + /** + * Create an instance of {@link DayOfConsent } + * + */ + public DayOfConsent createDayOfConsent() { + return new DayOfConsent(); + } + + /** + * Create an instance of {@link DaysToSampleProcurement } + * + */ + public DaysToSampleProcurement createDaysToSampleProcurement() { + return new DaysToSampleProcurement(); + } + + /** + * Create an instance of {@link ImmunophenotypicAnalysisTested } + * + */ + public ImmunophenotypicAnalysisTested createImmunophenotypicAnalysisTested() { + return new ImmunophenotypicAnalysisTested(); + } + + /** + * Create an instance of {@link OtherDxSite } + * + */ + public OtherDxSite createOtherDxSite() { + return new OtherDxSite(); + } + + /** + * Create an instance of {@link MonthOfSampleProcurement } + * + */ + public MonthOfSampleProcurement createMonthOfSampleProcurement() { + return new MonthOfSampleProcurement(); + } + + /** + * Create an instance of {@link MetastaticDiagnosis } + * + */ + public MetastaticDiagnosis createMetastaticDiagnosis() { + return new MetastaticDiagnosis(); + } + + /** + * Create an instance of {@link GeneticAbnormalityResults } + * + */ + public GeneticAbnormalityResults createGeneticAbnormalityResults() { + return new GeneticAbnormalityResults(); + } + + /** + * Create an instance of {@link YearOfConsent } + * + */ + public YearOfConsent createYearOfConsent() { + return new YearOfConsent(); + } + + /** + * Create an instance of {@link RnaIntegrity } + * + */ + public RnaIntegrity createRnaIntegrity() { + return new RnaIntegrity(); + } + + /** + * Create an instance of {@link BcrSlideUuid } + * + */ + public BcrSlideUuid createBcrSlideUuid() { + return new BcrSlideUuid(); + } + + /** + * Create an instance of {@link HistologicalPercentage } + * + */ + public HistologicalPercentage createHistologicalPercentage() { + return new HistologicalPercentage(); + } + + /** + * Create an instance of {@link YearOfSampleProcurement } + * + */ + public YearOfSampleProcurement createYearOfSampleProcurement() { + return new YearOfSampleProcurement(); + } + + /** + * Create an instance of {@link TumorMorphologyPercentage } + * + */ + public TumorMorphologyPercentage createTumorMorphologyPercentage() { + return new TumorMorphologyPercentage(); + } + + /** + * Create an instance of {@link MethodOfSampleProcurement } + * + */ + public MethodOfSampleProcurement createMethodOfSampleProcurement() { + return new MethodOfSampleProcurement(); + } + + /** + * Create an instance of {@link GeneticAbnormalityTested } + * + */ + public GeneticAbnormalityTested createGeneticAbnormalityTested() { + return new GeneticAbnormalityTested(); + } + + /** + * Create an instance of {@link PleurodesisPerformed } + * + */ + public PleurodesisPerformed createPleurodesisPerformed() { + return new PleurodesisPerformed(); + } + + /** + * Create an instance of {@link HistologicalTypeOther } + * + */ + public HistologicalTypeOther createHistologicalTypeOther() { + return new HistologicalTypeOther(); + } + + /** + * Create an instance of {@link DayOfSampleProcurement } + * + */ + public DayOfSampleProcurement createDayOfSampleProcurement() { + return new DayOfSampleProcurement(); + } + + /** + * Create an instance of {@link SurgeryIndicator } + * + */ + public SurgeryIndicator createSurgeryIndicator() { + return new SurgeryIndicator(); + } + + /** + * Create an instance of {@link GeneticAbnormalityMethodOther } + * + */ + public GeneticAbnormalityMethodOther createGeneticAbnormalityMethodOther() { + return new GeneticAbnormalityMethodOther(); + } + + /** + * Create an instance of {@link FollicularPercent } + * + */ + public FollicularPercent createFollicularPercent() { + return new FollicularPercent(); + } + + /** + * Create an instance of {@link GermlineTestingPerformed } + * + */ + public GermlineTestingPerformed createGermlineTestingPerformed() { + return new GermlineTestingPerformed(); + } + + /** + * Create an instance of {@link EberIshResult } + * + */ + public EberIshResult createEberIshResult() { + return new EberIshResult(); + } + + /** + * Create an instance of {@link BcrSlideBarcode } + * + */ + public BcrSlideBarcode createBcrSlideBarcode() { + return new BcrSlideBarcode(); + } + + /** + * Create an instance of {@link ImmunophenotypicAnalysisTestedOther } + * + */ + public ImmunophenotypicAnalysisTestedOther createImmunophenotypicAnalysisTestedOther() { + return new ImmunophenotypicAnalysisTestedOther(); + } + + /** + * Create an instance of {@link OtherMethodOfSampleProcurement } + * + */ + public OtherMethodOfSampleProcurement createOtherMethodOfSampleProcurement() { + return new OtherMethodOfSampleProcurement(); + } + + /** + * Create an instance of {@link ImmunophenotypicAnalysisMethod } + * + */ + public ImmunophenotypicAnalysisMethod createImmunophenotypicAnalysisMethod() { + return new ImmunophenotypicAnalysisMethod(); + } + + /** + * Create an instance of {@link Comment } + * + */ + public Comment createComment() { + return new Comment(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ImageFileName }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "image_file_name") + public JAXBElement createImageFileName(ImageFileName value) { + return new JAXBElement(_ImageFileName_QNAME, ImageFileName.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MaximumTumorDimension }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "maximum_tumor_dimension") + public JAXBElement createMaximumTumorDimension(MaximumTumorDimension value) { + return new JAXBElement(_MaximumTumorDimension_QNAME, MaximumTumorDimension.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HivStatus }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "hiv_status") + public JAXBElement createHivStatus(HivStatus value) { + return new JAXBElement(_HivStatus_QNAME, HivStatus.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TumorMorphologyPercentage }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "tumor_morphology_percentage") + public JAXBElement createTumorMorphologyPercentage(TumorMorphologyPercentage value) { + return new JAXBElement(_TumorMorphologyPercentage_QNAME, TumorMorphologyPercentage.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GermlineTestingPerformed }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "germline_testing_performed") + public JAXBElement createGermlineTestingPerformed(GermlineTestingPerformed value) { + return new JAXBElement(_GermlineTestingPerformed_QNAME, GermlineTestingPerformed.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TobaccoSmokingHistory }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "tobacco_smoking_history") + public JAXBElement createTobaccoSmokingHistory(TobaccoSmokingHistory value) { + return new JAXBElement(_TobaccoSmokingHistory_QNAME, TobaccoSmokingHistory.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Country }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "country") + public JAXBElement createCountry(Country value) { + return new JAXBElement(_Country_QNAME, Country.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TumorNucleiPercent }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "tumor_nuclei_percent", defaultValue = "") + public JAXBElement createTumorNucleiPercent(TumorNucleiPercent value) { + return new JAXBElement(_TumorNucleiPercent_QNAME, TumorNucleiPercent.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistologicalType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "histological_type") + public JAXBElement createHistologicalType(HistologicalType value) { + return new JAXBElement(_HistologicalType_QNAME, HistologicalType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Comment }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "comment") + public JAXBElement createComment(Comment value) { + return new JAXBElement(_Comment_QNAME, Comment.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NoteText }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "note_text") + public JAXBElement createNoteText(NoteText value) { + return new JAXBElement(_NoteText_QNAME, NoteText.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherMethodOfSampleProcurement }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "other_method_of_sample_procurement", defaultValue = "") + public JAXBElement createOtherMethodOfSampleProcurement(OtherMethodOfSampleProcurement value) { + return new JAXBElement(_OtherMethodOfSampleProcurement_QNAME, OtherMethodOfSampleProcurement.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HistologicalTypeOther }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "histological_type_other") + public JAXBElement createHistologicalTypeOther(HistologicalTypeOther value) { + return new JAXBElement(_HistologicalTypeOther_QNAME, HistologicalTypeOther.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NeoplasmHistologicGrade }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "neoplasm_histologic_grade") + public JAXBElement createNeoplasmHistologicGrade(NeoplasmHistologicGrade value) { + return new JAXBElement(_NeoplasmHistologicGrade_QNAME, NeoplasmHistologicGrade.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TumorNecrosisPercent }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "tumor_necrosis_percent") + public JAXBElement createTumorNecrosisPercent(TumorNecrosisPercent value) { + return new JAXBElement(_TumorNecrosisPercent_QNAME, TumorNecrosisPercent.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OtherDxSite }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "other_dx_site", defaultValue = "") + public JAXBElement createOtherDxSite(OtherDxSite value) { + return new JAXBElement(_OtherDxSite_QNAME, OtherDxSite.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetastaticDiagnosis }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "metastatic_diagnosis") + public JAXBElement createMetastaticDiagnosis(MetastaticDiagnosis value) { + return new JAXBElement(_MetastaticDiagnosis_QNAME, MetastaticDiagnosis.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DrugTxIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "drug_tx_indicator") + public JAXBElement createDrugTxIndicator(DrugTxIndicator value) { + return new JAXBElement(_DrugTxIndicator_QNAME, DrugTxIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SurgeryIndicator }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "surgery_indicator") + public JAXBElement createSurgeryIndicator(SurgeryIndicator value) { + return new JAXBElement(_SurgeryIndicator_QNAME, SurgeryIndicator.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link FollicularPercent }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://tcga.nci/bcr/xml/shared/2.7", name = "follicular_percent") + public JAXBElement createFollicularPercent(FollicularPercent value) { + return new JAXBElement(_FollicularPercent_QNAME, FollicularPercent.class, null, value); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherDx.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherDx.java new file mode 100644 index 0000000..bbfdf80 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherDx.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3382736" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "other_dx") +public class OtherDx + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherDxSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherDxSite.java new file mode 100644 index 0000000..bcbed51 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherDxSite.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2179736" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class OtherDxSite + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherMethodOfSampleProcurement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherMethodOfSampleProcurement.java new file mode 100644 index 0000000..37ef8b2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/OtherMethodOfSampleProcurement.java @@ -0,0 +1,42 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2006730" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class OtherMethodOfSampleProcurement + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/PatientId.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/PatientId.java new file mode 100644 index 0000000..3c4dc80 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/PatientId.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "patient_id") +public class PatientId + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/PleurodesisPerformed.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/PleurodesisPerformed.java new file mode 100644 index 0000000..586728d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/PleurodesisPerformed.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3646078" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "pleurodesis_performed") +public class PleurodesisPerformed { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3646078"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/RnaIntegrity.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/RnaIntegrity.java new file mode 100644 index 0000000..30a51f0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/RnaIntegrity.java @@ -0,0 +1,45 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="5438395" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.7" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "rna_integrity") +public class RnaIntegrity + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/SurgeryIndicator.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/SurgeryIndicator.java new file mode 100644 index 0000000..64dca3c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/SurgeryIndicator.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>yes_or_no">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3186538" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class SurgeryIndicator { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3186538"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.6"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TissueSourceSite.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TissueSourceSite.java new file mode 100644 index 0000000..62c5502 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TissueSourceSite.java @@ -0,0 +1,44 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.CommonResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>common_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.4" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "tissue_source_site") +public class TissueSourceSite + extends CommonResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TobaccoSmokingHistory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TobaccoSmokingHistory.java new file mode 100644 index 0000000..1510df2 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TobaccoSmokingHistory.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2181650" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.2" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class TobaccoSmokingHistory + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorMorphologyPercentage.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorMorphologyPercentage.java new file mode 100644 index 0000000..e615d90 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorMorphologyPercentage.java @@ -0,0 +1,43 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2.ClinicalResAttributes; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <restriction base="<http://tcga.nci/bcr/xml/utility/2.7>clinical_res_attributes">
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3729984" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.6" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +public class TumorMorphologyPercentage + extends ClinicalResAttributes +{ + + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorNecrosisPercent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorNecrosisPercent.java new file mode 100644 index 0000000..286cde5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorNecrosisPercent.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2841237" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="percent" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class TumorNecrosisPercent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2841237"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "percent"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorNucleiPercent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorNucleiPercent.java new file mode 100644 index 0000000..3aec997 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/TumorNucleiPercent.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>number_or_null">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="2841225" />
+ *       <attribute name="units" type="{http://www.w3.org/2001/XMLSchema}string" fixed="percent" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +public class TumorNucleiPercent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "units") + protected String units; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "2841225"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return "percent"; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/YearOfConsent.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/YearOfConsent.java new file mode 100644 index 0000000..bfaf714 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/YearOfConsent.java @@ -0,0 +1,388 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3081959" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.5" />
+ *       <attribute name="tier" type="{http://www.w3.org/2001/XMLSchema}string" default="2" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_consent") +public class YearOfConsent { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3081959"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.5"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return "2"; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/YearOfSampleProcurement.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/YearOfSampleProcurement.java new file mode 100644 index 0000000..7aa46e0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/YearOfSampleProcurement.java @@ -0,0 +1,357 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://tcga.nci/bcr/xml/utility/2.7>generic_year">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_ext_attribute_group"/>
+ *       <attribute name="cde" type="{http://www.w3.org/2001/XMLSchema}string" default="3008199" />
+ *       <attribute name="xsd_ver" type="{http://www.w3.org/2001/XMLSchema}string" default="2.3" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "value" +}) +@XmlRootElement(name = "year_of_sample_procurement") +public class YearOfSampleProcurement { + + @XmlValue + protected String value; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + + /** + * 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 cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return "3008199"; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return "2.3"; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/package-info.java new file mode 100644 index 0000000..94c18f5 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/shared/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/shared/2.7", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/AltIdType.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/AltIdType.java new file mode 100644 index 0000000..2e7a14b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/AltIdType.java @@ -0,0 +1,61 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2; + +import javax.xml.bind.annotation.XmlEnum; +import javax.xml.bind.annotation.XmlEnumValue; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for alt_id_type. + * + *

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

+ *

+ * <simpleType name="alt_id_type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="Aurora Sample Identifier"/>
+ *     <enumeration value="ER Review Panel ID"/>
+ *     <enumeration value="PPTC Subject Identifier"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "alt_id_type") +@XmlEnum +public enum AltIdType { + + @XmlEnumValue("Aurora Sample Identifier") + AURORA_SAMPLE_IDENTIFIER("Aurora Sample Identifier"), + @XmlEnumValue("ER Review Panel ID") + ER_REVIEW_PANEL_ID("ER Review Panel ID"), + @XmlEnumValue("PPTC Subject Identifier") + PPTC_SUBJECT_IDENTIFIER("PPTC Subject Identifier"); + private final String value; + + AltIdType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static AltIdType fromValue(String v) { + for (AltIdType c: AltIdType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/ClinicalResAttributes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/ClinicalResAttributes.java new file mode 100644 index 0000000..bc93a2e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/ClinicalResAttributes.java @@ -0,0 +1,826 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2; + +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.XmlSeeAlso; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2.DaysToDrugTherapyEnd; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2.DaysToDrugTherapyStart; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2.RouteOfAdministration; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2.StemCellTransplantationType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2.TherapyType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.pharmaceutical._2.TherapyTypeNotes; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.AnatomicTreatmentSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.DaysToRadiationTherapyEnd; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.DaysToRadiationTherapyStart; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.Numfractions; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.PriorRadiationTypeMetastasis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.RadiationDosage; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.RadiationDosageMetastasis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.RadiationType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.radiation._2.Units; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AcetaminophenUseCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AdditionalTreatmentCompletionSuccessOutcome; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AgeAtInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AnatomicNeoplasmSubdivision; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AnatomicNeoplasmSubdivisionOther; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.AspirinUseCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BirthControlPillHistoryUsageCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BirthCountry; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.BloodRelativeWithCancer; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.CancerDiagnosisCancerTypeIcd9TextName; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Comorbidity; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.CountryOfOrigin; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.CtScanFindings; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.CytogeneticAbnormality; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToBirth; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToClinicalDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToDeath; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFirstCompleteResponse; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFirstPartialResponse; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFirstResponse; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToFormCompletion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToInitialPathologicDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToLastKnownAlive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToMostRecentDateOfLastContact; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToPatientProgressionFree; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToPerformanceStatusAssessment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToTreatmentEnd; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToTreatmentStart; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToTumorProgression; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.DaysToTumorRecurrence; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.EasternCancerOncologyGroup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ErDiseaseExtentPriorErTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ErResponseType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ErSolidTumorResponseDocumentedType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Ethnicity; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ExtranodalRadiationField; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.FamilyMemberRelationshipType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Field; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.FollowupCaseReportFormSubmissionReason; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.FollowupTreatmentSuccess; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Height; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.HighestEducationAchieved; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.HistoryPriorSurgeryType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Icd10; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.IcdO3Histology; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.IcdO3Site; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.InformedConsentVerified; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.InitialPathologicDiagnosisMethod; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.KarnofskyPerformanceScore; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Laterality; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MarginStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MaritalStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MeasureOfResponse; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MenopauseStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MetastaticSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MetastaticSiteAtDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MetforminUseCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MethodOfClinicalDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.MolecularAbnormalityResults; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.OtherTobaccoProductType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.OxygenUseType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PatientDeathReason; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PatientProgressionStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PatientSex; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PerformanceStatusScaleTiming; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PersonNeoplasmCancerStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PharmRegimen; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PhysicalExerciseDaysPerWeek; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PrimaryTherapyOutcomeSuccess; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PrimaryTherapyOutcomeSuccessAtFollowup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.PriorSystemicTherapyType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ProgressionDeterminedByNotes; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ProtocolStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Race; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RadiationTherapyTotalDosage; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RegimenIndication; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.RegimenIndicationNotes; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ResidualTumor; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.SmokingCessationDurationUnits; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.SmokingFrequency; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.SmokingTimeInDayBegins; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.SourceOfPatientDeathReason; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.StatinUseCategory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.StemCellTransplantation; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TargetedNodalRegion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TreatmentType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TumorResidualDisease; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TumorTissueSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.ViralHepatitisSerology; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.VitalStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.Weight; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.ErythrocyteSedimentationRateResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.HemoglobinResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.NumberOfLymphnodesPositive; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.PlateletQualitativeResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.SerumCalciumResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.WhiteCellCountResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryLocoregionalProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToAdditionalSurgeryMetastaticProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventAdditionalSurgeryProcedure; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventAfterInitialTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.DaysToNewTumorEventTransplant; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewEventTreatmentType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmConfirmedDiagnosisMethodName; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmEventOccurrenceAnatomicSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.NewNeoplasmEventType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.ProgressionDeterminedBy; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.ResidualDiseasePostNewTumorEventMarginStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.BLymphocyteGenotypingMethod; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.BoneMarrowSampleHistology; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.CdcHivRiskGroup; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.DaysToCancerDebulkingSurgery; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.DaysToChemotherapyEnd; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.DaysToChemotherapyStart; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.DaysToHivDiagnosis; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.DaysToStemCellTransplantation; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.EbvStatusMalignantCellsMethod; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.EpsteinBarrViralStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.ExtranodalInvolvementSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.FollicularComponentPercent; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.HbvTest; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.HcvTest; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.HistoryImmunologicalDisease; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.HistoryImmunosuppresiveRx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.HistoryRelevantInfectiousDx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.HpvTest; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.IghGenotypeResults; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.IgkGenotypeResults; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.KshvHhv8Test; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.LymphNodeInvolvementSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.MaximumTumorBulkAnatomicSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.Mib1PositivePercentageRange; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.PosLymphNodeLocation; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.ocg._2.PriorAidsConditions; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.ClinicalM; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.ClinicalN; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.ClinicalStage; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.ClinicalT; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.DaysToPsa; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.IgcccgStage; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.MasaokaStage; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.PathologicM; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.PathologicN; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.PathologicStage; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.PathologicT; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.PsaValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.SerumMarkers; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.stage._2.SystemVersion; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.ConsentOrDeathStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.DaysToConsent; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.DaysToSampleProcurement; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.EberIshResult; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.FollicularPercent; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.Gender; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.GeneticAbnormalityMethod; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.GeneticAbnormalityResults; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.GeneticAbnormalityTested; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HistologicalType; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HistoryOfNeoadjuvantTreatment; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.HivStatus; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.ImmunophenotypicAnalysisMethod; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.ImmunophenotypicAnalysisResults; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.ImmunophenotypicAnalysisTested; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.MethodOfSampleProcurement; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.NeoplasmHistologicGrade; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.OtherDx; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.OtherDxSite; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.OtherMethodOfSampleProcurement; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.RnaIntegrity; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.TobaccoSmokingHistory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.TumorMorphologyPercentage; + + +/** + *

Java class for clinical_res_attributes complex type. + * + *

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

+ * <complexType name="clinical_res_attributes">
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}clinical_res_attribute_group"/>
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "clinical_res_attributes", propOrder = { + "value" +}) +@XmlSeeAlso({ + HistologicalType.class, + IcdO3Site.class, + IcdO3Histology.class, + Icd10 .class, + Ethnicity.class, + PersonNeoplasmCancerStatus.class, + Laterality.class, + org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.LactateDehydrogenaseResult.class, + SerumCalciumResult.class, + HemoglobinResult.class, + PlateletQualitativeResult.class, + WhiteCellCountResult.class, + ErythrocyteSedimentationRateResult.class, + NumberOfLymphnodesPositive.class, + NeoplasmHistologicGrade.class, + TobaccoSmokingHistory.class, + PrimaryTherapyOutcomeSuccess.class, + MeasureOfResponse.class, + RadiationDosageMetastasis.class, + RadiationDosage.class, + Numfractions.class, + FollowupTreatmentSuccess.class, + FollowupCaseReportFormSubmissionReason.class, + HivStatus.class, + OtherDxSite.class, + TumorMorphologyPercentage.class, + FollicularPercent.class, + OtherMethodOfSampleProcurement.class, + AdditionalTreatmentCompletionSuccessOutcome.class, + CytogeneticAbnormality.class, + PriorSystemicTherapyType.class, + AnatomicNeoplasmSubdivision.class, + PrimaryTherapyOutcomeSuccessAtFollowup.class, + Height.class, + InitialPathologicDiagnosisMethod.class, + MetastaticSite.class, + ErSolidTumorResponseDocumentedType.class, + SourceOfPatientDeathReason.class, + OxygenUseType.class, + ViralHepatitisSerology.class, + ErDiseaseExtentPriorErTreatment.class, + BirthCountry.class, + FamilyMemberRelationshipType.class, + TumorResidualDisease.class, + Weight.class, + AcetaminophenUseCategory.class, + SmokingCessationDurationUnits.class, + ResidualTumor.class, + HistoryPriorSurgeryType.class, + HighestEducationAchieved.class, + AspirinUseCategory.class, + MolecularAbnormalityResults.class, + BirthControlPillHistoryUsageCategory.class, + OtherTobaccoProductType.class, + SmokingFrequency.class, + MarginStatus.class, + PatientProgressionStatus.class, + CancerDiagnosisCancerTypeIcd9TextName.class, + AnatomicNeoplasmSubdivisionOther.class, + RadiationTherapyTotalDosage.class, + MetforminUseCategory.class, + MethodOfClinicalDiagnosis.class, + Comorbidity.class, + PostSurgicalProcedureAssessmentThyroidGlandCarcinomaStatus.class, + SmokingTimeInDayBegins.class, + PhysicalExerciseDaysPerWeek.class, + MenopauseStatus.class, + MetastaticSiteAtDiagnosis.class, + ErResponseType.class, + StatinUseCategory.class, + MaritalStatus.class, + BloodRelativeWithCancer.class, + BoneMarrowSampleHistology.class, + PosLymphNodeLocation.class, + NewNeoplasmEventOccurrenceAnatomicSite.class, + ResidualDiseasePostNewTumorEventMarginStatus.class, + NewEventTreatmentType.class, + NewNeoplasmEventType.class, + DaysToNewTumorEventTransplant.class, + NewNeoplasmConfirmedDiagnosisMethodName.class, + org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.new_tumor_event._2.TreatmentOutcome.class, + org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared.kirc_kirp._2.LactateDehydrogenaseResult.class, + ProgressionDeterminedBy.class, + DaysToNewTumorEventAdditionalSurgeryProcedure.class, + DaysToChemotherapyEnd.class, + KshvHhv8Test.class, + IghGenotypeResults.class, + EpsteinBarrViralStatus.class, + CdcHivRiskGroup.class, + HbvTest.class, + HistoryRelevantInfectiousDx.class, + HistoryImmunosuppresiveRx.class, + BLymphocyteGenotypingMethod.class, + Mib1PositivePercentageRange.class, + ExtranodalInvolvementSite.class, + HpvTest.class, + LymphNodeInvolvementSite.class, + EbvStatusMalignantCellsMethod.class, + DaysToHivDiagnosis.class, + HcvTest.class, + DaysToCancerDebulkingSurgery.class, + HistoryImmunologicalDisease.class, + DaysToChemotherapyStart.class, + FollicularComponentPercent.class, + PriorAidsConditions.class, + IgkGenotypeResults.class, + MaximumTumorBulkAnatomicSite.class, + DaysToMostRecentDateOfLastContact.class, + ProtocolStatus.class, + CtScanFindings.class, + TreatmentType.class, + DaysToTreatmentEnd.class, + org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.shared._2.TreatmentOutcome.class, + PatientSex.class, + Field.class, + TargetedNodalRegion.class, + DaysToClinicalDiagnosis.class, + PatientDeathReason.class, + DaysToTumorRecurrence.class, + StemCellTransplantation.class, + DaysToFirstCompleteResponse.class, + DaysToFirstPartialResponse.class, + DaysToPerformanceStatusAssessment.class, + ProgressionDeterminedByNotes.class, + DaysToPatientProgressionFree.class, + DaysToTumorProgression.class, + ExtranodalRadiationField.class, + CountryOfOrigin.class, + DaysToFirstResponse.class, + DaysToTreatmentStart.class, + ImmunophenotypicAnalysisMethod.class, + EberIshResult.class, + GeneticAbnormalityTested.class, + MethodOfSampleProcurement.class, + RnaIntegrity.class, + GeneticAbnormalityResults.class, + ImmunophenotypicAnalysisTested.class, + DaysToSampleProcurement.class, + DaysToConsent.class, + GeneticAbnormalityMethod.class, + ImmunophenotypicAnalysisResults.class, + ConsentOrDeathStatus.class, + AnatomicTreatmentSite.class, + Units.class, + RadiationType.class, + PriorRadiationTypeMetastasis.class, + DaysToRadiationTherapyEnd.class, + DaysToRadiationTherapyStart.class, + RouteOfAdministration.class, + RegimenIndicationNotes.class, + RegimenIndication.class, + PharmRegimen.class, + DaysToStemCellTransplantation.class, + StemCellTransplantationType.class, + TherapyTypeNotes.class, + TherapyType.class, + DaysToDrugTherapyEnd.class, + DaysToDrugTherapyStart.class, + DaysToAdditionalSurgeryMetastaticProcedure.class, + DaysToAdditionalSurgeryLocoregionalProcedure.class, + DaysToNewTumorEventAfterInitialTreatment.class, + EasternCancerOncologyGroup.class, + KarnofskyPerformanceScore.class, + MasaokaStage.class, + IgcccgStage.class, + SerumMarkers.class, + DaysToPsa.class, + PsaValue.class, + PathologicM.class, + PathologicN.class, + PathologicT.class, + ClinicalM.class, + ClinicalN.class, + ClinicalT.class, + PathologicStage.class, + ClinicalStage.class, + SystemVersion.class, + DaysToFormCompletion.class, + AgeAtInitialPathologicDiagnosis.class, + DaysToInitialPathologicDiagnosis.class, + PerformanceStatusScaleTiming.class, + InformedConsentVerified.class, + HistoryOfNeoadjuvantTreatment.class, + Race.class, + DaysToLastFollowup.class, + DaysToDeath.class, + DaysToLastKnownAlive.class, + DaysToBirth.class, + VitalStatus.class, + Gender.class, + OtherDx.class, + TumorTissueSite.class +}) +public class ClinicalResAttributes { + + @XmlValue + protected String value; + @XmlAttribute(name = "tier") + protected String tier; + @XmlAttribute(name = "floored") + protected Boolean floored; + @XmlAttribute(name = "preferred_name") + protected String preferredName; + @XmlAttribute(name = "display_order") + protected BigInteger displayOrder; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "source_system_identifier") + protected BigInteger sourceSystemIdentifier; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "units") + protected String units; + + /** + * 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 tier property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTier() { + if (tier == null) { + return ""; + } else { + return tier; + } + } + + /** + * Sets the value of the tier property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTier(String value) { + this.tier = value; + } + + /** + * Gets the value of the floored property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isFloored() { + if (floored == null) { + return false; + } else { + return floored; + } + } + + /** + * Sets the value of the floored property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFloored(Boolean value) { + this.floored = value; + } + + /** + * Gets the value of the preferredName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreferredName() { + if (preferredName == null) { + return ""; + } else { + return preferredName; + } + } + + /** + * Sets the value of the preferredName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreferredName(String value) { + this.preferredName = value; + } + + /** + * Gets the value of the displayOrder property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDisplayOrder() { + if (displayOrder == null) { + return new BigInteger("9999"); + } else { + return displayOrder; + } + } + + /** + * Sets the value of the displayOrder property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDisplayOrder(BigInteger value) { + this.displayOrder = value; + } + + /** + * Gets the value of the restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the sourceSystemIdentifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSourceSystemIdentifier() { + return sourceSystemIdentifier; + } + + /** + * Sets the value of the sourceSystemIdentifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSourceSystemIdentifier(BigInteger value) { + this.sourceSystemIdentifier = value; + } + + /** + * Gets the value of the cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return ""; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return ""; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/CommonResAttributes.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/CommonResAttributes.java new file mode 100644 index 0000000..b83bc83 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/CommonResAttributes.java @@ -0,0 +1,308 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlSeeAlso; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.ImageFileName; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.NoteText; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.PatientId; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.shared._2.TissueSourceSite; + + +/** + *

Java class for common_res_attributes complex type. + * + *

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

+ * <complexType name="common_res_attributes">
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attGroup ref="{http://tcga.nci/bcr/xml/utility/2.7}common_res_attribute_group"/>
+ *       <attribute name="restricted" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "common_res_attributes", propOrder = { + "value" +}) +@XmlSeeAlso({ + NoteText.class, + ImageFileName.class, + PatientId.class, + TissueSourceSite.class +}) +public class CommonResAttributes { + + @XmlValue + protected String value; + @XmlAttribute(name = "restricted") + protected Boolean restricted; + @XmlAttribute(name = "cde") + protected String cde; + @XmlAttribute(name = "cde_ver") + protected String cdeVer; + @XmlAttribute(name = "procurement_status", required = true) + protected String procurementStatus; + @XmlAttribute(name = "owner", required = true) + protected String owner; + @XmlAttribute(name = "precision") + protected String precision; + @XmlAttribute(name = "xsd_ver") + protected String xsdVer; + @XmlAttribute(name = "units") + protected String units; + + /** + * 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 restricted property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRestricted() { + if (restricted == null) { + return false; + } else { + return restricted; + } + } + + /** + * Sets the value of the restricted property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRestricted(Boolean value) { + this.restricted = value; + } + + /** + * Gets the value of the cde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCde() { + if (cde == null) { + return ""; + } else { + return cde; + } + } + + /** + * Sets the value of the cde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCde(String value) { + this.cde = value; + } + + /** + * Gets the value of the cdeVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCdeVer() { + if (cdeVer == null) { + return ""; + } else { + return cdeVer; + } + } + + /** + * Sets the value of the cdeVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCdeVer(String value) { + this.cdeVer = value; + } + + /** + * Gets the value of the procurementStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcurementStatus() { + return procurementStatus; + } + + /** + * Sets the value of the procurementStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcurementStatus(String value) { + this.procurementStatus = value; + } + + /** + * Gets the value of the owner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOwner() { + return owner; + } + + /** + * Sets the value of the owner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOwner(String value) { + this.owner = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + + /** + * Gets the value of the xsdVer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXsdVer() { + if (xsdVer == null) { + return ""; + } else { + return xsdVer; + } + } + + /** + * Sets the value of the xsdVer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXsdVer(String value) { + this.xsdVer = value; + } + + /** + * Gets the value of the units property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnits() { + if (units == null) { + return ""; + } else { + return units; + } + } + + /** + * Sets the value of the units property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnits(String value) { + this.units = value; + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/ObjectFactory.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/ObjectFactory.java new file mode 100644 index 0000000..d1293fc --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/ObjectFactory.java @@ -0,0 +1,55 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + + +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2 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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link ClinicalResAttributes } + * + */ + public ClinicalResAttributes createClinicalResAttributes() { + return new ClinicalResAttributes(); + } + + /** + * Create an instance of {@link CommonResAttributes } + * + */ + public CommonResAttributes createCommonResAttributes() { + return new CommonResAttributes(); + } + +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/package-info.java b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/package-info.java new file mode 100644 index 0000000..6a5493d --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/gdc/nci/tcga/bcr/xml/utility/_2/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2017.06.13 at 06:01:48 AM IST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://tcga.nci/bcr/xml/utility/2.7") +package org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.utility._2; diff --git a/src/main/java/org/cbio/gdcpipeline/model/rest/response/Case.java b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Case.java new file mode 100644 index 0000000..4058fbe --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Case.java @@ -0,0 +1,17 @@ +package org.cbio.gdcpipeline.model.rest.response; + +/** + * @author Dixit Patel + */ + +public class Case { + private String case_id; + + public String getCase_id() { + return case_id; + } + + public void setCase_id(String case_id) { + this.case_id = case_id; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/rest/response/Data.java b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Data.java new file mode 100644 index 0000000..44d687b --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Data.java @@ -0,0 +1,27 @@ +package org.cbio.gdcpipeline.model.rest.response; + +import java.util.List; + +/** + * @author Dixit Patel + */ +public class Data { + private List hits; + private Pagination pagination; + + public List getHits() { + return hits; + } + + public void setHits(List hits) { + this.hits = hits; + } + + public Pagination getPagination() { + return pagination; + } + + public void setPagination(Pagination pagination) { + this.pagination = pagination; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/rest/response/GdcApiResponse.java b/src/main/java/org/cbio/gdcpipeline/model/rest/response/GdcApiResponse.java new file mode 100644 index 0000000..0dbea2a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/rest/response/GdcApiResponse.java @@ -0,0 +1,26 @@ +package org.cbio.gdcpipeline.model.rest.response; + +/** + * @author Dixit Patel + */ + +public class GdcApiResponse { + private Data data; + private Warning warnings; + + public Data getData() { + return data; + } + + public void setData(Data data) { + this.data = data; + } + + public Warning getWarnings() { + return warnings; + } + + public void setWarnings(Warning warnings) { + this.warnings = warnings; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/rest/response/Hits.java b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Hits.java new file mode 100644 index 0000000..2ce74d1 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Hits.java @@ -0,0 +1,56 @@ +package org.cbio.gdcpipeline.model.rest.response; + +import java.util.List; + +/** + * @author Dixit Patel + */ +public class Hits{ + private String file_id; + private String file_name; + private List cases; + private String type; + private String data_format; + + public Hits(){} + + public String getFile_id() { + return file_id; + } + + public void setFile_id(String file_id) { + this.file_id = file_id; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getData_format() { + return data_format; + } + + public void setData_format(String data_format) { + this.data_format = data_format; + } + + public String getFile_name() { + return file_name; + } + + public void setFile_name(String file_name) { + this.file_name = file_name; + } + + public List getCases() { + return cases; + } + + public void setCases(List cases) { + this.cases = cases; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/rest/response/Pagination.java b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Pagination.java new file mode 100644 index 0000000..4f05ede --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Pagination.java @@ -0,0 +1,70 @@ +package org.cbio.gdcpipeline.model.rest.response; + +/** + * @author Dixit Patel + */ +public class Pagination { + private int count; + private String sort; + private int from; + private int page; + private int total; + private int pages; + private int size; + + public int getCount() { + return count; + } + + public void setCount(int count) { + this.count = count; + } + + public String getSort() { + return sort; + } + + public void setSort(String sort) { + this.sort = sort; + } + + public int getFrom() { + return from; + } + + public void setFrom(int from) { + this.from = from; + } + + public int getPage() { + return page; + } + + public void setPage(int page) { + this.page = page; + } + + public int getTotal() { + return total; + } + + public void setTotal(int total) { + this.total = total; + } + + public int getPages() { + return pages; + } + + public void setPages(int pages) { + this.pages = pages; + } + + public int getSize() { + return size; + } + + public void setSize(int size) { + this.size = size; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/model/rest/response/Warning.java b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Warning.java new file mode 100644 index 0000000..be1449f --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/model/rest/response/Warning.java @@ -0,0 +1,16 @@ +package org.cbio.gdcpipeline.model.rest.response; + +/** + * @author Dixit Patel + */ +public class Warning { + private String warnings; + + public String getWarnings() { + return warnings; + } + + public void setWarnings(String warnings) { + this.warnings = warnings; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/processor/MutationProcessor.java b/src/main/java/org/cbio/gdcpipeline/processor/MutationProcessor.java new file mode 100644 index 0000000..6a65cc9 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/processor/MutationProcessor.java @@ -0,0 +1,85 @@ +package org.cbio.gdcpipeline.processor; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbioportal.annotator.Annotator; +import org.cbioportal.models.AnnotatedRecord; +import org.cbioportal.models.MutationRecord; +import org.springframework.batch.item.ItemProcessor; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.web.client.HttpClientErrorException; +import org.springframework.web.client.HttpServerErrorException; + +import java.util.HashMap; +import java.util.Map; +import java.util.regex.Matcher; +import java.util.regex.Pattern; +import org.cbioportal.annotator.GenomeNexusAnnotationFailureException; + +/** + * @author Dixit Patel + */ +public class MutationProcessor implements ItemProcessor { + private static Pattern pattern = Pattern.compile("^(TCGA-\\w\\w-\\w\\w\\w\\w-(\\d\\d|Tumor)).*$"); + private static Map validChrValues = null; + private static Log LOG = LogFactory.getLog(MutationProcessor.class); + @Value("#{jobParameters[isoformOverrideSource]}") + private String isoformOverrideSource; + + @Autowired + private Annotator annotator; + + @Override + public AnnotatedRecord process(MutationRecord mutationRecord) throws Exception { + mutationRecord.setTUMOR_SAMPLE_BARCODE(extractSampleId(mutationRecord.getTUMOR_SAMPLE_BARCODE())); + mutationRecord.setMATCHED_NORM_SAMPLE_BARCODE(extractSampleId(mutationRecord.getMATCHED_NORM_SAMPLE_BARCODE())); + AnnotatedRecord annotatedRecord = annotateRecord(mutationRecord); + annotatedRecord.setCHROMOSOME(normalizeChromosome(annotatedRecord.getCHROMOSOME())); + return annotatedRecord; + } + + private String extractSampleId(String record) { + Matcher matcher = pattern.matcher(record); + if(matcher.find()) { + record = matcher.group(); + } + return record; + } + + private String normalizeChromosome(String chromosome){ + if (chromosome == null){ + return null; + } + if (validChrValues==null) { + validChrValues = new HashMap<>(); + for (int lc = 1; lc<=24; lc++) { + validChrValues.put(Integer.toString(lc),Integer.toString(lc)); + validChrValues.put("CHR" + Integer.toString(lc),Integer.toString(lc)); + } + validChrValues.put("X","23"); + validChrValues.put("CHRX","23"); + validChrValues.put("Y","24"); + validChrValues.put("CHRY","24"); + validChrValues.put("NA","NA"); + validChrValues.put("MT","MT"); // mitochondria + } + return validChrValues.get(chromosome); + } + + private AnnotatedRecord annotateRecord(MutationRecord record) throws GenomeNexusAnnotationFailureException { + AnnotatedRecord annotatedRecord = new AnnotatedRecord(); + try { + annotatedRecord = annotator.annotateRecord(record, false, isoformOverrideSource, true); + } catch (HttpServerErrorException e) { + if (LOG.isWarnEnabled()) { + LOG.warn("Server Exception. Failed to annotate a record from json! Sample: " + record.getTUMOR_SAMPLE_BARCODE() + " Variant: " + record.getCHROMOSOME() + ":" + record.getSTART_POSITION() + record.getREFERENCE_ALLELE() + ">" + record.getTUMOR_SEQ_ALLELE2()); + } + } catch (HttpClientErrorException e) { + if (LOG.isWarnEnabled()) { + LOG.warn("Client Error Exception. Failed to annotate a record from json! Sample: " + record.getTUMOR_SAMPLE_BARCODE() + " Variant: " + record.getCHROMOSOME() + ":" + record.getSTART_POSITION() + record.getREFERENCE_ALLELE() + ">" + record.getTUMOR_SEQ_ALLELE2()); + } + } + return annotatedRecord; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/reader/ClinicalReader.java b/src/main/java/org/cbio/gdcpipeline/reader/ClinicalReader.java new file mode 100644 index 0000000..2ca9703 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/reader/ClinicalReader.java @@ -0,0 +1,141 @@ +package org.cbio.gdcpipeline.reader; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.cbio.ClinicalDataModel; +import org.cbio.gdcpipeline.model.cbio.Patient; +import org.cbio.gdcpipeline.model.cbio.Sample; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.clinical.brca._2.TcgaBcr; +import org.cbio.gdcpipeline.model.rest.response.Hits; +import org.cbio.gdcpipeline.util.CommonDataUtil; +import org.springframework.batch.item.ExecutionContext; +import org.springframework.batch.item.ItemStreamException; +import org.springframework.batch.item.ItemStreamReader; +import org.springframework.beans.factory.annotation.Value; + +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Unmarshaller; +import java.io.File; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ +public class ClinicalReader implements ItemStreamReader { + private static Log LOG = LogFactory.getLog(ClinicalReader.class); + + @Value("#{jobExecutionContext[barcodeToSamplesMap]}") + private Map> barcodeToSamplesMap; + + @Value("#{jobExecutionContext[gdcFileMetadatas]}") + private List gdcFileMetadatas; + + @Value("#{jobParameters[filter_normal_sample]}") + private String filter_normal_sample_flag; + + @Value("#{jobParameters[sourceDirectory]}") + private String sourceDir; + + @Value("#{jobParameters[cancer_study_id]}") + private String cancer_study_id; + + @Value("${onco.code.tcga.brca}") + private String oncotree_code; + + private List clinicalDataModelList = new ArrayList<>(); + + @Override + public ClinicalDataModel read() throws Exception { + if (!this.clinicalDataModelList.isEmpty()) { + return clinicalDataModelList.remove(0); + } + return null; + } + + @Override + public void open(ExecutionContext executionContext) throws ItemStreamException { + List clinicalFileNames = getClinicalFileList(); + if (!clinicalFileNames.isEmpty()) { + for (File clinicalFile : clinicalFileNames) { + if (LOG.isInfoEnabled()) { + LOG.info("Processing Clinical file : " + clinicalFile.getName()); + } + try { + TcgaBcr tcgaBcr = unmarshall(clinicalFile); + addData(tcgaBcr); + } catch (JAXBException e) { + if (LOG.isErrorEnabled()) { + LOG.error("Unmarshalling error. Skipping file " + clinicalFile.getName()); + } + } + } + } else { + if (LOG.isInfoEnabled()) { + LOG.info(" No Clinincal Files Found"); + } + } + } + + private TcgaBcr unmarshall(File xmlFile) throws JAXBException { + JAXBContext jaxbContext = JAXBContext.newInstance(TcgaBcr.class); + Unmarshaller unmarshaller = jaxbContext.createUnmarshaller(); + // root + TcgaBcr tcgaBcr = (TcgaBcr) unmarshaller.unmarshal(xmlFile); + return tcgaBcr; + } + + private void addData(TcgaBcr tcgaBcr) { + String barcode = tcgaBcr.getPatient().getBcrPatientBarcode().getValue(); + if (!barcodeToSamplesMap.containsKey(barcode)) { + if (LOG.isErrorEnabled()) { + LOG.error("Biospecimen file for Barcode : " + barcode + " does not exist. Skipping File"); + } + } else { + List sampleList = barcodeToSamplesMap.get(barcode); + // patient + ClinicalDataModel patient = new Patient( + barcode, + tcgaBcr.getPatient().getVitalStatus().getValue(), + tcgaBcr.getPatient().getGender().getValue(), + Integer.parseInt(tcgaBcr.getPatient().getAgeAtInitialPathologicDiagnosis().getValue())); + this.clinicalDataModelList.add(patient); + + //sample + for (String sample_id : sampleList) { + if (!(filter_normal_sample_flag.equalsIgnoreCase("true") && sample_id.endsWith(CommonDataUtil.NORMAL_SAMPLE_SUFFIX))) { + this.clinicalDataModelList.add(new Sample(tcgaBcr.getPatient().getBcrPatientBarcode().getValue(), sample_id, oncotree_code)); + } + } + } + } + + private List getClinicalFileList() throws ItemStreamException { + List clincalFiles = new ArrayList<>(); + if (!gdcFileMetadatas.isEmpty()) { + for (Hits data : gdcFileMetadatas) { + if (data.getType().equals(CommonDataUtil.GDC_TYPE.CLINICAL.toString())) { + File file = new File(sourceDir, data.getFile_name()); + if (file.exists()) { + clincalFiles.add(file); + } else { + if (LOG.isInfoEnabled()) { + LOG.info("Clinical File : " + file.getAbsolutePath() + " not found.\nSkipping File"); + } + } + } + } + } + return clincalFiles; + } + + @Override + public void update(ExecutionContext executionContext) throws ItemStreamException { + } + + @Override + public void close() throws ItemStreamException { + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/reader/MutationReader.java b/src/main/java/org/cbio/gdcpipeline/reader/MutationReader.java new file mode 100644 index 0000000..f6ebab8 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/reader/MutationReader.java @@ -0,0 +1,172 @@ +package org.cbio.gdcpipeline.reader; + +import org.apache.commons.collections.map.MultiKeyMap; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.util.MutationDataFileUtils; +import org.cbioportal.annotator.Annotator; +import org.cbioportal.models.MutationRecord; +import org.springframework.batch.item.ExecutionContext; +import org.springframework.batch.item.ItemStreamException; +import org.springframework.batch.item.ItemStreamReader; +import org.springframework.batch.item.file.FlatFileItemReader; +import org.springframework.batch.item.file.mapping.DefaultLineMapper; +import org.springframework.batch.item.file.mapping.FieldSetMapper; +import org.springframework.batch.item.file.transform.DelimitedLineTokenizer; +import org.springframework.batch.item.file.transform.FieldSet; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.core.io.FileSystemResource; + +import java.io.File; +import java.io.IOException; +import java.util.*; +import java.util.stream.Collectors; +import org.apache.commons.lang.StringUtils; + +/** + * @author Dixit Patel + */ +public class MutationReader implements ItemStreamReader { + @Value("#{jobParameters[sourceDirectory]}") + private String sourceDir; + + @Value("${mutation.data.file.prefix}") + private String MUTATION_DATA_FILE_PREFIX; + + @Value("${mutation.default.merged.maf.file}") + private String DEFAULT_MERGED_MAF_FILENAME; + + @Value("#{jobParameters[outputDirectory]}") + private String outputDir; + + @Value("#{jobParameters[cancer_study_id]}") + private String cancer_study_id; + + @Value("#{jobParameters[separate_mafs]}") + private String separate_mafs; + + @Autowired + private Annotator annotator; + + private List mafRecords = new ArrayList<>(); + private static Log LOG = LogFactory.getLog(MutationReader.class); + private Map> seenMafRecord = new HashMap<>(); + private static String ADD_MAF_COLUMN_NAME = "Caller"; + + @Override + public MutationRecord read() throws Exception { + if (!mafRecords.isEmpty()) { + return mafRecords.remove(0); + } + return null; + } + + @Override + public void open(ExecutionContext executionContext) throws ItemStreamException { + List maf_files = (List) executionContext.get("mafToProcess"); + if (maf_files == null || maf_files.isEmpty()) { + throw new ItemStreamException("No MAF files to process"); + } else { + for (File file : maf_files) { + if (LOG.isInfoEnabled()) { + LOG.info("Processing MAF File : " + file.getAbsolutePath()); + } + readFile(file); + } + } + if (separate_mafs.equalsIgnoreCase("true")) { + File output_file = new File(outputDir, MUTATION_DATA_FILE_PREFIX + maf_files.get(0).getName()); + executionContext.put("maf_file_to_write", output_file); + } else { + File MERGED_MAF_FILE_NAME = new File(outputDir, DEFAULT_MERGED_MAF_FILENAME); + executionContext.put("maf_file_to_write", MERGED_MAF_FILE_NAME); + } + for (Map.Entry> entry : seenMafRecord.entrySet()) { + MutationRecord record = entry.getKey(); + Set caller = entry.getValue(); + List list = caller.stream().collect(Collectors.toList()); + record.getAdditionalProperties().put("Caller", StringUtils.join(list, '|')); + mafRecords.add(record); + } + } + + private void readFile(File maf_file) { + FlatFileItemReader reader = new FlatFileItemReader<>(); + DelimitedLineTokenizer tokenizer = new DelimitedLineTokenizer(DelimitedLineTokenizer.DELIMITER_TAB); + MultiKeyMap mafFileMetadata = new MultiKeyMap(); + try { + mafFileMetadata = MutationDataFileUtils.loadDataFileMetadata(maf_file); + } catch (IOException e) { + e.printStackTrace(); + } + String[] mafHeader = (String[]) mafFileMetadata.get(maf_file.getName(), "header"); + tokenizer.setNames(mafHeader); + DefaultLineMapper lineMapper = new DefaultLineMapper<>(); + lineMapper.setLineTokenizer(tokenizer); + lineMapper.setFieldSetMapper(mutationFieldSetMapper()); + reader.setResource(new FileSystemResource(maf_file)); + reader.setLineMapper(lineMapper); + int metadataCount = (int) mafFileMetadata.get(maf_file.getName(), "metadataCount"); + //include the header row + reader.setLinesToSkip(metadataCount + 1); + reader.open(new ExecutionContext()); + try { + MutationRecord record; + while ((record = reader.read()) != null) { + addRecord(record, maf_file.getName()); + } + } catch (Exception e) { + e.printStackTrace(); + throw new ItemStreamException("Error reading record"); + } + reader.close(); + } + + private void addRecord(MutationRecord newRecord, String maf_filename) { + maf_filename = MutationDataFileUtils.getCallerName(maf_filename); + if (seenMafRecord.isEmpty()) { + Set caller = new HashSet<>(); + caller.add(maf_filename); + seenMafRecord.put(newRecord, caller); + } else { + Iterator>> iterator = seenMafRecord.entrySet().iterator(); + Map.Entry> entry = iterator.next(); + while (iterator.hasNext() && !entry.getKey().equals(newRecord)) { + entry = iterator.next(); + } + if (!entry.getKey().equals(newRecord)) { + Set caller = new HashSet<>(); + caller.add(maf_filename); + seenMafRecord.put(newRecord, caller); + } else { + entry.getValue().add(maf_filename); + } + } + } + + private FieldSetMapper mutationFieldSetMapper() { + return (FieldSetMapper) (FieldSet fs) -> { + MutationRecord record = new MutationRecord(); + for (String header : record.getHeader()) { + try { + record.getClass().getMethod("set" + header.toUpperCase(), String.class).invoke(record, fs.readString(header)); + } catch (Exception e) { + if (LOG.isDebugEnabled()) { + LOG.error(" Error in setting record for :" + header); + } + e.printStackTrace(); + } + } + return record; + }; + } + + @Override + public void update(ExecutionContext executionContext) throws ItemStreamException { + } + + @Override + public void close() throws ItemStreamException { + } +} \ No newline at end of file diff --git a/src/main/java/org/cbio/gdcpipeline/step/ClinicalStep.java b/src/main/java/org/cbio/gdcpipeline/step/ClinicalStep.java new file mode 100644 index 0000000..646a97c --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/step/ClinicalStep.java @@ -0,0 +1,96 @@ +package org.cbio.gdcpipeline.step; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.cbio.ClinicalDataModel; +import org.cbio.gdcpipeline.reader.ClinicalReader; +import org.cbio.gdcpipeline.tasklet.ClinicalMetaDataTasklet; +import org.cbio.gdcpipeline.util.CommonDataUtil; +import org.cbio.gdcpipeline.writer.ClinicalWriter; +import org.springframework.batch.core.Step; +import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; +import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; +import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; +import org.springframework.batch.core.configuration.annotation.StepScope; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.item.ItemWriter; +import org.springframework.batch.item.support.CompositeItemWriter; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import java.util.ArrayList; +import java.util.List; + +/** + * @author Dixit Patel + */ +@EnableBatchProcessing +@Configuration +public class ClinicalStep { + @Autowired + StepBuilderFactory stepBuilderFactory; + + @Autowired + JobBuilderFactory jobBuilderFactory; + + private static Log LOG = LogFactory.getLog(ClinicalStep.class); + + @Value("${chunk.interval}") + private int chunkInterval; + + @Bean + @StepScope + public ClinicalReader clinicalReader() { + return new ClinicalReader(); + } + + public CompositeItemWriter compositeItemWriter() { + List> delegates = new ArrayList<>(2); + delegates.add(clinicalPatientDataWriter()); + delegates.add(clinicalSampleDataWriter()); + CompositeItemWriter compositeItemWriter = new CompositeItemWriter<>(); + compositeItemWriter.setDelegates(delegates); + try { + compositeItemWriter.afterPropertiesSet(); + } catch (Exception e) { + e.printStackTrace(); + } + return compositeItemWriter; + } + + @Bean + @StepScope + public ClinicalWriter clinicalPatientDataWriter() { + return new ClinicalWriter(CommonDataUtil.CLINICAL_TYPE.PATIENT); + } + + @Bean + @StepScope + public ClinicalWriter clinicalSampleDataWriter() { + return new ClinicalWriter(CommonDataUtil.CLINICAL_TYPE.SAMPLE); + } + + @Bean + public Step clinicalDataStep() { + return stepBuilderFactory.get("clinicalDataStep") + .chunk(chunkInterval) + .reader(clinicalReader()) + .writer(compositeItemWriter()) + .build(); + } + + @Bean + @StepScope + public Tasklet clinicalMetaDataTasklet() { + return new ClinicalMetaDataTasklet(); + } + + @Bean + public Step clinicalMetaDataStep() { + return stepBuilderFactory.get("clinicalMetaDataStep") + .tasklet(clinicalMetaDataTasklet()) + .build(); + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/step/MutationStep.java b/src/main/java/org/cbio/gdcpipeline/step/MutationStep.java new file mode 100644 index 0000000..f97eefe --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/step/MutationStep.java @@ -0,0 +1,88 @@ +package org.cbio.gdcpipeline.step; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.listener.MutationStepListener; +import org.cbio.gdcpipeline.processor.MutationProcessor; +import org.cbio.gdcpipeline.reader.MutationReader; +import org.cbio.gdcpipeline.tasklet.MutationMetadataTasklet; +import org.cbio.gdcpipeline.writer.MutationWriter; +import org.cbioportal.models.AnnotatedRecord; +import org.cbioportal.models.MutationRecord; +import org.springframework.batch.core.Step; +import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; +import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; +import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; +import org.springframework.batch.core.configuration.annotation.StepScope; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +/** + * @author Dixit Patel + */ + +@EnableBatchProcessing +@Configuration +public class MutationStep { + @Autowired + StepBuilderFactory stepBuilderFactory; + + @Autowired + JobBuilderFactory jobBuilderFactory; + + @Value("${chunk.interval}") + private int chunkInterval; + + private static Log LOG = LogFactory.getLog(ClinicalStep.class); + + @Bean + @StepScope + public MutationReader mutationDataReader() { + return new MutationReader(); + } + + @Bean + @StepScope + public MutationProcessor mutationDataProcessor() { + return new MutationProcessor(); + } + + @Bean + @StepScope + public MutationWriter mutationDataWriter() { + return new MutationWriter(); + } + + @Bean + @StepScope + public MutationStepListener mutationStepListener() { + return new MutationStepListener(); + } + + @Bean + public Step mutationDataStep() { + return stepBuilderFactory.get("mutationDataStep") + .listener(mutationStepListener()) + .chunk(chunkInterval) + .reader(mutationDataReader()) + .processor(mutationDataProcessor()) + .writer(mutationDataWriter()) + .build(); + } + + @Bean + @StepScope + public Tasklet mutationMetaDataTasklet() { + return new MutationMetadataTasklet(); + } + + @Bean + public Step mutationMetaDataStep() { + return stepBuilderFactory.get("mutationMetaDataStep") + .tasklet(mutationMetaDataTasklet()) + .build(); + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/tasklet/BiospecimenXmlDataTasklet.java b/src/main/java/org/cbio/gdcpipeline/tasklet/BiospecimenXmlDataTasklet.java new file mode 100644 index 0000000..e9a06e0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/tasklet/BiospecimenXmlDataTasklet.java @@ -0,0 +1,102 @@ +package org.cbio.gdcpipeline.tasklet; + + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2.Sample; +import org.cbio.gdcpipeline.model.gdc.nci.tcga.bcr.xml.biospecimen._2.TcgaBcr; +import org.cbio.gdcpipeline.model.rest.response.Hits; +import org.cbio.gdcpipeline.util.CommonDataUtil; +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.repeat.RepeatStatus; +import org.springframework.beans.factory.annotation.Value; + +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Unmarshaller; +import java.io.File; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ +public class BiospecimenXmlDataTasklet implements Tasklet { + private static Log LOG = LogFactory.getLog(BiospecimenXmlDataTasklet.class); + + @Value("#{jobParameters[sourceDirectory]}") + private String sourceDir; + + @Value("#{jobExecutionContext[gdcFileMetadatas]}") + private List gdcFileMetadatas; + + private Map> barcodeToSamplesMap = new HashMap<>(); + + protected TcgaBcr unmarshall(File xmlFile) throws JAXBException { + JAXBContext jaxbContext = JAXBContext.newInstance(TcgaBcr.class); + Unmarshaller unmarshaller = jaxbContext.createUnmarshaller(); + return (TcgaBcr) unmarshaller.unmarshal(xmlFile); + } + + protected void addData(TcgaBcr tcgaBcr) { + String barcode = tcgaBcr.getPatient().getBcrPatientBarcode().getValue(); + barcode = barcode.replaceAll("\n", ""); + barcode = barcode.trim(); + List samples = tcgaBcr.getPatient().getSamples().getSample(); + List samplesList = new ArrayList<>(); + if (!samples.isEmpty()) { + for (Sample sample : samples) { + samplesList.add(barcode + "-" + sample.getSampleTypeId().getValue()); + } + barcodeToSamplesMap.put(barcode, samplesList); + } + } + + @Override + public RepeatStatus execute(StepContribution stepContext, ChunkContext chunkContext) throws Exception { + List biospecimenFiles = getBiospecimenFileList(); + for (File file : biospecimenFiles) { + if (LOG.isInfoEnabled()) { + LOG.info("Processing Biospecimen file : " + file.getName()); + } + try { + TcgaBcr tcgaBcr = unmarshall(file); + addData(tcgaBcr); + } catch (JAXBException e) { + if (LOG.isErrorEnabled()) { + LOG.error("Unmarshall error. Skipping File :" + file.getName()); + } + } + } + chunkContext.getStepContext() + .getStepExecution() + .getExecutionContext() + .put("barcodeToSamplesMap", barcodeToSamplesMap); + + return RepeatStatus.FINISHED; + } + + private List getBiospecimenFileList() { + List biospecimenFiles = new ArrayList<>(); + if (!gdcFileMetadatas.isEmpty()) { + for (Hits data : gdcFileMetadatas) { + if (data.getType().equals(CommonDataUtil.GDC_TYPE.BIOSPECIMEN.toString())) { + File file = new File(sourceDir, data.getFile_name()); + if (file.exists()) { + biospecimenFiles.add(file); + } else { + if (LOG.isInfoEnabled()) { + LOG.info("Biospecimen File : " + file.getAbsolutePath() + " not found.\nSkipping File"); + } + } + } + } + } + return biospecimenFiles; + } +} + diff --git a/src/main/java/org/cbio/gdcpipeline/tasklet/ClinicalMetaDataTasklet.java b/src/main/java/org/cbio/gdcpipeline/tasklet/ClinicalMetaDataTasklet.java new file mode 100644 index 0000000..52c591a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/tasklet/ClinicalMetaDataTasklet.java @@ -0,0 +1,58 @@ +package org.cbio.gdcpipeline.tasklet; + +import org.cbio.gdcpipeline.util.MetaFileWriter; +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.repeat.RepeatStatus; +import org.springframework.beans.factory.annotation.Value; + +import java.io.File; +import java.util.LinkedHashMap; +import java.util.Map; + +/** + * @author Dixit Patel + */ +public class ClinicalMetaDataTasklet implements Tasklet { + @Value("${clinical.metadata.sample.file}") + private String METADATA_SAMPLE_FILE_NAME; + + @Value("${clinical.metadata.patient.file}") + private String METADATA_PATIENT_FILE_NAME; + + @Value("${clinical.data.patient.file}") + private String DATA_PATIENT_FILE_NAME; + + @Value("${clinical.data.sample.file}") + private String DATA_SAMPLE_FILE_NAME; + + @Value("#{jobParameters[cancer_study_id]}") + private String cancer_study_id; + + @Value("#{jobParameters[outputDirectory]}") + private String outputDir; + + @Override + public RepeatStatus execute(StepContribution stepContribution, ChunkContext chunkContext) throws Exception { + String sampleFile = outputDir + File.separator + METADATA_SAMPLE_FILE_NAME; + String patientFile = outputDir + File.separator + METADATA_PATIENT_FILE_NAME; + + Map patient = new LinkedHashMap<>(); + Map sample = new LinkedHashMap<>(); + + patient.put("cancer_study_identifier", cancer_study_id); + patient.put("genetic_alteration_type", "CLINICAL"); + patient.put("datatype", "PATIENT_ATTRIBUTES"); + patient.put("data_filename", DATA_PATIENT_FILE_NAME); + + sample.put("cancer_study_identifier", cancer_study_id); + sample.put("genetic_alteration_type", "CLINICAL"); + sample.put("datatype", "SAMPLE_ATTRIBUTES"); + sample.put("data_filename", DATA_SAMPLE_FILE_NAME); + + MetaFileWriter.writeMetadata(patient, patientFile); + MetaFileWriter.writeMetadata(sample, sampleFile); + return RepeatStatus.FINISHED; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/tasklet/MutationMetadataTasklet.java b/src/main/java/org/cbio/gdcpipeline/tasklet/MutationMetadataTasklet.java new file mode 100644 index 0000000..d9a8a9e --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/tasklet/MutationMetadataTasklet.java @@ -0,0 +1,54 @@ +package org.cbio.gdcpipeline.tasklet; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.commons.lang.StringUtils; +import org.cbio.gdcpipeline.util.MetaFileWriter; +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.repeat.RepeatStatus; +import org.springframework.beans.factory.annotation.Value; + +import java.io.File; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; + +/** + *@author Dixit Patel + */ +public class MutationMetadataTasklet implements Tasklet { + @Value("#{jobExecutionContext[mutation_data_filenames]}") + private List MUTATION_DATA_FILES; + + @Value("${mutation.metadata.file}") + private String MUTATION_METADATA_FILE; + + @Value("#{jobParameters[cancer_study_id]}") + private String cancer_study_id; + + @Value("#{jobParameters[outputDirectory]}") + private String outputDir; + + private static Log LOG = LogFactory.getLog(MutationMetadataTasklet.class); + + @Override + public RepeatStatus execute(StepContribution stepContribution, ChunkContext chunkContext) throws Exception { + String metafile = outputDir + File.separator + MUTATION_METADATA_FILE; + Map mutationMetadata = new LinkedHashMap<>(); + + mutationMetadata.put("cancer_study_identifier",cancer_study_id); + mutationMetadata.put("genetic_alteration_type","MUTATION_EXTENDED"); + mutationMetadata.put("datatype","MAF"); + mutationMetadata.put("stable_id","mutations"); + mutationMetadata.put("show_profile_in_analysis_tab","true"); + mutationMetadata.put("profile_description","Mutation data from whole exome sequencing"); + mutationMetadata.put("profile_name","Mutations"); + mutationMetadata.put("data_filename", StringUtils.join(MUTATION_DATA_FILES,',')); + + MetaFileWriter.writeMetadata(mutationMetadata,metafile); + return RepeatStatus.FINISHED; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/tasklet/ProcessManifestFileTasklet.java b/src/main/java/org/cbio/gdcpipeline/tasklet/ProcessManifestFileTasklet.java new file mode 100644 index 0000000..0a0973a --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/tasklet/ProcessManifestFileTasklet.java @@ -0,0 +1,186 @@ +package org.cbio.gdcpipeline.tasklet; + +import com.google.gson.JsonArray; +import com.google.gson.JsonObject; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.ManifestFileData; +import org.cbio.gdcpipeline.model.rest.response.GdcApiResponse; +import org.cbio.gdcpipeline.model.rest.response.Hits; +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.item.ExecutionContext; +import org.springframework.batch.item.ItemStreamException; +import org.springframework.batch.item.file.FlatFileItemReader; +import org.springframework.batch.item.file.mapping.DefaultLineMapper; +import org.springframework.batch.item.file.mapping.FieldSetMapper; +import org.springframework.batch.item.file.transform.DelimitedLineTokenizer; +import org.springframework.batch.item.file.transform.FieldSet; +import org.springframework.batch.repeat.RepeatStatus; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.core.io.FileSystemResource; +import org.springframework.http.*; +import org.springframework.web.client.RestTemplate; + +import java.io.BufferedReader; +import java.io.FileReader; +import java.util.ArrayList; +import java.util.List; +import java.util.stream.Collectors; + +/** + * @author Dixit Patel + */ +public class ProcessManifestFileTasklet implements Tasklet { + @Value("#{jobParameters[manifest_file]}") + private String manifest_file; + + @Value("${gdc.api.files.endpoint}") + private String GDC_API_FILES_ENDPOINT; + + @Value("${gdc.max.response.size}") + private int MAX_RESPONSE_SIZE; + + private static Log LOG = LogFactory.getLog(ProcessManifestFileTasklet.class); + private List manifestFileList = new ArrayList<>(); + private RestTemplate restTemplate = new RestTemplate(); + private List gdcFileMetadatas = new ArrayList<>(); + + @Override + public RepeatStatus execute(StepContribution stepContribution, ChunkContext chunkContext) throws Exception { + FlatFileItemReader reader = new FlatFileItemReader<>(); + DelimitedLineTokenizer tokenizer = new DelimitedLineTokenizer(DelimitedLineTokenizer.DELIMITER_TAB); + try (BufferedReader buff = new BufferedReader(new FileReader(manifest_file))) { + // header line + String header = buff.readLine(); + tokenizer.setNames(header.split(DelimitedLineTokenizer.DELIMITER_TAB)); + } + DefaultLineMapper lineMapper = new DefaultLineMapper<>(); + lineMapper.setLineTokenizer(tokenizer); + lineMapper.setFieldSetMapper(manifestFieldSetMapper()); + reader.setResource(new FileSystemResource(manifest_file)); + reader.setLineMapper(lineMapper); + reader.setLinesToSkip(1); + reader.open(new ExecutionContext()); + ManifestFileData record = null; + try { + while ((record = reader.read()) != null) { + manifestFileList.add(record); + } + } catch (Exception e) { + e.printStackTrace(); + throw new ItemStreamException("Error reading manifest record : "+record.toString()); + } + reader.close(); + String payload = buildJsonRequest(); + gdcApiRequest(payload); + + chunkContext.getStepContext() + .getStepExecution() + .getExecutionContext() + .put("gdcFileMetadatas", gdcFileMetadatas); + + return RepeatStatus.FINISHED; + } + + private FieldSetMapper manifestFieldSetMapper() { + return (FieldSetMapper) (FieldSet fs) -> { + ManifestFileData record = new ManifestFileData(); + for (String header : record.getHeader()) { + try { + record.getClass().getMethod("set" + header, String.class).invoke(record, fs.readString(header.toLowerCase())); + } catch (Exception e) { + if (LOG.isDebugEnabled()) { + LOG.error(" Error in setting record for :" + header); + } + e.printStackTrace(); + } + } + return record; + }; + } + + /* Payload format + * { + * "filters":{ + * "op":"in", + * "content":{ + * "field":"cases.case_id", + * "value":["ABC123"] + * } + * }, + * "format":"JSON", + * "fields":"file_name,cases.case_id,data_format", + * + * } + */ + + protected String buildJsonRequest() { + JsonObject node = new JsonObject(); + JsonObject filters = new JsonObject(); + JsonObject content = new JsonObject(); + JsonArray values = new JsonArray(); + for (ManifestFileData record : manifestFileList) { + values.add(record.getId()); + } + content.addProperty("field", "file_id"); + content.add("value", values); + filters.addProperty("op", "in"); + filters.add("content", content); + + node.add("filters", filters); + node.addProperty("format", "JSON"); + node.addProperty("fields", "file_id,file_name,cases.case_id,type,data_format"); + return node.toString(); + } + + protected void gdcApiRequest(String payload) throws Exception { + int callCount = 0; + int totalCallCount = 1; + int from = 0; + + while (callCount < totalCallCount) { + callCount += 1; + String url = GDC_API_FILES_ENDPOINT + "?from=" + from + "&size=" + MAX_RESPONSE_SIZE; + if (LOG.isInfoEnabled()) { + LOG.info(" Calling GDC API : " + url); + LOG.info(" Payload : " + payload); + } + GdcApiResponse res = callGdcApi(url, payload); + totalCallCount = res.getData().getPagination().getPages(); + if (totalCallCount == 0) { + if (LOG.isErrorEnabled()) { + LOG.error("Last API Request returned 0 results"); + } + throw new Exception(" Last API Request returned 0 results "); + } + gdcFileMetadatas.addAll(res.getData().getHits().stream().collect(Collectors.toList())); + from = callCount * MAX_RESPONSE_SIZE; + } + } + + protected GdcApiResponse callGdcApi(String url, String payload) throws Exception { + if (manifestFileList.isEmpty()) { + if (LOG.isErrorEnabled()) { + LOG.error(" No Case Id's to add to API call"); + } + throw new Exception(); + } + HttpHeaders httpHeaders = new HttpHeaders(); + httpHeaders.setContentType(MediaType.APPLICATION_JSON); + HttpEntity entity = new HttpEntity(payload.toString(), httpHeaders); + + ResponseEntity response = restTemplate.exchange(url, HttpMethod.POST, entity, GdcApiResponse.class); + if (response.getStatusCode() != HttpStatus.OK) { + if (LOG.isErrorEnabled()) { + LOG.error("Error calling GDC API. Response code is :" + response.getStatusCode().toString() + + " Response Message is : " + response.getStatusCode().getReasonPhrase()); + } + throw new Exception(); + + } + return response.getBody(); + } +} + diff --git a/src/main/java/org/cbio/gdcpipeline/tasklet/SetUpPipelineTasklet.java b/src/main/java/org/cbio/gdcpipeline/tasklet/SetUpPipelineTasklet.java new file mode 100644 index 0000000..dfd9719 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/tasklet/SetUpPipelineTasklet.java @@ -0,0 +1,83 @@ +package org.cbio.gdcpipeline.tasklet; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.repeat.RepeatStatus; +import org.springframework.beans.factory.annotation.Value; + +import java.io.File; +import java.io.FileNotFoundException; +import java.util.HashSet; + +/** + * @author Dixit Patel + */ +public class SetUpPipelineTasklet implements Tasklet { + @Value("#{jobParameters[outputDirectory]}") + private String outputDir; + + @Value("#{jobParameters[sourceDirectory]}") + private String sourceDir; + + @Value("#{jobParameters[cancer_study_id]}") + private String cancer_study_id; + + private HashSet supportedCancerStudy = new HashSet<>(); + private static Log LOG = LogFactory.getLog(SetUpPipelineTasklet.class); + + @Override + public RepeatStatus execute(StepContribution stepContribution, ChunkContext chunkContext) throws Exception { + initiateCancerStudy(); + validateCancerStudy(); + createOutputDirectory(); + validateSourceDirectory(); + if (LOG.isInfoEnabled()) { + LOG.info(" ######### Pipeline Setup Completed #########"); + } + return RepeatStatus.FINISHED; + } + + private void initiateCancerStudy() { + supportedCancerStudy.add("TCGA_BRCA"); + } + + private void validateCancerStudy() throws Exception { + if (!supportedCancerStudy.contains(cancer_study_id)) { + if (LOG.isErrorEnabled()) { + LOG.error(" Invalid Cancer Study Type "); + } + throw new Exception(); + } + } + + private void validateSourceDirectory() throws FileNotFoundException { + File source = new File(sourceDir); + if (!source.exists()) { + if (LOG.isErrorEnabled()) { + LOG.error(" Invalid Source directory "); + } + throw new FileNotFoundException(); + } + } + + private void createOutputDirectory() throws FileNotFoundException { + File outputDirectory = new File(outputDir); + if (outputDirectory.mkdir()) { + if (LOG.isInfoEnabled()) { + LOG.info(" Output will be at " + outputDir); + } + } else if (!outputDirectory.exists()) { + if (LOG.isErrorEnabled()) { + LOG.error(" Invalid output directory "); + } + throw new FileNotFoundException(); + } else { + if (LOG.isInfoEnabled()) { + LOG.info(" Output directory is valid "); + } + } + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/util/CommonDataUtil.java b/src/main/java/org/cbio/gdcpipeline/util/CommonDataUtil.java new file mode 100644 index 0000000..fe37780 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/util/CommonDataUtil.java @@ -0,0 +1,226 @@ +package org.cbio.gdcpipeline.util; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.rest.response.Hits; + +import java.io.*; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.*; +import java.util.zip.GZIPInputStream; + +/** + * @author Dixit Patel + */ +public class CommonDataUtil { + public static final String NORMAL_SAMPLE_SUFFIX = "-10"; + private static Log LOG = LogFactory.getLog(CommonDataUtil.class); + public enum CLINICAL_TYPE{PATIENT,SAMPLE} + private static String SYSTEM_TMP_DIR_PROPERTY = "java.io.tmpdir"; + private static String TMP_DIR_NAME = "gdcpipeline"; + private static File temp_dir; + private static List missingValueList = initMissingValueList(); + + private static List initMissingValueList() { + List missingValueList = new ArrayList<>(); + missingValueList.add("NA"); + missingValueList.add("N/A"); + missingValueList.add("N/a"); + missingValueList.add("n/A"); + missingValueList.add("Unknown"); + missingValueList.add("not available"); + return missingValueList; + } + + public static boolean hasMissingKeys(String check) { + for (String ignore : missingValueList) { + if (check.equalsIgnoreCase(ignore)) { + return true; + } + } + return false; + } + + public enum CLINICAL_OS_STATUS {LIVING, DECEASED} + + public enum GDC_DATAFORMAT { + BCR_XML("BCR XML"), + MAF("MAF"); + + private final String format; + + GDC_DATAFORMAT(String format) { + this.format = format; + } + + @Override + public String toString() { + return this.format; + } + } + + public enum GDC_TYPE { + BIOSPECIMEN("biospecimen_supplement"), + CLINICAL("clinical_supplement"), + MUTATION("masked_somatic_mutation"),; + + private final String type; + + GDC_TYPE(String type){ + this.type=type; + } + + @Override + public String toString() { + return this.type; + } + } + + public enum REFERENCE_GENOME { + GRCh37("GRCh37"), + HG19("hg19"); + + public static Set build37 = new HashSet<>(Arrays.asList(GRCh37.toString(),HG19.toString())); + private final String ref; + + REFERENCE_GENOME(String ref){ + this.ref=ref; + } + + @Override + public String toString(){ + return this.ref; + } + } + + + public enum COMPRESSION_FORMAT { + GZIP(".gz"); + private final String format; + + COMPRESSION_FORMAT(String format) { + this.format = format; + } + + @Override + public String toString() { + return this.format; + } + } + + public static List getFileList(List gdcFileMetadatas, CommonDataUtil.GDC_TYPE type, String sourceDir) { + List fileList = new ArrayList<>(); + List compressedFiles = new ArrayList<>(); + if (!gdcFileMetadatas.isEmpty()) { + for (Hits data : gdcFileMetadatas) { + if (data.getType().equals(type.toString())) { + File file = new File(sourceDir, data.getFile_name()); + if (file.exists()) { + if (isCompressedFile(file)) { + compressedFiles.add(file); + } else { + fileList.add(file); + } + } else { + if (LOG.isInfoEnabled()) { + LOG.info(type.toString() + " file : " + file.getAbsolutePath() + " not found.\nSkipping File"); + } + } + } + } + } + if (!compressedFiles.isEmpty()) { + try { + fileList.addAll(extractCompressedFiles(compressedFiles)); + } catch (Exception e) { + e.printStackTrace(); + if (LOG.isErrorEnabled()) { + LOG.error("Skipping files to extract."); + } + } + } + return fileList; + } + + public static List extractCompressedFiles(List fileList) throws Exception { + temp_dir = createTempDirectory(); + List extracted = new ArrayList<>(); + if (!fileList.isEmpty()) { + for (File extractFile : fileList) { + if (isCompressedFile(extractFile)) { + File tmp_file; + try { + tmp_file = File.createTempFile(extractFile.getName(), "", temp_dir); + } catch (IOException e) { + e.printStackTrace(); + if (LOG.isErrorEnabled()) { + LOG.error("Error creating temp file in : " + temp_dir.getAbsolutePath() + "\nSkipping File"); + } + continue; + } + try { + BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(tmp_file)); + FileInputStream fis = new FileInputStream(extractFile); + if (extractFile.getName().endsWith(COMPRESSION_FORMAT.GZIP.toString())) { + GZIPInputStream gzip = new GZIPInputStream(new BufferedInputStream(fis)); + int readByte; + while ((readByte = gzip.read()) > 0) { + bos.write(readByte); + } + gzip.close(); + Path path = Files.move(Paths.get(tmp_file.getAbsolutePath()), Paths.get(temp_dir.getAbsolutePath(), extractFile.getName().replace(COMPRESSION_FORMAT.GZIP.toString(), ""))); + extracted.add(new File(path.toUri())); + } + bos.close(); + } catch (Exception e) { + e.printStackTrace(); + deleteTempDir(); + throw new Exception("Error while decompressing files"); + } + } + } + } + return extracted; + } + + private static boolean isCompressedFile(File extractFile) { + return extractFile.getName().endsWith(COMPRESSION_FORMAT.GZIP.toString()); + } + + public static void deleteTempDir() { + if (temp_dir != null && temp_dir.exists()) { + try { + deleteDir(temp_dir); + } catch (Exception e) { + if (LOG.isWarnEnabled()) { + LOG.warn(" Temp directory could not be deleted : " + temp_dir.getAbsolutePath()); + } + e.printStackTrace(); + } + } + } + + private static File createTempDirectory() throws Exception { + File tmp_dir = new File(System.getProperty(SYSTEM_TMP_DIR_PROPERTY), TMP_DIR_NAME); + if (tmp_dir.exists()) { + if (LOG.isErrorEnabled()) { + LOG.error("Temp directory already exists. Deleting directory and its contents :" + tmp_dir.getAbsolutePath()); + } + deleteDir(tmp_dir); + } + tmp_dir.mkdir(); + return tmp_dir; + } + + private static void deleteDir(File dir) throws Exception { + File[] entries = dir.listFiles(); + if (entries != null) { + for (File entry : entries) { + deleteDir(entry); + } + } + dir.delete(); + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/util/MetaFileWriter.java b/src/main/java/org/cbio/gdcpipeline/util/MetaFileWriter.java new file mode 100644 index 0000000..53c4dd0 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/util/MetaFileWriter.java @@ -0,0 +1,43 @@ +package org.cbio.gdcpipeline.util; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.commons.lang.StringUtils; + +import java.io.*; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +/** + * @author Dixit Patel + */ +public class MetaFileWriter { + private static String metadata; + private static Log LOG = LogFactory.getLog(MetaFileWriter.class); + + public static void makeMetadata(Map fields) { + if (!fields.isEmpty()) { + List data = new ArrayList<>(); + for (Map.Entry entry : fields.entrySet()) { + data.add(entry.getKey() + ": " + entry.getValue()); + } + metadata = StringUtils.join(data, '\n'); + } + } + + public static void writeMetadata(Map fields, String file_path) throws Exception { + makeMetadata(fields); + File filename = new File(file_path); + if (metadata.isEmpty()) { + if (LOG.isErrorEnabled()) { + LOG.error("Metadata is empty. Nothing to write"); + } + throw new Exception(); + } + try (Writer writer = new BufferedWriter(new OutputStreamWriter( + new FileOutputStream(filename), "utf-8"))) { + writer.write(metadata); + } + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/util/MutationDataFileUtils.java b/src/main/java/org/cbio/gdcpipeline/util/MutationDataFileUtils.java new file mode 100644 index 0000000..0713061 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/util/MutationDataFileUtils.java @@ -0,0 +1,58 @@ +package org.cbio.gdcpipeline.util; + +import org.apache.commons.collections.map.MultiKeyMap; + +import java.io.BufferedReader; +import java.io.File; +import java.io.FileReader; +import java.io.IOException; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +/** + * @author Dixit Patel + */ +public class MutationDataFileUtils { + public static String METADATA_PREFIX = "#"; + public static String DELIMITER = "\t"; + private static Pattern tcga_caller_pattern = Pattern.compile("TCGA\\..*?\\.(.*?)\\."); + + public static MultiKeyMap loadDataFileMetadata(File dataFile) throws IOException { + String[] columnNames; + int metadataCount = 0; + // get the file header and header count + try (FileReader reader = new FileReader(dataFile)) { + BufferedReader buff = new BufferedReader(reader); + String line = buff.readLine(); + + // keep reading until line does not start with meta data prefix + while (line.startsWith(MutationDataFileUtils.METADATA_PREFIX)) { + metadataCount++; + line = buff.readLine(); + } + // extract the file header + columnNames = MutationDataFileUtils.splitDataFields(line); + reader.close(); + } + MultiKeyMap metadata = new MultiKeyMap(); + metadata.put(dataFile.getName(), "header", columnNames); + metadata.put(dataFile.getName(), "metadataCount", metadataCount); + + return metadata; + } + + public static String[] splitDataFields(String line) { + line = line.replaceAll("^" + METADATA_PREFIX + "+", ""); + String[] fields = line.split(DELIMITER, -1); + return fields; + } + + public static String getCallerName(String maf_filename) { + // Extract if only TCGA + Matcher matcher = tcga_caller_pattern.matcher(maf_filename); + if(matcher.find()){ + return matcher.group(1); + } + return maf_filename; + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/writer/ClinicalWriter.java b/src/main/java/org/cbio/gdcpipeline/writer/ClinicalWriter.java new file mode 100644 index 0000000..fddb046 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/writer/ClinicalWriter.java @@ -0,0 +1,136 @@ +package org.cbio.gdcpipeline.writer; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.cbio.ClinicalDataModel; +import org.cbio.gdcpipeline.model.cbio.Patient; +import org.cbio.gdcpipeline.model.cbio.Sample; +import org.cbio.gdcpipeline.util.CommonDataUtil; +import org.springframework.batch.item.ExecutionContext; +import org.springframework.batch.item.ItemStreamException; +import org.springframework.batch.item.ItemStreamWriter; +import org.springframework.batch.item.file.FlatFileHeaderCallback; +import org.springframework.batch.item.file.FlatFileItemWriter; +import org.springframework.batch.item.file.transform.BeanWrapperFieldExtractor; +import org.springframework.batch.item.file.transform.DelimitedLineAggregator; +import org.springframework.batch.item.file.transform.FieldExtractor; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.core.io.FileSystemResource; + +import java.io.File; +import java.io.IOException; +import java.io.Writer; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import org.apache.commons.lang.StringUtils; + +/** + * @author Dixit Patel + */ +public class ClinicalWriter implements ItemStreamWriter { + @Value("#{jobParameters[outputDirectory]}") + private String outputDir; + + @Value("${clinical.data.patient.file}") + private String patientFile; + + @Value("${clinical.data.sample.file}") + private String sampleFile; + + private ExecutionContext executionContext; + private CommonDataUtil.CLINICAL_TYPE writerType; + private FlatFileItemWriter clinicalWriter = new FlatFileItemWriter<>(); + private static Log LOG = LogFactory.getLog(ClinicalWriter.class); + + public ClinicalWriter(CommonDataUtil.CLINICAL_TYPE writerType) { + this.writerType = writerType; + } + + @Override + public void open(ExecutionContext executionContext) throws ItemStreamException { + this.executionContext = executionContext; + configureWriter(); + } + + @Override + public void write(List list) throws Exception { + //configure writer + List filterList = new ArrayList<>(); + if (writerType.equals(CommonDataUtil.CLINICAL_TYPE.PATIENT)) { + for (ClinicalDataModel data : list) { + if (data instanceof Patient) { + filterList.add(data); + } + } + } else if (writerType.equals(CommonDataUtil.CLINICAL_TYPE.SAMPLE)) { + for (ClinicalDataModel data : list) { + if (data instanceof Sample) { + filterList.add(data); + } + } + } + clinicalWriter.write(filterList); + } + + private void configureWriter() { + ClinicalDataModel data = null; + String filename; + if (writerType.equals(CommonDataUtil.CLINICAL_TYPE.PATIENT)) { + data = new Patient(); + filename = patientFile; + } else { + data = new Sample(); + filename = sampleFile; + } + clinicalWriter.setShouldDeleteIfExists(true); + clinicalWriter.setLineSeparator(System.lineSeparator()); + clinicalWriter.setHeaderCallback(clinicalDataHeader(data)); + DelimitedLineAggregator lineAggregator = new DelimitedLineAggregator<>(); + lineAggregator.setDelimiter("\t"); + FieldExtractor fe = createFieldExtractor(data); + lineAggregator.setFieldExtractor(fe); + clinicalWriter.setLineAggregator(lineAggregator); + clinicalWriter.setResource(new FileSystemResource(new File(outputDir,filename))); + clinicalWriter.open(this.executionContext); + } + + private FlatFileHeaderCallback clinicalDataHeader(ClinicalDataModel data) { + return new FlatFileHeaderCallback() { + @Override + public void writeHeader(Writer writer) throws IOException { + Map> headers = data.getHeaders(); + StringBuilder sb = new StringBuilder(); + sb.append(StringUtils.join(headers.get("displayNames"), '\t')).append("\n"); + sb.append(StringUtils.join(headers.get("description"), '\t')).append("\n"); + sb.append(StringUtils.join(headers.get("datatype"), '\t')).append("\n"); + sb.append(StringUtils.join(headers.get("priority"), '\t')).append("\n"); + List list = headers.get("headers"); + for (int i = 0; i < list.size(); i++) { + list.set(i, list.get(i).toUpperCase()); + } + sb.append(StringUtils.join(list, '\t')); + writer.write(sb.toString()); + + } + }; + } + + private FieldExtractor createFieldExtractor(ClinicalDataModel data) { + BeanWrapperFieldExtractor ext = new BeanWrapperFieldExtractor<>(); + List fieldList = data.getFields(); + fieldList.stream().map(String::toLowerCase).collect(Collectors.toList()); + String[] fields = new String[fieldList.size()]; + ext.setNames(fieldList.toArray(fields)); + return ext; + } + + @Override + public void update(ExecutionContext executionContext) throws ItemStreamException { + } + + @Override + public void close() throws ItemStreamException { + } +} diff --git a/src/main/java/org/cbio/gdcpipeline/writer/MutationWriter.java b/src/main/java/org/cbio/gdcpipeline/writer/MutationWriter.java new file mode 100644 index 0000000..e4bdd31 --- /dev/null +++ b/src/main/java/org/cbio/gdcpipeline/writer/MutationWriter.java @@ -0,0 +1,84 @@ +package org.cbio.gdcpipeline.writer; + +import org.cbioportal.models.AnnotatedRecord; +import org.springframework.batch.item.ExecutionContext; +import org.springframework.batch.item.ItemStreamException; +import org.springframework.batch.item.ItemStreamWriter; +import org.springframework.batch.item.file.FlatFileHeaderCallback; +import org.springframework.batch.item.file.FlatFileItemWriter; +import org.springframework.batch.item.file.transform.BeanWrapperFieldExtractor; +import org.springframework.batch.item.file.transform.DelimitedLineAggregator; +import org.springframework.batch.item.file.transform.FieldExtractor; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.core.io.FileSystemResource; + +import java.io.File; +import java.io.IOException; +import java.io.Writer; +import java.util.List; +import org.apache.commons.lang.StringUtils; + +/** + * @author Dixit Patel + */ +public class MutationWriter implements ItemStreamWriter { + @Value("#{jobParameters[outputDirectory]}") + private String outputDir; + private FlatFileItemWriter mutationWriter = new FlatFileItemWriter<>(); + private ExecutionContext executionContext; + + @Override + public void open(ExecutionContext executionContext) throws ItemStreamException { + this.executionContext = executionContext; + File maf_filename = (File) executionContext.get("maf_file_to_write"); + configureWriter(maf_filename); + } + + private void configureWriter(File maf_filename) { + AnnotatedRecord record = new AnnotatedRecord(); + mutationWriter.setShouldDeleteIfExists(true); + mutationWriter.setLineSeparator(System.lineSeparator()); + mutationWriter.setHeaderCallback(mutationHeader(record)); + DelimitedLineAggregator lineAggregator = new DelimitedLineAggregator<>(); + lineAggregator.setDelimiter("\t"); + FieldExtractor fe = createFieldExtractor(record); + lineAggregator.setFieldExtractor(fe); + mutationWriter.setLineAggregator(lineAggregator); + mutationWriter.setResource(new FileSystemResource(maf_filename)); + mutationWriter.open(this.executionContext); + } + + private FlatFileHeaderCallback mutationHeader(AnnotatedRecord data) { + return new FlatFileHeaderCallback() { + @Override + public void writeHeader(Writer writer) throws IOException { + List headers = data.getHeaderWithAdditionalFields(); + StringBuilder sb = new StringBuilder(); + sb.append(StringUtils.join(headers, '\t')); + writer.write(sb.toString()); + } + }; + } + + private FieldExtractor createFieldExtractor(AnnotatedRecord data) { + BeanWrapperFieldExtractor ext = new BeanWrapperFieldExtractor<>(); + List fieldList = data.getHeaderWithAdditionalFields(); + String[] fields = new String[fieldList.size()]; + fields = data.getHeaderWithAdditionalFields().toArray(fields); + ext.setNames(fields); + return ext; + } + + @Override + public void write(List list) throws Exception { + mutationWriter.write(list); + } + + @Override + public void update(ExecutionContext executionContext) throws ItemStreamException { + } + + @Override + public void close() throws ItemStreamException { + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..69ba24d --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,27 @@ +spring.batch.job.enabled=false +spring.main.web-environment=false + +#################################### app config ################################################# +gdc.api.files.endpoint=https://api.gdc.cancer.gov/files +gdc.max.response.size=1000 +chunk.interval=2000 + +#################################### Clinical ################################################### +onco.code.tcga.brca=BRCA +clinical.data.patient.file=data_clinical_patient.txt +clinical.data.sample.file=data_clinical_sample.txt +clinical.metadata.patient.file=meta_clinical_patient.txt +clinical.metadata.sample.file=meta_clinical_sample.txt + +#################################### Mutation ################################################### +mutation.data.file.prefix=data_ +mutation.metadata.file=meta_mutation.txt +mutation.default.merged.maf.file=data_extended.maf + +#################################### Genome Nexus ################################################### +genomenexus.base=http://annotation.genomenexus.org/ +genomenexus.enrichment_fields=annotation_summary +genomenexus.isoform_query_parameter=isoformOverrideSource + +#################################### Test ####################################################### +test.cancer.study.id=TCGA_BRCA diff --git a/src/test/java/org/cbio/gdcpipeline/GdcPipelineApplicationTests.java b/src/test/java/org/cbio/gdcpipeline/GdcPipelineApplicationTests.java new file mode 100644 index 0000000..23f1a91 --- /dev/null +++ b/src/test/java/org/cbio/gdcpipeline/GdcPipelineApplicationTests.java @@ -0,0 +1,20 @@ +package org.cbio.gdcpipeline; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.test.IntegrationTest; +import org.springframework.boot.test.SpringApplicationConfiguration; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +@RunWith(SpringJUnit4ClassRunner.class) +@IntegrationTest +//@SpringApplicationConfiguration(classes={BatchConfiguration.class, TestConfiguration.class}) +@TestPropertySource("classpath:application.properties") +public class GdcPipelineApplicationTests { + + @Test + public void contextLoads() { + } + +} diff --git a/src/test/java/org/cbio/gdcpipeline/tasklet/BiospecimenXmlDataTaskletTest.java b/src/test/java/org/cbio/gdcpipeline/tasklet/BiospecimenXmlDataTaskletTest.java new file mode 100644 index 0000000..8241457 --- /dev/null +++ b/src/test/java/org/cbio/gdcpipeline/tasklet/BiospecimenXmlDataTaskletTest.java @@ -0,0 +1,69 @@ +package org.cbio.gdcpipeline.tasklet; + +import org.apache.commons.logging.LogFactory; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.test.util.ReflectionTestUtils; +import org.springframework.web.client.RestTemplate; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +/** + * @author Dixit Patel + */ + +@PrepareForTest({BiospecimenXmlDataTasklet.class, LogFactory.class}) +@RunWith(PowerMockRunner.class) +public class BiospecimenXmlDataTaskletTest { + private File sourceDir; + private String cancer_study_id; + private String GDC_API_ENDPOINT; + private int MAX_RESPONSE_SIZE; + + @Mock + StepContribution stepContext; + @Mock + ChunkContext chunkContext; + @Mock + RestTemplate restTemplate; + + private BiospecimenXmlDataTasklet tasklet; + + @Before + public void setUp() throws Exception { + MockitoAnnotations.initMocks(this); + setProperties(); + tasklet = new BiospecimenXmlDataTasklet(); + } + + public void setProperties() throws Exception { + ClassLoader classLoader = getClass().getClassLoader(); + Properties p = new Properties(); + File file = new File(classLoader.getResource("data").getFile()); + sourceDir = new File(file.getAbsolutePath() + File.separator + "GDC"); + p.load(new FileReader(new File(classLoader.getResource("application.properties").getFile()))); + cancer_study_id = p.getProperty("test.cancer.study.id"); + GDC_API_ENDPOINT = p.getProperty("gdc.api.files.endpoint"); + MAX_RESPONSE_SIZE = Integer.parseInt(p.getProperty("gdc.max.response.size")); + } + + @Test(expected = java.lang.Exception.class) + public void testExecuteEmptyBiospecimenFileList() throws Exception { + ReflectionTestUtils.setField(tasklet, "sourceDir", sourceDir.getAbsolutePath()); + ReflectionTestUtils.setField(tasklet, "cancer_study_id", cancer_study_id); + File empty = new File(sourceDir.getAbsolutePath()); + PowerMockito.whenNew(File.class).withAnyArguments().thenReturn(empty); + tasklet.execute(stepContext, chunkContext); + } + +} \ No newline at end of file diff --git a/src/test/java/org/cbio/gdcpipeline/tasklet/ProcessManifestFileTaskletTest.java b/src/test/java/org/cbio/gdcpipeline/tasklet/ProcessManifestFileTaskletTest.java new file mode 100644 index 0000000..2aed258 --- /dev/null +++ b/src/test/java/org/cbio/gdcpipeline/tasklet/ProcessManifestFileTaskletTest.java @@ -0,0 +1,108 @@ +package org.cbio.gdcpipeline.tasklet; + +import org.apache.commons.logging.LogFactory; +import org.cbio.gdcpipeline.model.ManifestFileData; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.http.*; +import org.springframework.test.util.ReflectionTestUtils; +import org.springframework.web.client.RestTemplate; + +import java.io.File; +import java.io.FileReader; +import java.util.ArrayList; +import java.util.List; +import java.util.Properties; + +import static org.junit.Assert.assertEquals; +import static org.mockito.Mockito.mock; +import static org.powermock.api.mockito.PowerMockito.when; + +/** + * @author Dixit Patel + */ + +@PrepareForTest({ProcessManifestFileTasklet.class, LogFactory.class}) +@RunWith(PowerMockRunner.class) +public class ProcessManifestFileTaskletTest { + File sourceDir; + String cancer_study_id; + String GDC_API_FILES_ENDPOINT; + int MAX_RESPONSE_SIZE; + @Mock + StepContribution stepContext; + @Mock + ChunkContext chunkContext; + @Mock + RestTemplate restTemplate; + + private ProcessManifestFileTasklet tasklet; + + @Before + public void setUp() throws Exception { + MockitoAnnotations.initMocks(this); + setProperties(); + tasklet = new ProcessManifestFileTasklet(); + } + + public void setProperties() throws Exception { + ClassLoader classLoader = getClass().getClassLoader(); + Properties p = new Properties(); + File file = new File(classLoader.getResource("data").getFile()); + sourceDir = new File(file.getAbsolutePath() + File.separator + "GDC"); + p.load(new FileReader(new File(classLoader.getResource("application.properties").getFile()))); + cancer_study_id = p.getProperty("test.cancer.study.id"); + GDC_API_FILES_ENDPOINT = p.getProperty("gdc.api.files.endpoint"); + MAX_RESPONSE_SIZE = Integer.parseInt(p.getProperty("gdc.max.response.size")); + } + + + @Test(expected = java.lang.Exception.class) + public void testExecuteEmptyBiospecimenFileList() throws Exception { + ReflectionTestUtils.setField(tasklet, "sourceDir", sourceDir.getAbsolutePath()); + ReflectionTestUtils.setField(tasklet, "cancer_study_id", cancer_study_id); + File empty = new File(sourceDir.getAbsolutePath()); + PowerMockito.whenNew(File.class).withAnyArguments().thenReturn(empty); + tasklet.execute(stepContext, chunkContext); + } + + @Test(expected = java.lang.Exception.class) + public void testCallGdcApiServiceUnavailable() throws Exception { + ReflectionTestUtils.setField(tasklet, "GDC_API_FILES_ENDPOINT", GDC_API_FILES_ENDPOINT); + ReflectionTestUtils.setField(tasklet, "MAX_RESPONSE_SIZE", MAX_RESPONSE_SIZE); + ManifestFileData temp = new ManifestFileData(); + temp.setId("sample_file_id"); + List manifestFileList = new ArrayList<>(); + manifestFileList.add(temp); + ReflectionTestUtils.setField(tasklet, "manifestFileList", manifestFileList); + ResponseEntity response = new ResponseEntity(HttpStatus.INTERNAL_SERVER_ERROR); + RestTemplate restTemplate = mock(RestTemplate.class); + ReflectionTestUtils.setField(tasklet, "restTemplate", restTemplate); + HttpHeaders httpHeaders = new HttpHeaders(); + httpHeaders.setContentType(MediaType.APPLICATION_JSON); + HttpEntity entity = new HttpEntity("", httpHeaders); + when(restTemplate.exchange(GDC_API_FILES_ENDPOINT, HttpMethod.POST, entity, String.class)).thenReturn(response); + tasklet.callGdcApi(GDC_API_FILES_ENDPOINT, ""); + } + + @Test + public void testBuildJsonRequestReturnsValidJson() { + ManifestFileData temp = new ManifestFileData(); + temp.setId("sample_file_id"); + List manifestFileList = new ArrayList<>(); + manifestFileList.add(temp); + ReflectionTestUtils.setField(tasklet, "manifestFileList", manifestFileList); + String expectedPayload = "{\"filters\":{\"op\":\"in\",\"content\":{\"field\":\"file_id\",\"value\":[\"sample_file_id\"]}}," + + "\"format\":\"JSON\",\"fields\":\"file_id,file_name,cases.case_id,type,data_format\"}"; + String actualPayload = tasklet.buildJsonRequest(); + assertEquals(expectedPayload, actualPayload); + } +} \ No newline at end of file