Uses of Class
jetbrains.buildServer.issueTracker.IssueData
-
Packages that use IssueData Package Description jetbrains.buildServer.issueTracker jetbrains.buildServer.issueTracker.impl -
-
Uses of IssueData in jetbrains.buildServer.issueTracker
Methods in jetbrains.buildServer.issueTracker that return IssueData Modifier and Type Method Description IssueData
AbstractIssueFetcher.FetchFunction. fetch()
Fetches the issue.IssueData
AbstractIssueFetcher. fetchIssue(String host, String id, IssueFetcherAuthenticator authenticator)
backward compatibilityIssueData
IssueFetcher. fetchIssue(String host, String id, IssueFetcherAuthenticator authenticator)
Fetches and parses the issue from the remote server (issue-tracker).IssueData
AbstractIssueProvider. findIssueById(String id)
IssueData
IssueProvider. findIssueById(String id)
Returns the issue by the specified id.IssueData
AbstractIssueProvider. findPossiblyExpiredIssue(String id)
IssueData
SIssueProvider. findPossiblyExpiredIssue(String id)
Returns the issue data corresponding to theid
.protected IssueData
AbstractIssueProvider. fixUrl(IssueData issueData, String issueId)
Issue is fetched usingAbstractIssueProvider.myFetchHost
that is not the URL to be shown in UI.protected IssueData
AbstractIssueFetcher. getFromCacheOrFetch(Object key, AbstractIssueFetcher.FetchFunction function)
Returns a cached issue, or performs a slow fetch operation specified by afunction
and returns the result.IssueData
IssueFetcher. getIssue(String host, String id, org.apache.commons.httpclient.Credentials credentials)
Fetches and parses the issue from the remote server (issue-tracker).IssueData
IssueEx. getIssueDataOrNull()
Returns the issue data for this issue, ornull
if no data can be fetched due to some error.IssueData
AbstractIssueFetcher. getPossiblyExpiredData(String host, String id)
IssueData
IssueFetcher. getPossiblyExpiredData(String host, String id)
Returns the cached issue data, no matter if it's expired or not.Methods in jetbrains.buildServer.issueTracker that return types with arguments of type IssueData Modifier and Type Method Description List<IssueData>
AbstractIssueFetcher.BatchFetchFunction. batchFetch(Collection<String> ids)
protected Collection<IssueData>
AbstractIssueFetcher. defaultGetIssuesInBatch(String host, Collection<String> ids, AbstractIssueFetcher.BatchFetchFunction function)
Method is identical toAbstractIssueFetcher.fetchNonCachedIssues(Collection, CacheKeyFunction, BatchFetchFunction)
, but uses a default key function (id -> url
).Collection<IssueData>
AbstractIssueFetcher. fetchIssuesInBatch(String host, Collection<String> ids, IssueFetcherAuthenticator authenticator)
backward compatibilityCollection<IssueData>
IssueFetcher. fetchIssuesInBatch(String host, Collection<String> ids, IssueFetcherAuthenticator authenticator)
Fetches a number of issues in a batch, and returns the corresponding data.protected Collection<IssueData>
AbstractIssueFetcher. fetchNonCachedIssues(Collection<String> ids, AbstractIssueFetcher.CacheKeyFunction keyFunction, AbstractIssueFetcher.BatchFetchFunction fetchFunction)
Performs a specified fetch functionfetchFunction
for a number of issue ids, which are not cached at the moment.Map<String,IssueData>
AbstractIssueProvider. findIssuesByIds(Collection<String> ids)
Map<String,IssueData>
IssueBatchProviderSupport. findIssuesByIds(Collection<String> ids)
Finds and returns the specified collection of issue ids.protected Map<String,IssueData>
AbstractIssueProvider. findIssuesByIdsImpl(Collection<String> ids)
Collection<IssueData>
AbstractIssueFetcher. getIssuesInBatch(String host, Collection<String> ids, org.apache.commons.httpclient.Credentials credentials)
Batch fetching.Collection<IssueData>
IssueFetcher. getIssuesInBatch(String host, Collection<String> ids, org.apache.commons.httpclient.Credentials credentials)
Fetches a number of issues in a batch, and returns the corresponding data.Methods in jetbrains.buildServer.issueTracker with parameters of type IssueData Modifier and Type Method Description protected IssueData
AbstractIssueProvider. fixUrl(IssueData issueData, String issueId)
Issue is fetched usingAbstractIssueProvider.myFetchHost
that is not the URL to be shown in UI. -
Uses of IssueData in jetbrains.buildServer.issueTracker.impl
Methods in jetbrains.buildServer.issueTracker.impl that return IssueData Modifier and Type Method Description IssueData
IssueProviderWrapper. findIssueById(String id)
IssueData
IssueProviderWrapper. findPossiblyExpiredIssue(String id)
IssueData
IssueWrapper. getIssueDataOrNull()
Methods in jetbrains.buildServer.issueTracker.impl that return types with arguments of type IssueData Modifier and Type Method Description Map<String,IssueData>
IssueProviderWrapper. findIssuesByIds(Collection<String> ids)
-