|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use RedmineException | |
|---|---|
| org.redmine.ta | Use RedmineManager class from this package to communicate with Redmine servers. |
| Uses of RedmineException in org.redmine.ta |
|---|
| Methods in org.redmine.ta that throw RedmineException | |
|---|---|
IssueCategory |
RedmineManager.createCategory(IssueCategory category)
creates a new IssueCategory for the Project contained. |
Issue |
RedmineManager.createIssue(String projectKey,
Issue issue)
Sample usage: |
Project |
RedmineManager.createProject(Project project)
Sample usage: |
IssueRelation |
RedmineManager.createRelation(Integer issueId,
Integer issueToId,
String type)
|
IssueRelation |
RedmineManager.createRelation(String projectKey,
Integer issueId,
Integer issueToId,
String type)
Deprecated. use createRelation(Integer issueId, Integer issueToId, String type). "projectKey" parameter is not used anyway. this method will be deleted soon. |
TimeEntry |
RedmineManager.createTimeEntry(TimeEntry obj)
|
User |
RedmineManager.createUser(User user)
|
Version |
RedmineManager.createVersion(Version version)
creates a new Version for the Project contained. |
void |
RedmineManager.deleteCategory(IssueCategory category)
deletes an IssueCategory. |
void |
RedmineManager.deleteIssue(Integer id)
|
void |
RedmineManager.deleteIssueRelations(Issue redmineIssue)
Delete all issue's relations |
void |
RedmineManager.deleteIssueRelationsByIssueId(Integer id)
Delete relations for the given issue ID. |
void |
RedmineManager.deleteProject(String projectKey)
|
void |
RedmineManager.deleteRelation(Integer id)
Delete Issue Relation with the given ID. |
void |
RedmineManager.deleteTimeEntry(Integer id)
|
void |
RedmineManager.deleteUser(Integer userId)
|
void |
RedmineManager.deleteVersion(Version version)
deletes a new Version from the Project contained. |
Attachment |
RedmineManager.getAttachmentById(int attachmentID)
Delivers an Attachment by its ID. |
List<IssueCategory> |
RedmineManager.getCategories(int projectID)
delivers a list of IssueCategorys of a Project |
User |
RedmineManager.getCurrentUser()
|
Issue |
RedmineManager.getIssueById(Integer id,
RedmineManager.INCLUDE... include)
|
List<Issue> |
RedmineManager.getIssues(Map<String,String> pParameters)
Generic method to search for issues. |
List<Issue> |
RedmineManager.getIssues(String projectKey,
Integer queryId,
RedmineManager.INCLUDE... include)
|
List<Issue> |
RedmineManager.getIssuesBySummary(String projectKey,
String summaryField)
There could be several issues with the same summary, so the method returns List. |
List<News> |
RedmineManager.getNews(String projectKey)
|
Project |
RedmineManager.getProjectByKey(String projectKey)
|
List<Project> |
RedmineManager.getProjects()
Load the list of projects available to the user, which is represented by the API access key. |
List<SavedQuery> |
RedmineManager.getSavedQueries()
Get all "saved queries" available to the current user. |
List<SavedQuery> |
RedmineManager.getSavedQueries(String projectKey)
Get "saved queries" for the given project available to the current user. |
List<IssueStatus> |
RedmineManager.getStatuses()
Delivers a list of existing IssueStatuses. |
List<TimeEntry> |
RedmineManager.getTimeEntries()
|
List<TimeEntry> |
RedmineManager.getTimeEntriesForIssue(Integer issueId)
|
TimeEntry |
RedmineManager.getTimeEntry(Integer id)
|
List<Tracker> |
RedmineManager.getTrackers()
|
User |
RedmineManager.getUserById(Integer userId)
|
List<User> |
RedmineManager.getUsers()
Load the list of users on the server. |
Version |
RedmineManager.getVersionById(int versionId)
|
List<Version> |
RedmineManager.getVersions(int projectID)
delivers a list of Versions of a Project |
void |
RedmineManager.update(Identifiable obj)
|
void |
RedmineManager.updateIssue(Issue issue)
Deprecated. this method will be deleted in the future releases. use update() method instead Note: This method cannot return the updated Issue from Redmine because the server does not provide any XML in response. |
void |
RedmineManager.updateProject(Project project)
Deprecated. this method will be deleted in the future releases. use update() method instead |
void |
RedmineManager.updateTimeEntry(TimeEntry obj)
Deprecated. this method will be deleted in the future releases. use update() method instead |
void |
RedmineManager.updateUser(User user)
Deprecated. this method will be deleted in the future releases. use update() method instead This method cannot return the updated object from Redmine because the server does not provide any XML in response. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||