org.mule.example.employee
Class Employee

java.lang.Object
  extended by org.mule.example.employee.Employee

public class Employee
extends Object

Java class for employee complex type.

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

 <complexType name="employee">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="division" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="picture" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  String division
           
protected  String name
           
protected  DataHandler picture
           
 
Constructor Summary
Employee()
           
 
Method Summary
 String getDivision()
          Gets the value of the division property.
 String getName()
          Gets the value of the name property.
 DataHandler getPicture()
          Gets the value of the picture property.
 void setDivision(String value)
          Sets the value of the division property.
 void setName(String value)
          Sets the value of the name property.
 void setPicture(DataHandler value)
          Sets the value of the picture property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

division

protected String division

name

protected String name

picture

protected DataHandler picture
Constructor Detail

Employee

public Employee()
Method Detail

getDivision

public String getDivision()
Gets the value of the division property.

Returns:
possible object is String

setDivision

public void setDivision(String value)
Sets the value of the division property.

Parameters:
value - allowed object is String

getName

public String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getPicture

public DataHandler getPicture()
Gets the value of the picture property.

Returns:
possible object is DataHandler

setPicture

public void setPicture(DataHandler value)
Sets the value of the picture property.

Parameters:
value - allowed object is DataHandler


Copyright © 2003-2012 MuleSoft, Inc.. All Rights Reserved.