Uses of Class
org.exoplatform.social.core.relationship.model.Relationship.Type
-
Packages that use Relationship.Type Package Description org.exoplatform.social.core.manager org.exoplatform.social.core.relationship.model org.exoplatform.social.core.storage.api -
-
Uses of Relationship.Type in org.exoplatform.social.core.manager
Methods in org.exoplatform.social.core.manager that return Relationship.Type Modifier and Type Method Description Relationship.TypeRelationshipManager. getConnectionStatus(Identity fromIdentity, Identity toIdentity)Deprecated.UseRelationshipManager.getStatus(Identity, Identity)instead.Relationship.TypeRelationshipManager. getRelationshipStatus(Relationship rel, Identity id)Deprecated.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.Relationship.TypeRelationshipManager. getStatus(Identity identity1, Identity identity2)Gets the relationship status between 2 identities.Methods in org.exoplatform.social.core.manager with parameters of type Relationship.Type Modifier and Type Method Description List<Identity>RelationshipManager. findRelationships(Identity ownerIdentity, Relationship.Type relationshipType)Deprecated.List<Relationship>RelationshipManager. getAll(Identity identity, Relationship.Type type, List<Identity> identities)Deprecated.UseRelationshipManager.getAllWithListAccess(Identity)instead.List<Relationship>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.Type Modifier and Type Method Description Relationship.TypeRelationship. getStatus()Gets the status.static Relationship.TypeRelationship.Type. valueOf(String name)Returns the enum constant of this type with the specified name.static Relationship.Type[]Relationship.Type. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.exoplatform.social.core.relationship.model with parameters of type Relationship.Type Modifier and Type Method Description voidRelationship. setStatus(Relationship.Type status)Sets the status.Constructors in org.exoplatform.social.core.relationship.model with parameters of type Relationship.Type Constructor Description Relationship(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.Type Modifier and Type Method Description List<Identity>IdentityStorage. 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.List<Relationship>RelationshipStorage. getReceiverRelationships(Identity receiver, Relationship.Type type, List<Identity> listCheckIdentity)Gets the list of relationship by identity id matching with checking identity idsList<Relationship>RelationshipStorage. getRelationships(Identity identity, Relationship.Type type, List<Identity> listCheckIdentity)Gets the list of relationship by identity matching with checking identity idsList<Relationship>RelationshipStorage. 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.List<Relationship>RelationshipStorage. getSenderRelationships(String senderId, Relationship.Type type, List<Identity> listCheckIdentity)Gets the list of relationship by identity id matching with checking identity idsList<Relationship>RelationshipStorage. getSenderRelationships(Identity sender, Relationship.Type type, List<Identity> listCheckIdentity)Gets the list of relationship by identity id matching with checking identity ids
-