// // 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: 2009.07.21 at 10:48:55 AM CEST // package org.jboss.as.test.integration.osgi.jaxb.bundle; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for studentType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="studentType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="firstName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="surname" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "studentType") public class StudentType { @XmlAttribute(required = true) protected String firstName; @XmlAttribute(required = true) protected String surname; /** * Gets the value of the firstName property. * * @return possible object is {@link String } * */ public String getFirstName() { return firstName; } /** * Sets the value of the firstName property. * * @param value allowed object is {@link String } * */ public void setFirstName(String value) { this.firstName = value; } /** * Gets the value of the surname property. * * @return possible object is {@link String } * */ public String getSurname() { return surname; } /** * Sets the value of the surname property. * * @param value allowed object is {@link String } * */ public void setSurname(String value) { this.surname = value; } }