java.lang.Object | |
↳ | com.atlassian.jira.issue.search.OfBizSearchRequestStore |
OfBiz implementation of SearchRequestStore
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Updates the favourite count of the SearchRequest in the database.
| |||||||||||
Takes a
SearchRequest , user, name of search request and description and persists the XML representation
of the SearchRequest object to the database along with the rest of the details | |||||||||||
Removes the SearchRequest GenericValue from the database based on its id
| |||||||||||
Find search requests matching the given name.
| |||||||||||
Get a
EnclosedIterable of SearchRequests for the specified List of ids. | |||||||||||
Get a
EnclosedIterable of all SearchRequests in the database. | |||||||||||
Get a
EnclosedIterable of all IndexableSharedEntities representing SearchRequests in the database. | |||||||||||
Retrieves a collection of SearchRequest objects that a user created.
| |||||||||||
Find a search request given the author and the request name.
| |||||||||||
Return the search request as stored in the database
| |||||||||||
Get all
search requests associated with a given Group . | |||||||||||
Get all
search requests associate with a given Project . | |||||||||||
Updates an existing search request in the database.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.atlassian.jira.issue.search.SearchRequestStore
|
Updates the favourite count of the SearchRequest in the database.
searchRequestId | the identifier of the search request to decrease. |
---|---|
incrementValue | the value to increase the favourite count by. Can be a number < 0 to decrease the favourite count. |
SearchRequest
.
Takes a SearchRequest
, user, name of search request and description and persists the XML representation
of the SearchRequest object to the database along with the rest of the details
request | SearchResult that should be persisted |
---|
Removes the SearchRequest GenericValue from the database based on its id
id | of the search request to be removed from storage |
---|
Find search requests matching the given name.
name | Name of the SearchRequest |
---|
Get a EnclosedIterable
of SearchRequests for the specified List of ids.
descriptor | retrieval descriptor |
---|
Get a EnclosedIterable
of all SearchRequests in the database.
Get a EnclosedIterable
of all IndexableSharedEntities representing SearchRequests in the database.
Note: this is used so that we can retrieve all the meta data about a SearchRequest without having to deal with
the Query
.
Retrieves a collection of SearchRequest objects that a user created.
author | The user who created the SearchRequests |
---|
SearchRequest
that user created.
Find a search request given the author and the request name.
author | Author of the SearchRequest |
---|---|
name | Name of the SearchRequest |
Return the search request as stored in the database
id | Id of the SearchRequest |
---|
Get all search requests
associated with a given Group
.
group | the group that is associated with the filters |
---|
SearchRequest
that have their project set to the given project
Get all search requests
associate with a given Project
.
project | Project that is associated with the filters |
---|
SearchRequest
that have their project set to the given project
Updates an existing search request in the database.
request | the request to persist. |
---|
SearchRequest
that was persisted to the database