| Package | Description |
|---|---|
| javastrava.api.v3.rest | |
| javastrava.api.v3.service | |
| javastrava.api.v3.service.impl |
| Modifier and Type | Method and Description |
|---|---|
StravaComment |
API.createComment(Integer activityId,
String text) |
StravaComment |
ActivityAPI.createComment(Integer activityId,
String text) |
StravaComment[] |
API.listActivityComments(Integer activityId,
Boolean markdown,
Integer page,
Integer perPage) |
StravaComment[] |
ActivityAPI.listActivityComments(Integer activityId,
Boolean markdown,
Integer page,
Integer perPage) |
| Modifier and Type | Method and Description |
|---|---|
StravaAPIFuture<StravaComment> |
API.createCommentAsync(Integer activityId,
String text) |
| Modifier and Type | Method and Description |
|---|---|
void |
ActivityAPI.createComment(Integer activityId,
String text,
StravaAPICallback<StravaComment> callback) |
| Modifier and Type | Method and Description |
|---|---|
StravaComment |
Strava.createComment(Integer activityId,
String text) |
StravaComment |
ActivityService.createComment(Integer activityId,
String text)
Create a comment on an activity.
|
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<StravaComment> |
Strava.createCommentAsync(Integer activityId,
String text) |
CompletableFuture<StravaComment> |
ActivityService.createCommentAsync(Integer activityId,
String text)
Create a comment on an activity.
|
List<StravaComment> |
Strava.listActivityComments(Integer activityId) |
List<StravaComment> |
ActivityService.listActivityComments(Integer activityId)
Comments on an activity can be viewed by any user.
|
List<StravaComment> |
Strava.listActivityComments(Integer activityId,
Boolean markdown) |
List<StravaComment> |
ActivityService.listActivityComments(Integer activityId,
Boolean markdown)
Comments on an activity can be viewed by any user.
|
List<StravaComment> |
Strava.listActivityComments(Integer activityId,
Boolean markdown,
Paging pagingInstruction) |
List<StravaComment> |
ActivityService.listActivityComments(Integer activityId,
Boolean markdown,
Paging pagingInstruction)
Comments on an activity can be viewed by any user.
|
List<StravaComment> |
Strava.listActivityComments(Integer activityId,
Paging pagingInstruction) |
List<StravaComment> |
ActivityService.listActivityComments(Integer activityId,
Paging pagingInstruction)
Comments on an activity can be viewed by any user.
|
CompletableFuture<List<StravaComment>> |
Strava.listActivityCommentsAsync(Integer activityId) |
CompletableFuture<List<StravaComment>> |
ActivityService.listActivityCommentsAsync(Integer activityId)
Comments on an activity can be viewed by any user.
|
CompletableFuture<List<StravaComment>> |
Strava.listActivityCommentsAsync(Integer activityId,
Boolean markdown) |
CompletableFuture<List<StravaComment>> |
ActivityService.listActivityCommentsAsync(Integer activityId,
Boolean markdown)
Comments on an activity can be viewed by any user.
|
CompletableFuture<List<StravaComment>> |
Strava.listActivityCommentsAsync(Integer activityId,
Boolean markdown,
Paging pagingInstruction) |
CompletableFuture<List<StravaComment>> |
ActivityService.listActivityCommentsAsync(Integer activityId,
Boolean markdown,
Paging pagingInstruction)
Comments on an activity can be viewed by any user.
|
CompletableFuture<List<StravaComment>> |
Strava.listActivityCommentsAsync(Integer activityId,
Paging pagingInstruction) |
CompletableFuture<List<StravaComment>> |
ActivityService.listActivityCommentsAsync(Integer activityId,
Paging pagingInstruction)
Comments on an activity can be viewed by any user.
|
List<StravaComment> |
Strava.listAllActivityComments(Integer activityId)
USE WITH CAUTION - ACTIVITIES WITH MANY COMMENTS WILL REQUIRE MANY CALLS TO THE STRAVA API
|
List<StravaComment> |
ActivityService.listAllActivityComments(Integer activityId)
List ALL comments on an activity, regardless of how many there are
|
CompletableFuture<List<StravaComment>> |
Strava.listAllActivityCommentsAsync(Integer activityId)
USE WITH CAUTION - ACTIVITIES WITH MANY COMMENTS WILL REQUIRE MANY CALLS TO THE STRAVA API
|
CompletableFuture<List<StravaComment>> |
ActivityService.listAllActivityCommentsAsync(Integer activityId)
List ALL comments on an activity, regardless of how many there are
|
| Modifier and Type | Method and Description |
|---|---|
void |
Strava.deleteComment(StravaComment comment) |
void |
ActivityService.deleteComment(StravaComment comment)
Delete a comment belonging to the authenticated user
|
CompletableFuture<Void> |
Strava.deleteCommentAsync(StravaComment comment) |
CompletableFuture<Void> |
ActivityService.deleteCommentAsync(StravaComment comment)
Delete a comment belonging to the authenticated user
|
| Modifier and Type | Method and Description |
|---|---|
StravaComment |
ActivityServiceImpl.createComment(Integer activityId,
String text) |
| Modifier and Type | Method and Description |
|---|---|
void |
ActivityServiceImpl.deleteComment(StravaComment comment) |
CompletableFuture<Void> |
ActivityServiceImpl.deleteCommentAsync(StravaComment comment) |
Copyright © 2016 Dan Shannon. All rights reserved.