Uses of Class
org.redmine.ta.RedmineException

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
 

Subclasses of RedmineException in org.redmine.ta
 class NotAuthorizedException
          The user was authenticated successfully, but it does not have required privileges for the operation.
 class NotFoundException
           
 class RedmineAuthenticationException
          User or password (or API access key) not recognized.
 class RedmineCommunicationException
          Some I/O error
 class RedmineFormatException
           
 class RedmineProcessingException
           
 class RedmineSecurityException
          covers two cases: user or password not recognized authenticated successfully, but the operation is not permitted for this user
 class RedmineTransportException
           
 

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)
           
 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)
           
 



Copyright © 2012. All Rights Reserved.