public interface VoteHistoryStore
AvatarImpl.| Modifier and Type | Method and Description |
|---|---|
void |
add(VoteHistoryEntry entry)
Creates an issue history entry
|
void |
delete(String issueId)
Remove all the vote history for an issue.
|
List<VoteHistoryEntry> |
getHistory(Long issueId)
Retrieve the vote history for an issue
|
List<VoteHistoryEntry> getHistory(Long issueId) throws DataAccessException
issueId - the issue Id, must not be null.DataAccessException - if there is a back-end storage problem.void delete(String issueId) throws DataAccessException
issueId - the issue id, must not be null.DataAccessException - if there is a back-end storage problem.void add(VoteHistoryEntry entry) throws DataAccessException
entry - a vote history entry for an issue.DataAccessException - if there is a back-end storage problem.Copyright © 2002-2019 Atlassian. All Rights Reserved.