/* * Copyright 2012 Shared Learning Collaborative, LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.04.20 at 03:09:04 PM EDT // package org.slc.sli.sample.entities; import java.util.Calendar; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * This association represents the school to which a student is enrolled. * * <p>Java class for StudentSchoolAssociation complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StudentSchoolAssociation"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="StudentReference" type="{http://ed-fi.org/0100}StudentReferenceType"/> * <element name="SchoolReference" type="{http://ed-fi.org/0100}EducationalOrgReferenceType"/> * <element name="EntryDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * <element name="EntryGradeLevel" type="{http://ed-fi.org/0100}GradeLevelType"/> * <element name="EntryType" type="{http://ed-fi.org/0100}EntryType" minOccurs="0"/> * <element name="RepeatGradeIndicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="ClassOf" type="{http://ed-fi.org/0100}SchoolYearType" minOccurs="0"/> * <element name="SchoolChoiceTransfer" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="ExitWithdrawDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * <element name="ExitWithdrawType" type="{http://ed-fi.org/0100}ExitWithdrawType" minOccurs="0"/> * <element name="EducationalPlans" type="{http://ed-fi.org/0100}EducationalPlansType" minOccurs="0"/> * <element name="GraduationPlanReference" type="{http://ed-fi.org/0100}ReferenceType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StudentSchoolAssociation", propOrder = { "studentReference", "schoolReference", "entryDate", "entryGradeLevel", "entryType", "repeatGradeIndicator", "classOf", "schoolChoiceTransfer", "exitWithdrawDate", "exitWithdrawType", "educationalPlans", "graduationPlanReference" }) public class StudentSchoolAssociation { @XmlElement(name = "StudentReference", required = true) protected StudentReferenceType studentReference; @XmlElement(name = "SchoolReference", required = true) protected EducationalOrgReferenceType schoolReference; @XmlElement(name = "EntryDate", type = String.class) @XmlJavaTypeAdapter(Adapter2 .class) @XmlSchemaType(name = "date") protected Calendar entryDate; @XmlElement(name = "EntryGradeLevel", required = true) protected GradeLevelType entryGradeLevel; @XmlElement(name = "EntryType") protected EntryType entryType; @XmlElement(name = "RepeatGradeIndicator") protected Boolean repeatGradeIndicator; @XmlElement(name = "ClassOf") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String classOf; @XmlElement(name = "SchoolChoiceTransfer") protected Boolean schoolChoiceTransfer; @XmlElement(name = "ExitWithdrawDate", type = String.class) @XmlJavaTypeAdapter(Adapter2 .class) @XmlSchemaType(name = "date") protected Calendar exitWithdrawDate; @XmlElement(name = "ExitWithdrawType") protected ExitWithdrawType exitWithdrawType; @XmlElement(name = "EducationalPlans") protected EducationalPlansType educationalPlans; @XmlElement(name = "GraduationPlanReference") protected ReferenceType graduationPlanReference; /** * Gets the value of the studentReference property. * * @return * possible object is * {@link StudentReferenceType } * */ public StudentReferenceType getStudentReference() { return studentReference; } /** * Sets the value of the studentReference property. * * @param value * allowed object is * {@link StudentReferenceType } * */ public void setStudentReference(StudentReferenceType value) { this.studentReference = value; } /** * Gets the value of the schoolReference property. * * @return * possible object is * {@link EducationalOrgReferenceType } * */ public EducationalOrgReferenceType getSchoolReference() { return schoolReference; } /** * Sets the value of the schoolReference property. * * @param value * allowed object is * {@link EducationalOrgReferenceType } * */ public void setSchoolReference(EducationalOrgReferenceType value) { this.schoolReference = value; } /** * Gets the value of the entryDate property. * * @return * possible object is * {@link String } * */ public Calendar getEntryDate() { return entryDate; } /** * Sets the value of the entryDate property. * * @param value * allowed object is * {@link String } * */ public void setEntryDate(Calendar value) { this.entryDate = value; } /** * Gets the value of the entryGradeLevel property. * * @return * possible object is * {@link GradeLevelType } * */ public GradeLevelType getEntryGradeLevel() { return entryGradeLevel; } /** * Sets the value of the entryGradeLevel property. * * @param value * allowed object is * {@link GradeLevelType } * */ public void setEntryGradeLevel(GradeLevelType value) { this.entryGradeLevel = value; } /** * Gets the value of the entryType property. * * @return * possible object is * {@link EntryType } * */ public EntryType getEntryType() { return entryType; } /** * Sets the value of the entryType property. * * @param value * allowed object is * {@link EntryType } * */ public void setEntryType(EntryType value) { this.entryType = value; } /** * Gets the value of the repeatGradeIndicator property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRepeatGradeIndicator() { return repeatGradeIndicator; } /** * Sets the value of the repeatGradeIndicator property. * * @param value * allowed object is * {@link Boolean } * */ public void setRepeatGradeIndicator(Boolean value) { this.repeatGradeIndicator = value; } /** * Gets the value of the classOf property. * * @return * possible object is * {@link String } * */ public String getClassOf() { return classOf; } /** * Sets the value of the classOf property. * * @param value * allowed object is * {@link String } * */ public void setClassOf(String value) { this.classOf = value; } /** * Gets the value of the schoolChoiceTransfer property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSchoolChoiceTransfer() { return schoolChoiceTransfer; } /** * Sets the value of the schoolChoiceTransfer property. * * @param value * allowed object is * {@link Boolean } * */ public void setSchoolChoiceTransfer(Boolean value) { this.schoolChoiceTransfer = value; } /** * Gets the value of the exitWithdrawDate property. * * @return * possible object is * {@link String } * */ public Calendar getExitWithdrawDate() { return exitWithdrawDate; } /** * Sets the value of the exitWithdrawDate property. * * @param value * allowed object is * {@link String } * */ public void setExitWithdrawDate(Calendar value) { this.exitWithdrawDate = value; } /** * Gets the value of the exitWithdrawType property. * * @return * possible object is * {@link ExitWithdrawType } * */ public ExitWithdrawType getExitWithdrawType() { return exitWithdrawType; } /** * Sets the value of the exitWithdrawType property. * * @param value * allowed object is * {@link ExitWithdrawType } * */ public void setExitWithdrawType(ExitWithdrawType value) { this.exitWithdrawType = value; } /** * Gets the value of the educationalPlans property. * * @return * possible object is * {@link EducationalPlansType } * */ public EducationalPlansType getEducationalPlans() { return educationalPlans; } /** * Sets the value of the educationalPlans property. * * @param value * allowed object is * {@link EducationalPlansType } * */ public void setEducationalPlans(EducationalPlansType value) { this.educationalPlans = value; } /** * Gets the value of the graduationPlanReference property. * * @return * possible object is * {@link ReferenceType } * */ public ReferenceType getGraduationPlanReference() { return graduationPlanReference; } /** * Sets the value of the graduationPlanReference property. * * @param value * allowed object is * {@link ReferenceType } * */ public void setGraduationPlanReference(ReferenceType value) { this.graduationPlanReference = value; } }