Uses of Class
de.geomobile.joined.api.exception.FriendFinderHTTPException

Packages that use FriendFinderHTTPException
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.service This package contains classes for the internal communication with the Joined server. 
 

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

Methods in de.geomobile.joined.api.client that throw FriendFinderHTTPException
 void JoinedClient.acceptFriend(User user, Friend friend)
           
abstract  void AbstractJoinedClient.acceptFriend(User user, Friend friend)
          This method accepts the friend invitation of another user.
 void JoinedClient.addFriend(User user, Friend friend)
           
abstract  void AbstractJoinedClient.addFriend(User user, Friend friend)
          This methods sends a friends invitation to another user.
 void JoinedClient.delete(User user)
           
abstract  void AbstractJoinedClient.delete(User user)
          This methods deletes an existing user at the Joined server.
 void JoinedClient.deleteFriend(User user, Friend friend)
           
abstract  void AbstractJoinedClient.deleteFriend(User user, Friend friend)
          This method deletes a friend from the list of friends.
 void JoinedClient.deleteMessages(User user)
           
abstract  void AbstractJoinedClient.deleteMessages(User user)
          This methods deletes all messages in the inbox of the logged in user.
 List<Friend> JoinedClient.getFriends(User user)
           
abstract  List<Friend> AbstractJoinedClient.getFriends(User user)
          This method get the friends of an user from the Joined server.
 List<Message> JoinedClient.getMessages(User user)
           
abstract  List<Message> AbstractJoinedClient.getMessages(User user)
          This method returns a list of all available message from the inbox of the logged in user.
 User JoinedClient.login(String username, String password)
           
abstract  User AbstractJoinedClient.login(String username, String password)
          This methods enables users to login at the Joined server.
 void JoinedClient.logout(User user)
           
abstract  void AbstractJoinedClient.logout(User user)
          This methods enables users to logout at the Joined server.
 User JoinedClient.register(String username, String password)
           
abstract  User AbstractJoinedClient.register(String username, String password)
          This methods creates a new user at the Joined server.
 List<Friend> JoinedClient.searchFriends(User user, String nickname)
           
abstract  List<Friend> AbstractJoinedClient.searchFriends(User user, String nickname)
          This method searches other users at the Joined server.
 void JoinedClient.sendMessage(User user, Friend friend, String message)
           
abstract  void AbstractJoinedClient.sendMessage(User user, Friend friend, String message)
          This methods sends a text message to a friend.
 void JoinedClient.updatePosition(User user, double latitude, double longitude)
           
abstract  void AbstractJoinedClient.updatePosition(User user, double latitude, double longitude)
          This methods updates the position of the user at the Joined server.
 void JoinedClient.updateStatus(User user, boolean active)
           
abstract  void AbstractJoinedClient.updateStatus(User user, boolean active)
          This method updates the status of the user at the Joined server.
 

Uses of FriendFinderHTTPException in de.geomobile.joined.api.service
 

Methods in de.geomobile.joined.api.service that throw FriendFinderHTTPException
 String JoinedService.acceptFriend(String userId, String secureToken, String friendId)
          Accept a friend invitation.
 void JoinedService.activateUser(String userId, String secureToken, boolean active)
          Activate or deactivate user
 void JoinedService.addFriend(String userId, String secureToken, String friendId)
          Add a friend.
 boolean JoinedService.deleteFriend(String userId, String secureToken, String friendId)
          Delete a friend.
 void JoinedService.deleteMessages(String userId, String secureToken)
          Deletes all Messages from Server of the User as recipient in the DB.
 void JoinedService.deleteUser(String userId, String secureToken)
          Delete current user
 String JoinedService.ffLogin(String name, String password)
           
 String JoinedService.ffRegister(String name, String password)
          Register for FriendFinder users.
 String JoinedService.getFriends(String userId, String secureToken)
           
 String JoinedService.getMessages(String userId, String secureToken)
          Gets all unread Messages of the User.
 void JoinedService.logoutUser(String userId, String secureToken)
          User logout.
 String JoinedService.searchFriends(String userId, String secureToken, String nickname)
          Search for users by nickname
 String JoinedService.sendMessage(String userId, String secureToken, String friendsId, String msg)
          Send a text message to friend
 void JoinedService.updateUser(String userId, String secureToken, double latitude, double longitude)
          Update users current location
 



Copyright © 2012 GeoMobile GmbH. All Rights Reserved.