com.konakart.appif
Interface CustomerSearchIf
public interface CustomerSearchIf
Contains information required to search for a customer. Whenever an attribute is set, it is used
as a constraint. When using the java API, a com.konakart.app.CustomerSearch object is normally
instantiated. Note that when this object initialises it sets the following attributes:
- id = com.konakart.bl.ConstantsMgr.NOT_SET
- groupId = com.konakart.bl.ConstantsMgr.NOT_SET
- type = com.konakart.bl.ConstantsMgr.NOT_SET
When using the SOAP interface, this initialisation will not be done (because you will most
probably be initialising an object created by a tool such as Apache Axis by reading the WSDL), so
you will have to do it manually.
getEmailAddr
java.lang.String getEmailAddr()
- Returns:
- Returns the emailAddr.
setEmailAddr
void setEmailAddr(java.lang.String emailAddr)
- Parameters:
emailAddr - The emailAddr to set.
getFirstName
java.lang.String getFirstName()
- Returns:
- Returns the firstName.
setFirstName
void setFirstName(java.lang.String firstName)
- Parameters:
firstName - The firstName to set.
getId
int getId()
- Returns:
- Returns the id.
setId
void setId(int id)
- Parameters:
id - The id to set.
getLastName
java.lang.String getLastName()
- Returns:
- Returns the lastName.
setLastName
void setLastName(java.lang.String lastName)
- Parameters:
lastName - The lastName to set.
getBirthDate
java.util.Calendar getBirthDate()
- Returns:
- Returns the birthDate.
setBirthDate
void setBirthDate(java.util.Calendar birthDate)
- Parameters:
birthDate - The birthDate to set.
getType
int getType()
- Returns:
- Returns the type.
setType
void setType(int type)
- Parameters:
type - The type to set.
Copyright © 2006 DS Data Systems UK Ltd.