public interface UserMethods
| Modifier and Type | Method and Description |
|---|---|
User |
createUser(CreateUserParams params)
Creates a user in the space.
|
User |
deleteUser(java.lang.Object numericUserId)
Deletes the user in space.
|
User |
getMyself()
Returns the own information.
|
ResponseList<ViewedIssue> |
getRecentlyViewedIssues()
Returns the recently viewed issues
|
ResponseList<ViewedIssue> |
getRecentlyViewedIssues(OffsetParams params)
Returns the recently viewed issues
|
ResponseList<ViewedProject> |
getRecentlyViewedProjects()
Returns the recently viewed projects
|
ResponseList<ViewedProject> |
getRecentlyViewedProjects(OffsetParams params)
Returns the recently viewed projects
|
ResponseList<ViewedWiki> |
getRecentlyViewedWikis()
Returns the recently viewed wikis
|
ResponseList<ViewedWiki> |
getRecentlyViewedWikis(OffsetParams params)
Returns the recently viewed wikis
|
User |
getUser(java.lang.Object numericUserId)
Returns the user in the space.
|
ResponseList<Activity> |
getUserActivities(java.lang.Object numericUserId)
Returns the user recently updates
|
ResponseList<Activity> |
getUserActivities(java.lang.Object numericUserId,
ActivityQueryParams queryParams)
Returns the user recently updates
|
Icon |
getUserIcon(java.lang.Object numericUserId)
Returns the user icon.
|
ResponseList<User> |
getUsers()
Returns all the users in the space.
|
int |
getUserStarCount(java.lang.Object numericUserId,
GetStarsParams params)
Returns the received star count
|
ResponseList<Star> |
getUserStars(java.lang.Object numericUserId)
Returns the received stars
|
ResponseList<Star> |
getUserStars(java.lang.Object numericUserId,
QueryParams queryParams)
Returns the received stars
|
int |
getUserWatchCount(java.lang.Object numericUserId,
GetWatchesParams params)
Returns the received watch count
|
ResponseList<Watch> |
getUserWatches(java.lang.Object numericUserId)
Returns the received watchings
|
ResponseList<User> getUsers() throws BacklogException
BacklogExceptionUser getUser(java.lang.Object numericUserId) throws BacklogException
numericUserId - the user identifierBacklogExceptionUser createUser(CreateUserParams params) throws BacklogException
params - the creating user parameterBacklogExceptionUser deleteUser(java.lang.Object numericUserId) throws BacklogException
numericUserId - the user identifierBacklogExceptionUser getMyself() throws BacklogException
BacklogExceptionIcon getUserIcon(java.lang.Object numericUserId) throws BacklogException
numericUserId - the user identifierBacklogExceptionResponseList<Activity> getUserActivities(java.lang.Object numericUserId) throws BacklogException
numericUserId - the user identifierBacklogExceptionResponseList<Activity> getUserActivities(java.lang.Object numericUserId, ActivityQueryParams queryParams) throws BacklogException
numericUserId - the user identifierqueryParams - the query parametersBacklogExceptionResponseList<Star> getUserStars(java.lang.Object numericUserId) throws BacklogException
numericUserId - the user identifierBacklogExceptionResponseList<Star> getUserStars(java.lang.Object numericUserId, QueryParams queryParams) throws BacklogException
numericUserId - the user identifierqueryParams - the query parametersBacklogExceptionint getUserStarCount(java.lang.Object numericUserId,
GetStarsParams params)
throws BacklogException
numericUserId - the user identifierparams - star count parametersBacklogExceptionResponseList<ViewedIssue> getRecentlyViewedIssues() throws BacklogException
BacklogExceptionResponseList<ViewedIssue> getRecentlyViewedIssues(OffsetParams params) throws BacklogException
params - the offset parametersBacklogExceptionResponseList<ViewedProject> getRecentlyViewedProjects() throws BacklogException
BacklogExceptionResponseList<ViewedProject> getRecentlyViewedProjects(OffsetParams params) throws BacklogException
params - the offset parametersBacklogExceptionResponseList<ViewedWiki> getRecentlyViewedWikis() throws BacklogException
BacklogExceptionResponseList<ViewedWiki> getRecentlyViewedWikis(OffsetParams params) throws BacklogException
params - the offset parametersBacklogExceptionint getUserWatchCount(java.lang.Object numericUserId,
GetWatchesParams params)
throws BacklogException
numericUserId - the user identifierparams - watch count parametersBacklogExceptionResponseList<Watch> getUserWatches(java.lang.Object numericUserId) throws BacklogException
numericUserId - the user identifierBacklogException