Interface ActivitiesApi

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract ActivityPaging listActivitiesForPerson(@Path(value = "personId") String personId, @Query(value = "skipCount") Integer skipCount, @Query(value = "maxItems") Integer maxItems, @Query(value = "who") String who, @Query(value = "siteId") String siteId, @Query(value = "fields") List<String> fields) List activities Gets a list of activities for person personId.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • listActivitiesForPerson

        @Headers(value = {"Content-Type: application/json"})@GET(value = "alfresco/versions/1/people/{personId}/activities") abstract ActivityPaging listActivitiesForPerson(@Path(value = "personId") String personId, @Query(value = "skipCount") Integer skipCount, @Query(value = "maxItems") Integer maxItems, @Query(value = "who") String who, @Query(value = "siteId") String siteId, @Query(value = "fields") List<String> fields)

        List activities Gets a list of activities for person personId. You can use the -me- string in place of <personId> to specify the currently authenticated user. The endpoint is owned by defaultname service owner

        Parameters:
        personId - The identifier of a person.
        skipCount - The number of entities that exist in the collection before those included in this list.
        maxItems - The maximum number of items to return in the list.
        who - A filter to include the user's activities only `me`, other user's activities only `others`' (optional)
        siteId - Include only activity feed entries relating to this site.
        fields - A list of field names.