List<Identity> |
RelationshipStorage.getConnections(Identity identity) |
Gets connections with the identity.
|
List<Identity> |
RelationshipStorage.getConnections(Identity identity,
long offset,
long limit) |
Gets connections with the identity.
|
List<Identity> |
RelationshipStorage.getConnectionsByFilter(Identity existingIdentity,
ProfileFilter profileFilter,
long offset,
long limit) |
Gets the list access to get a list of identities who is connected with the provided identity
and filtered by profile filter.
|
int |
RelationshipStorage.getConnectionsCount(Identity identity) |
Gets count of connection with the identity.
|
int |
RelationshipStorage.getConnectionsCountByFilter(Identity existingIdentity,
ProfileFilter profileFilter) |
Gets the count of identities who is connected with the provided identity and filtered by profile filter.
|
List<Identity> |
RelationshipStorage.getIncomingByFilter(Identity existingIdentity,
ProfileFilter profileFilter,
long offset,
long limit) |
Gets the list access to get a list of identities who invited to connect to the provided identity
and filtered by profile filter.
|
int |
RelationshipStorage.getIncomingCountByFilter(Identity existingIdentity,
ProfileFilter profileFilter) |
Gets count of identities who invited to connect to the provided identity
and filtered by profile filter.
|
List<Identity> |
RelationshipStorage.getIncomingRelationships(Identity receiver,
long offset,
long limit) |
Gets the list of relationship by identity matching with checking
identity ids with offset, limit.
|
int |
RelationshipStorage.getIncomingRelationshipsCount(Identity receiver) |
Gets the count of the list of relationship by identity matching with checking
identity ids.
|
List<Identity> |
RelationshipStorage.getLastConnections(Identity identity,
int limit) |
Get the list of identities who are most recently connected with given user
the limit number of results must be greater than 0 or an empty list will be returned
|
List<Identity> |
RelationshipStorage.getOutgoingByFilter(Identity existingIdentity,
ProfileFilter profileFilter,
long offset,
long limit) |
Gets the list access to get a list of identities who was invited by the provided identity to connect
and filtered by profile filter.
|
int |
RelationshipStorage.getOutgoingCountByFilter(Identity existingIdentity,
ProfileFilter profileFilter) |
Gets count of identities who was invited by the provided identity to connect
and filtered by profile filter.
|
List<Identity> |
RelationshipStorage.getOutgoingRelationships(Identity sender,
long offset,
long limit) |
Gets the list of relationship by identity matching with checking
identity ids with offset, limit.
|
int |
RelationshipStorage.getOutgoingRelationshipsCount(Identity sender) |
Gets the count of the list of relationship by identity matching with checking
identity ids.
|
List<Relationship> |
RelationshipStorage.getReceiverRelationships(Identity receiver,
Relationship.Type type,
List<Identity> listCheckIdentity) |
Gets the list of relationship by identity id matching with checking
identity ids
|
Relationship |
RelationshipStorage.getRelationship(String uuid) |
Gets the relationship.
|
Relationship |
RelationshipStorage.getRelationship(Identity identity1,
Identity identity2) |
Gets the relationship of 2 identities.
|
List<Identity> |
RelationshipStorage.getRelationships(Identity identity,
long offset,
long limit) |
Gets the list of relationship by identity matching with checking
identity ids
|
List<Relationship> |
RelationshipStorage.getRelationships(Identity identity,
Relationship.Type type,
List<Identity> listCheckIdentity) |
Gets the list of relationship by identity matching with checking
identity ids
|
int |
RelationshipStorage.getRelationshipsCount(Identity identity) |
Gets the count of identities by identity matching with checking
identity ids.
|
List<Relationship> |
RelationshipStorage.getSenderRelationships(String senderId,
Relationship.Type type,
List<Identity> listCheckIdentity) |
Gets the list of relationship by identity id matching with checking
identity ids
|
List<Relationship> |
RelationshipStorage.getSenderRelationships(Identity sender,
Relationship.Type type,
List<Identity> listCheckIdentity) |
Gets the list of relationship by identity id matching with checking
identity ids
|
Map<Identity,Integer> |
RelationshipStorage.getSuggestions(Identity identity,
int maxConnections,
int maxConnectionsToLoad,
int maxSuggestions) |
Gets suggestions having common users with the provided identity.
|
boolean |
RelationshipStorage.hasRelationship(Identity identity1,
Identity identity2,
String relationshipPath) |
Has relationship by relationship path
|
void |
RelationshipStorage.removeRelationship(Relationship relationship) |
Removes the relationship.
|
Relationship |
RelationshipStorage.saveRelationship(Relationship relationship) |
Saves relationship.
|