1 2 package org.mule.example.employee; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 8 9 /** 10 * <p>Java class for addEmployee complex type. 11 * 12 * <p>The following schema fragment specifies the expected content contained within this class. 13 * 14 * <pre> 15 * <complexType name="addEmployee"> 16 * <complexContent> 17 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 18 * <sequence> 19 * <element name="employee" type="{http://employee.example.mule.org/}employee" minOccurs="0"/> 20 * </sequence> 21 * </restriction> 22 * </complexContent> 23 * </complexType> 24 * </pre> 25 * 26 * 27 */ 28 @XmlAccessorType(XmlAccessType.FIELD) 29 @XmlType(name = "addEmployee", propOrder = { 30 "employee" 31 }) 32 public class AddEmployee { 33 34 protected Employee employee; 35 36 /** 37 * Gets the value of the employee property. 38 * 39 * @return 40 * possible object is 41 * {@link Employee } 42 * 43 */ 44 public Employee getEmployee() { 45 return employee; 46 } 47 48 /** 49 * Sets the value of the employee property. 50 * 51 * @param value 52 * allowed object is 53 * {@link Employee } 54 * 55 */ 56 public void setEmployee(Employee value) { 57 this.employee = value; 58 } 59 60 }