Interface IUserPersonalInformation

All Superinterfaces:
Serializable

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

    • getNickName Link icon

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

      void setNickName(String nickName)
      Sets the nick name of the user.
      Parameters:
      nickName - A java.lang.String value.
    • getSex Link icon

      String getSex()
      Retrieves the sex of the user.
      Returns:
      A java.lang.String value.
    • setSex Link icon

      void setSex(String sex)
      Sets the sex of the user.
      Parameters:
      sex - A java.lang.String value.
    • getBirthday Link icon

      Date getBirthday()
      Gets the day of birth of the user.
      Returns:
      A java.util.Date value.
    • setBirthday Link icon

      void setBirthday(Date date)
      Sets the date of birth of the user.
      Parameters:
      date - A java.util.Date value.
    • getCity Link icon

      String getCity()
      Gets the user's city.
      Returns:
      A java.lang.String value.
    • setCity Link icon

      void setCity(String city)
      Sets the user's address city.
      Parameters:
      city - A java.lang.String value.
    • getAddress1 Link icon

      String getAddress1()
      Gets the user's first address text.
      Returns:
      A java.lang.String value.
    • setAddress1 Link icon

      void setAddress1(String address1)
      Sets the first address text.
      Parameters:
      address1 - A java.lang.String value.
    • getAddress2 Link icon

      String getAddress2()
      Gets the user's second address text.
      Returns:
      A java.lang.String value.
    • setAddress2 Link icon

      void setAddress2(String address2)
      Sets the second address text.
      Parameters:
      address2 - A java.lang.String value.
    • getZipcode Link icon

      String getZipcode()
      Gets the user's ZIP code.
      Returns:
      A java.lang.String value.
    • setZipcode Link icon

      void setZipcode(String zipCode)
      Sets the user's address ZIP code
      Parameters:
      zipCode - A java.lang.String value.
    • getCountry Link icon

      String getCountry()
      Gets the user's country.
      Returns:
      A java.lang.String value.
    • setCountry Link icon

      void setCountry(String country)
      Sets the user's address country
      Parameters:
      country - A java.lang.String value.
    • getDescription Link icon

      String getDescription()
      Gets the description of the user.
      Returns:
      A String value.
    • setDescription Link icon

      void setDescription(String description)
      Sets the description of the user.
      Parameters:
      description - The new description to set the user with.
    • getAvatar Link icon

      IAttachment getAvatar()
      Retrieves the user's avatar as an IAttachment object.
      Returns:
      An IAttachment object.
    • setAvatar Link icon

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