Package ejava.projects.esales.dto
Class Account
- java.lang.Object
-
- ejava.projects.esales.dto.ReferencedType
-
- ejava.projects.esales.dto.Account
-
public class Account extends ReferencedType
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <extension base="{http://ejava.info/eSales/1.0.2007.2}ReferencedType"> <sequence> <element name="login" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="middleName" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}date"/> <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> <element name="address" type="{http://www.w3.org/2001/XMLSchema}IDREFS" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Object>
address
protected String
email
protected Date
endDate
protected String
firstName
protected String
lastName
protected String
login
protected String
middleName
protected Date
startDate
-
Fields inherited from class ejava.projects.esales.dto.ReferencedType
refid
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>
getAddress()
Gets the value of the address property.String
getEmail()
Gets the value of the email property.Date
getEndDate()
Gets the value of the endDate property.String
getFirstName()
Gets the value of the firstName property.String
getLastName()
Gets the value of the lastName property.String
getLogin()
Gets the value of the login property.String
getMiddleName()
Gets the value of the middleName property.Date
getStartDate()
Gets the value of the startDate property.void
setEmail(String value)
Sets the value of the email property.void
setEndDate(Date value)
Sets the value of the endDate property.void
setFirstName(String value)
Sets the value of the firstName property.void
setLastName(String value)
Sets the value of the lastName property.void
setLogin(String value)
Sets the value of the login property.void
setMiddleName(String value)
Sets the value of the middleName property.void
setStartDate(Date value)
Sets the value of the startDate property.-
Methods inherited from class ejava.projects.esales.dto.ReferencedType
getRefid, setRefid
-
-
-
-
Method Detail
-
getLogin
public String getLogin()
Gets the value of the login property.- Returns:
- possible object is
String
-
setLogin
public void setLogin(String value)
Sets the value of the login property.- Parameters:
value
- allowed object isString
-
getFirstName
public String getFirstName()
Gets the value of the firstName property.- Returns:
- possible object is
String
-
setFirstName
public void setFirstName(String value)
Sets the value of the firstName property.- Parameters:
value
- allowed object isString
-
getMiddleName
public String getMiddleName()
Gets the value of the middleName property.- Returns:
- possible object is
String
-
setMiddleName
public void setMiddleName(String value)
Sets the value of the middleName property.- Parameters:
value
- allowed object isString
-
getLastName
public String getLastName()
Gets the value of the lastName property.- Returns:
- possible object is
String
-
setLastName
public void setLastName(String value)
Sets the value of the lastName property.- Parameters:
value
- allowed object isString
-
getEmail
public String getEmail()
Gets the value of the email property.- Returns:
- possible object is
String
-
setEmail
public void setEmail(String value)
Sets the value of the email property.- Parameters:
value
- allowed object isString
-
getStartDate
public Date getStartDate()
Gets the value of the startDate property.- Returns:
- possible object is
String
-
setStartDate
public void setStartDate(Date value)
Sets the value of the startDate property.- Parameters:
value
- allowed object isString
-
getEndDate
public Date getEndDate()
Gets the value of the endDate property.- Returns:
- possible object is
String
-
setEndDate
public void setEndDate(Date value)
Sets the value of the endDate property.- Parameters:
value
- allowed object isString
-
getAddress
public List<Object> getAddress()
Gets the value of the address property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the address property.For example, to add a new item, do as follows:
getAddress().add(newItem);
Objects of the following type(s) are allowed in the list
Object
-
-