Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

SearchRequest incompatibilities between Jira 3 and 5

Peter Conroy
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 20, 2013

I have the following piece of code from Jira 3.13

I need to convert this to use the api in 5.1.8 but, I'm having trouble determining how to do this now that both

the SearchRequest class and search() method now expect a Query and ResolutionParameter/UserParameter are no

longer available.

Any help is greatly appreciated.

private final static SearchSort SORT_ORDER = new SearchSort(NavigableField.ORDER_DESCENDING, IssueFieldConstants.PRIORITY);

private final static SearchSort SORT_ORDER2 = new SearchSort(NavigableField.ORDER_ASCENDING, IssueFieldConstants.CREATED);

private final static Collection<SearchSort> DEFAULT_SEARCH_SORTS = Arrays.asList(SORT_ORDER2, SORT_ORDER);

final SearchRequest sr = new SearchRequest(user.getName());
sr.addParameter(new UserParameter(DocumentConstants.ISSUE_ASSIGNEE, user.getName()));
sr.addParameter(ResolutionParameter.UNRESOLVED);
sr.setSearchSorts(DEFAULT_SEARCH_SORTS);
			
final SearchResults result;
try {
result = m_searchProvider.search(sr, user, PagerFilter.getUnlimitedFilter());


					
				
			
			
			
				
			
			
			
			
			
			
		

1 answer

0 votes
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 21, 2013

You would need to refer to this documentation as the framework has changed alot.

This is a sample code:

JqlClauseBuilder jqlClauseBuilder = JqlQueryBuilder.newClauseBuilder();
Query query = jqlClauseBuilder.project(projectId).and().issueType("Epic").buildQuery();
query = jqlClauseBuilder.orderBy().addSortForFieldName(PRIORITY, SortOrder.ASC, true).buildQuery();
query = builder.buildQuery();
searchResults = searchService.search(user, query, PAGER_FILTER);

Suggest an answer

Log in or Sign up to answer