Uses of Class
com.sudicode.fb2gh.FB2GHException
-
Packages that use FB2GHException Package Description com.sudicode.fb2gh.fogbugz Interactions with the FogBugz API.com.sudicode.fb2gh.github Interactions with the GitHub API.com.sudicode.fb2gh.migrate Used for the migration process. -
-
Uses of FB2GHException in com.sudicode.fb2gh.fogbugz
Methods in com.sudicode.fb2gh.fogbugz that throw FB2GHException Modifier and Type Method Description FBCase
FogBugz. getCase(int caseId)
Get a single case.Iterable<FBCase>
FogBugz. iterateCases(int minId, int maxId)
Iterate multiple cases within a range.List<FBArea>
FogBugz. listAreas()
Get a list of all areas from this FogBugz instance.List<FBArea>
FogBugz. listAreas(FBProject project)
Get a list of all areas from this FogBugz instance.List<FBCategory>
FogBugz. listCategories()
Get a list of all categories from this FogBugz instance.List<FBCheckin>
FogBugz. listCheckins(FBCase fbCase)
Get a list of all checkins from this FogBugz instance.List<FBMilestone>
FogBugz. listMilestones()
Get a list of all milestones from this FogBugz instance.List<FBMilestone>
FogBugz. listMilestones(FBProject project)
Get a list of all milestones from this FogBugz instance.List<FBProject>
FogBugz. listProjects()
Get a list of all projects from this FogBugz instance.List<FBStatus>
FogBugz. listStatuses()
Get a list of all statuses from this FogBugz instance.List<FBStatus>
FogBugz. listStatuses(FBCategory category)
Get a list of all statuses from this FogBugz instance.static FogBugz
FBFactory. newFogBugz(String baseURL, String authToken)
Create a newFogBugz
.static FogBugz
FBFactory. newFogBugz(String baseURL, String email, String password)
Create a newFogBugz
from the given email and password.List<FBCase>
FogBugz. searchCases(String query)
Search for cases. -
Uses of FB2GHException in com.sudicode.fb2gh.github
Methods in com.sudicode.fb2gh.github that throw FB2GHException Modifier and Type Method Description GHComment
GHIssue. addComment(String comment)
Add a comment.GHIssue
GHRepo. addIssue(String title, String description)
Create an issue.void
GHIssue. addLabel(GHLabel label)
Add label to this issue.void
GHRepo. addLabel(GHLabel label)
Add a label.void
GHIssue. addLabels(List<GHLabel> labels)
Add labels to this issue.GHMilestone
GHRepo. addMilestone(String title)
Create a milestone.void
GHIssue. assignTo(String ghUsername)
Assign this issue to another user.void
GHIssue. close()
Close this issue.String
GHIssue. getBody()
Get the body of this issue.List<GHComment>
GHIssue. getComments()
Get comments.int
GHIssue. getId()
Get the ID of this issue.List<GHLabel>
GHIssue. getLabels()
Get labels from this issue.List<GHLabel>
GHRepo. getLabels()
Get the labels within this repository.Optional<GHMilestone>
GHIssue. getMilestone()
Get the milestone of this issue, if one exists.GHMilestone
GHRepo. getMilestone(int number)
Get a single milestone.List<GHMilestone>
GHRepo. getMilestones()
Get all milestones within this repository.String
GHComment. getText()
Get this comment's text.String
GHIssue. getTitle()
Get the title of this issue.boolean
GHIssue. isClosed()
boolean
GHIssue. isOpen()
void
GHIssue. setMilestone(GHMilestone milestone)
Add this issue to a milestone.void
GHComment. setText(String text)
Set this comment's text. -
Uses of FB2GHException in com.sudicode.fb2gh.migrate
Methods in com.sudicode.fb2gh.migrate that throw FB2GHException Modifier and Type Method Description void
Migrator. migrate()
Migrate the cases.
-