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 anIAttachment
object.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.void
setAddress1
(String address1) Sets the first address text.void
setAddress2
(String address2) Sets the second address text.void
setAvatar
(IAttachment attachment) Sets the user's avatar.void
setBirthday
(Date date) Sets the date of birth of the user.void
Sets the user's address city.void
setCountry
(String country) Sets the user's address countryvoid
setDescription
(String description) Sets the description of the user.void
setNickName
(String nickName) Sets the nick name of the user.void
Sets the sex of the user.void
setZipcode
(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
String
value.
-
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 anIAttachment
object.- Returns:
- An
IAttachment
object.
-
setAvatar
Sets the user's avatar.- Parameters:
attachment
- AIAttachment
object.
-