Uses of Class
de.geomobile.joined.api.data.JOUser

Packages that use JOUser
de.geomobile.joined.api.client This package contains classes for the seamless integration of the Joined functionality into your own application. 
de.geomobile.joined.api.data This package contains classes that represent basic entities as for instance users, friends and messages. 
 

Uses of JOUser in de.geomobile.joined.api.client
 

Methods in de.geomobile.joined.api.client that return JOUser
 JOUser JOClient.login(String username, String password)
           
abstract  JOUser JOAbstractClient.login(String username, String password)
          This method enables users to login at the Joined server.
 JOUser JOClient.register(String username, String password)
           
abstract  JOUser JOAbstractClient.register(String username, String password)
          This method creates a new user at the Joined server.
 

Methods in de.geomobile.joined.api.client with parameters of type JOUser
 void JOClient.acceptFriend(JOUser user, JOFriend friend)
           
abstract  void JOAbstractClient.acceptFriend(JOUser user, JOFriend friend)
          This method accepts the friend invitation of another user.
 void JOClient.addFriend(JOUser user, JOFriend friend)
           
abstract  void JOAbstractClient.addFriend(JOUser user, JOFriend friend)
          This method sends a friends invitation to another user.
 void JOClient.delete(JOUser user)
           
abstract  void JOAbstractClient.delete(JOUser user)
          This method deletes an existing user at the Joined server.
 void JOClient.deleteFriend(JOUser user, JOFriend friend)
           
abstract  void JOAbstractClient.deleteFriend(JOUser user, JOFriend friend)
          This method deletes a friend from the list of friends.
 void JOClient.deleteMessages(JOUser user)
           
abstract  void JOAbstractClient.deleteMessages(JOUser user)
          This method deletes all messages in the inbox of the logged in user.
 List<JOFriend> JOClient.getFriends(JOUser user)
           
abstract  List<JOFriend> JOAbstractClient.getFriends(JOUser user)
          This method get the friends of an user from the Joined server.
 List<JOMessage> JOClient.getMessages(JOUser user)
           
abstract  List<JOMessage> JOAbstractClient.getMessages(JOUser user)
          This method returns a list of all available message from the inbox of the logged in user.
 void JOClient.logout(JOUser user)
           
abstract  void JOAbstractClient.logout(JOUser user)
          This method enables users to logout at the Joined server.
 List<JOFriend> JOClient.searchFriends(JOUser user, String nickname)
           
abstract  List<JOFriend> JOAbstractClient.searchFriends(JOUser user, String nickname)
          This method searches other users at the Joined server.
 void JOClient.sendMessage(JOUser user, JOFriend friend, String message)
           
abstract  void JOAbstractClient.sendMessage(JOUser user, JOFriend friend, String message)
          This method sends a text message to a friend.
 void JOClient.updatePosition(JOUser user, double latitude, double longitude)
           
abstract  void JOAbstractClient.updatePosition(JOUser user, double latitude, double longitude)
          This method updates the position of the user at the Joined server.
 void JOClient.updateStatus(JOUser user, boolean active)
           
abstract  void JOAbstractClient.updateStatus(JOUser user, boolean active)
          This method updates the status of the user at the Joined server.
 

Uses of JOUser in de.geomobile.joined.api.data
 

Methods in de.geomobile.joined.api.data that return JOUser
 JOUser JOUserFactory.createUser(String json)
          This method creates an JOUser object from a Json document.
 



Copyright © 2012 GeoMobile GmbH. All Rights Reserved.