|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use User | |
|---|---|
| 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 User in de.geomobile.joined.api.client |
|---|
| Methods in de.geomobile.joined.api.client that return 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. |
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. |
| Methods in de.geomobile.joined.api.client with parameters of type User | |
|---|---|
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. |
void |
JoinedClient.logout(User user)
|
abstract void |
AbstractJoinedClient.logout(User user)
This methods enables users to logout 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 User in de.geomobile.joined.api.data |
|---|
| Methods in de.geomobile.joined.api.data that return User | |
|---|---|
User |
UserFactory.createUser(String json)
This method creates an User object from a Json document. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||