![JAR search and dependency download from the Maven repository](/logo.png)
org.dozer.vo.jaxb.employee.EmployeeWithInnerClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dozer Show documentation
Show all versions of dozer Show documentation
Dozer is a powerful Java Bean to Java Bean mapper that recursively copies data from one object to another
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.03.13 at 12:07:28 AM EET
//
package org.dozer.vo.jaxb.employee;
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="FirstName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="BirthDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="LastName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Address">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Street" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="State">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"firstName",
"birthDate",
"lastName",
"address"
})
@XmlRootElement(name = "EmployeeWithInnerClass")
public class EmployeeWithInnerClass {
@XmlElement(name = "FirstName", required = true)
protected String firstName;
@XmlElement(name = "BirthDate")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDate;
@XmlElement(name = "LastName", required = true)
protected String lastName;
@XmlElement(name = "Address", required = true)
protected EmployeeWithInnerClass.Address address;
/**
* 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 birthDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getBirthDate() {
return birthDate;
}
/**
* Sets the value of the birthDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setBirthDate(XMLGregorianCalendar value) {
this.birthDate = value;
}
/**
* Gets the value of the lastName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastName() {
return lastName;
}
/**
* Sets the value of the lastName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastName(String value) {
this.lastName = value;
}
/**
* Gets the value of the address property.
*
* @return
* possible object is
* {@link EmployeeWithInnerClass.Address }
*
*/
public EmployeeWithInnerClass.Address getAddress() {
return address;
}
/**
* Sets the value of the address property.
*
* @param value
* allowed object is
* {@link EmployeeWithInnerClass.Address }
*
*/
public void setAddress(EmployeeWithInnerClass.Address value) {
this.address = value;
}
/**
* 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="Street" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="State">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"street",
"state"
})
public static class Address {
@XmlElement(name = "Street", required = true)
protected String street;
@XmlElement(name = "State", required = true)
protected EmployeeWithInnerClass.Address.State state;
/**
* Gets the value of the street property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStreet() {
return street;
}
/**
* Sets the value of the street property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStreet(String value) {
this.street = value;
}
/**
* Gets the value of the state property.
*
* @return
* possible object is
* {@link EmployeeWithInnerClass.Address.State }
*
*/
public EmployeeWithInnerClass.Address.State getState() {
return state;
}
/**
* Sets the value of the state property.
*
* @param value
* allowed object is
* {@link EmployeeWithInnerClass.Address.State }
*
*/
public void setState(EmployeeWithInnerClass.Address.State value) {
this.state = value;
}
/**
* 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="Name" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name"
})
public static class State {
@XmlElement(name = "Name", required = true)
protected Object name;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setName(Object value) {
this.name = value;
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy