Interface IUserPersonalInformation

All Superinterfaces:
Serializable

public interface IUserPersonalInformation extends Serializable
Interface for a user's personal information
  • Method Details

    • getNickName

      String getNickName()
      Retrieves the nickname of the user.
      Returns:
      A java.lang.String value.
    • setNickName

      void setNickName(String nickName)
      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

      void setSex(String sex)
      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

      void setBirthday(Date date)
      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

      void setCity(String city)
      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

      void setAddress1(String address1)
      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

      void setAddress2(String address2)
      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

      void setZipcode(String zipCode)
      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

      void setCountry(String country)
      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

      void setDescription(String description)
      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 an IAttachment object.
      Returns:
      An IAttachment object.
    • setAvatar

      void setAvatar(IAttachment attachment)
      Sets the user's avatar.
      Parameters:
      attachment - A IAttachment object.