Uses of Enum Class
org.exoplatform.social.core.relationship.model.Relationship.Type
Packages that use Relationship.Type
Package
Description
-
Uses of Relationship.Type in org.exoplatform.social.core.manager
Methods in org.exoplatform.social.core.manager that return Relationship.TypeModifier and TypeMethodDescriptionRelationshipManager.getConnectionStatus(Identity fromIdentity, Identity toIdentity) Deprecated, for removal: This API element is subject to removal in a future version.RelationshipManager.getRelationshipStatus(Relationship rel, Identity id) Deprecated, for removal: This API element is subject to removal in a future version.Now we don't use this method to get relationship we get status of relationship object and depend on sender and receiver, we can define pending relationship or incoming relationship.Gets the relationship status between 2 identities.Methods in org.exoplatform.social.core.manager with parameters of type Relationship.TypeModifier and TypeMethodDescriptionRelationshipManager.findRelationships(Identity ownerIdentity, Relationship.Type relationshipType) Deprecated, for removal: This API element is subject to removal in a future version.RelationshipManager.getAll(Identity identity, Relationship.Type type, List<Identity> identities) Deprecated, for removal: This API element is subject to removal in a future version.UseRelationshipManager.getAllWithListAccess(Identity)instead.RelationshipManager.getRelationshipsByStatus(Identity identity, Relationship.Type type, int offset, int limit) Gets a list which contains all relationships by status.intRelationshipManager.getRelationshipsCountByStatus(Identity identity, Relationship.Type type) Gets number of relationships by status. -
Uses of Relationship.Type in org.exoplatform.social.core.relationship.model
Methods in org.exoplatform.social.core.relationship.model that return Relationship.TypeModifier and TypeMethodDescriptionRelationship.getStatus()Gets the status.static Relationship.TypeReturns the enum constant of this class with the specified name.static Relationship.Type[]Relationship.Type.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.exoplatform.social.core.relationship.model with parameters of type Relationship.TypeModifier and TypeMethodDescriptionvoidRelationship.setStatus(Relationship.Type status) Sets the status.Constructors in org.exoplatform.social.core.relationship.model with parameters of type Relationship.TypeModifierConstructorDescriptionRelationship(Identity sender, Identity receiver, Relationship.Type status) Instantiates a new relationship. -
Uses of Relationship.Type in org.exoplatform.social.core.storage.api
Methods in org.exoplatform.social.core.storage.api with parameters of type Relationship.TypeModifier and TypeMethodDescriptionIdentityStorage.getIdentitiesForMentions(String providerId, ProfileFilter profileFilter, Relationship.Type type, long offset, long limit, boolean forceLoadOrReloadProfile) Gets the identities by profile filter.intIdentityStorage.getIdentitiesForMentionsCount(String providerId, ProfileFilter profileFilter, Relationship.Type type) Gets the count identities by profile filter.RelationshipStorage.getReceiverRelationships(Identity receiver, Relationship.Type type, List<Identity> listCheckIdentity) Gets the list of relationship by identity id matching with checking identity idsRelationshipStorage.getRelationships(Identity identity, Relationship.Type type, List<Identity> listCheckIdentity) Gets the list of relationship by identity matching with checking identity idsRelationshipStorage.getRelationshipsByStatus(Identity identity, Relationship.Type type, long offset, long limit) Gets a list of all relationships by status.intRelationshipStorage.getRelationshipsCountByStatus(Identity identity, Relationship.Type type) Gets number of relationships by status.RelationshipStorage.getSenderRelationships(String senderId, Relationship.Type type, List<Identity> listCheckIdentity) Gets the list of relationship by identity id matching with checking identity idsRelationshipStorage.getSenderRelationships(Identity sender, Relationship.Type type, List<Identity> listCheckIdentity) Gets the list of relationship by identity id matching with checking identity ids
RelationshipManager.getStatus(Identity, Identity)instead.