public class Bugzilla extends Object
| Constructor and Description |
|---|
Bugzilla(String serverUrl,
String login,
String password) |
| Modifier and Type | Method and Description |
|---|---|
Bug |
getBug(Integer bugzillaId) |
boolean |
postBugzillaComment(Integer bugzillaId,
String comment)
Post a new comment on Bugzilla
|
boolean |
updateBugzillaFlag(Integer[] ids,
String name,
Flag.Status status)
Update Bugzilla bugs flag status.
|
boolean |
updateBugzillaStatus(Integer bugzillaId,
Bug.Status status)
Change Bugzilla bug status.
|
boolean |
updateBugzillaTargetMilestone(int ids,
String taregtMilestone) |
boolean |
updateBugzillaTargetRelease(int ids,
String... targetRelease) |
public boolean postBugzillaComment(Integer bugzillaId, String comment)
bugzillaId - Bugzilla identitycomment - The comment will be postedpublic boolean updateBugzillaStatus(Integer bugzillaId, Bug.Status status)
bugzillaId - id. The ids of the bugs that you want to modifystatus - The status you want to change the bug topublic boolean updateBugzillaTargetMilestone(int ids,
String taregtMilestone)
public boolean updateBugzillaTargetRelease(int ids,
String... targetRelease)
public boolean updateBugzillaFlag(Integer[] ids, String name, Flag.Status status)
ids - An array of integers, a single integer representing one or more bug idsname - The name of the flag that supposes to be updatedstatus - The flag's new status(+,-,X,?)Copyright © 2014 JBoss by Red Hat. All Rights Reserved.