public interface IssueHelper
| Modifier and Type | Method and Description |
|---|---|
boolean |
accepts(URL url)
A method to test if underlying implementatio accepts a given issue.n.
|
Issue |
findIssue(URL url)
Finds a given
Issue based on a URL parameter. |
boolean |
updateStatus(URL url,
Enum status)
Update the status ofan
Issuee. |
Issue findIssue(URL url) throws IllegalArgumentException
Issue based on a URL parameter. Any client should make sure that
accepts(java.net.URL) is called first.url - - the issue URLIssue or null if no Issue is foundIllegalArgumentException - - if the String is incorrect. This will be if the remote server
rejects the request.boolean accepts(URL url)
url - - the issue URLboolean updateStatus(URL url, Enum status)
Issuee. Before calling this method, accepts(java.net.URL) should be calledurl - - the issue URLstatus - - the status to update toCopyright © 2015 JBoss by Red Hat. All rights reserved.