Package com.axemble.vdoc.sdk.interfaces
Interface IUserPersonalInformation
- All Superinterfaces:
Serializable
Interface for a user's personal information
-
Method Summary
Modifier and TypeMethodDescriptionGets the user's first address text.Gets the user's second address text.Retrieves the user's avatar as anIAttachmentobject.Gets the day of birth of the user.getCity()Gets the user's city.Gets the user's country.Gets the description of the user.Retrieves the nickname of the user.getSex()Retrieves the sex of the user.Gets the user's ZIP code.voidsetAddress1(String address1) Sets the first address text.voidsetAddress2(String address2) Sets the second address text.voidsetAvatar(IAttachment attachment) Sets the user's avatar.voidsetBirthday(Date date) Sets the date of birth of the user.voidSets the user's address city.voidsetCountry(String country) Sets the user's address countryvoidsetDescription(String description) Sets the description of the user.voidsetNickName(String nickName) Sets the nick name of the user.voidSets the sex of the user.voidsetZipcode(String zipCode) Sets the user's address ZIP code
-
Method Details
-
getNickName
String getNickName()Retrieves the nickname of the user.- Returns:
- A java.lang.String value.
-
setNickName
Sets the nick name of the user.- Parameters:
nickName- A java.lang.String value.
-
getSex
String getSex()Retrieves the sex of the user.- Returns:
- A java.lang.String value.
-
setSex
Sets the sex of the user.- Parameters:
sex- A java.lang.String value.
-
getBirthday
Date getBirthday()Gets the day of birth of the user.- Returns:
- A java.util.Date value.
-
setBirthday
Sets the date of birth of the user.- Parameters:
date- A java.util.Date value.
-
getCity
String getCity()Gets the user's city.- Returns:
- A java.lang.String value.
-
setCity
Sets the user's address city.- Parameters:
city- A java.lang.String value.
-
getAddress1
String getAddress1()Gets the user's first address text.- Returns:
- A java.lang.String value.
-
setAddress1
Sets the first address text.- Parameters:
address1- A java.lang.String value.
-
getAddress2
String getAddress2()Gets the user's second address text.- Returns:
- A java.lang.String value.
-
setAddress2
Sets the second address text.- Parameters:
address2- A java.lang.String value.
-
getZipcode
String getZipcode()Gets the user's ZIP code.- Returns:
- A java.lang.String value.
-
setZipcode
Sets the user's address ZIP code- Parameters:
zipCode- A java.lang.String value.
-
getCountry
String getCountry()Gets the user's country.- Returns:
- A java.lang.String value.
-
setCountry
Sets the user's address country- Parameters:
country- A java.lang.String value.
-
getDescription
String getDescription()Gets the description of the user.- Returns:
- A
Stringvalue.
-
setDescription
Sets the description of the user.- Parameters:
description- The new description to set the user with.
-
getAvatar
IAttachment getAvatar()Retrieves the user's avatar as anIAttachmentobject.- Returns:
- An
IAttachmentobject.
-
setAvatar
Sets the user's avatar.- Parameters:
attachment- AIAttachmentobject.
-