Uses of Class
com.sudicode.fb2gh.fogbugz.FBCase
-
Packages that use FBCase Package Description com.sudicode.fb2gh.fogbugz Interactions with the FogBugz API.com.sudicode.fb2gh.migrate Used for the migration process. -
-
Uses of FBCase in com.sudicode.fb2gh.fogbugz
Methods in com.sudicode.fb2gh.fogbugz that return FBCase Modifier and Type Method Description FBCase
FogBugz. getCase(int caseId)
Get a single case.Methods in com.sudicode.fb2gh.fogbugz that return types with arguments of type FBCase Modifier and Type Method Description Iterable<FBCase>
FogBugz. iterateCases(int minId, int maxId)
Iterate multiple cases within a range.List<FBCase>
FogBugz. searchCases(String query)
Search for cases.Methods in com.sudicode.fb2gh.fogbugz with parameters of type FBCase Modifier and Type Method Description List<FBCheckin>
FogBugz. listCheckins(FBCase fbCase)
Get a list of all checkins from this FogBugz instance. -
Uses of FBCase in com.sudicode.fb2gh.migrate
Methods in com.sudicode.fb2gh.migrate with parameters of type FBCase Modifier and Type Method Description List<GHLabel>
FBCaseLabeler. getLabels(FBCase fbCase)
Obtain the labels that should be added when posting aFBCase
to GitHub.Method parameters in com.sudicode.fb2gh.migrate with type arguments of type FBCase Modifier and Type Method Description Migrator.Builder
Migrator.Builder. afterMigrate(BiConsumer<FBCase,GHIssue> afterMigrate)
After migrating a case to GitHub, perform some action specified by the givenBiConsumer
.Migrator.Builder
Migrator.Builder. closeIf(Predicate<FBCase> closeIf)
Migrator.Builder
Migrator.Builder. exceptionHandler(BiConsumer<FBCase,Exception> exceptionHandler)
If migrating a case causes anException
to be thrown, catch and handle it using the givenBiConsumer
.Migrator.Builder
Migrator.Builder. migrateIf(Predicate<FBCase> migrateIf)
Only migrate FogBugz cases that pass the givenPredicate
.Constructor parameters in com.sudicode.fb2gh.migrate with type arguments of type FBCase Constructor Description Builder(FogBugz fogBugz, Iterable<FBCase> cases, GHRepo ghRepo)
Constructor.
-