Uses of Class
com.atlassian.jira.util.NotNull

Packages that use NotNull
com.atlassian.jira   
com.atlassian.jira.avatar   
com.atlassian.jira.config.util   
com.atlassian.jira.index   
com.atlassian.jira.issue.fields.config.manager   
com.atlassian.jira.issue.fields.option   
com.atlassian.jira.issue.index   
com.atlassian.jira.issue.search   
com.atlassian.jira.issue.search.managers   
com.atlassian.jira.issue.search.util   
com.atlassian.jira.issue.vote   
com.atlassian.jira.issue.watchers   
com.atlassian.jira.jql.builder   
com.atlassian.jira.jql.context   
com.atlassian.jira.jql.query   
com.atlassian.jira.jql.resolver   
com.atlassian.jira.jql.validator   
com.atlassian.jira.plugin.jql.function   
com.atlassian.jira.plugin.webfragment   
com.atlassian.jira.plugin.webfragment.model   
com.atlassian.jira.project   
com.atlassian.jira.security.auth.trustedapps   
com.atlassian.jira.task   
com.atlassian.jira.task.context   
com.atlassian.jira.user   
com.atlassian.jira.user.util   
com.atlassian.jira.util   
com.atlassian.jira.util.cache   
com.atlassian.jira.util.collect   
com.atlassian.jira.util.index   
com.atlassian.jira.util.log   
com.atlassian.query.order   
 

Uses of NotNull in com.atlassian.jira
 

Method parameters in com.atlassian.jira with annotations of type NotNull
 boolean JiraDataType.matches(JiraDataType otherType)
          Determines if this type matches the passed in other JiraDataType.
 

Uses of NotNull in com.atlassian.jira.avatar
 

Methods in com.atlassian.jira.avatar with annotations of type NotNull
 Avatar AvatarManager.create(Avatar avatar)
          Creates a database record for the given avatar.
 Avatar AvatarManager.create(Avatar avatar, java.io.InputStream image, Selection selection)
          Creates a database record for the given avatar and uses the content of the InputStream as the image.
 java.util.List<Avatar> AvatarManager.getAllSystemAvatars(Avatar.Type type)
          Provides a list of all system avatars.
 java.io.File AvatarManager.getAvatarBaseDirectory()
          Returns the directory for storing avatars.
 Avatar.Type Avatar.getAvatarType()
          The type of Avatar.
 java.lang.String AvatarImpl.getContentType()
           
 java.lang.String Avatar.getContentType()
          The MIME type of the avatar image file.
 java.util.List<Avatar> AvatarManager.getCustomAvatarsForOwner(Avatar.Type type, java.lang.String ownerId)
          Provides a list of all avatars that are of the given type which have the given owner.
 java.lang.Long AvatarManager.getDefaultAvatarId(Avatar.Type ofType)
          Gets the default avatar for the given type.
 java.lang.String Avatar.getFileName()
          The base filename to the avatar image file.
 java.lang.String Avatar.getOwner()
          A String representation of the identity of the domain object that this avatar is an avatar for! For example, if it is a user avatar, it would be the username (since that is the primary key), for a Project it is the project ID as a String.
 

Uses of NotNull in com.atlassian.jira.config.util
 

Constructor parameters in com.atlassian.jira.config.util with annotations of type NotNull
IndexWriterConfiguration.PropertiesAdaptor(ApplicationProperties properties)
           
 

Uses of NotNull in com.atlassian.jira.index
 

Methods in com.atlassian.jira.index with annotations of type NotNull
 org.apache.lucene.analysis.Analyzer Configuration.getAnalyzer()
           
 org.apache.lucene.store.Directory Configuration.getDirectory()
           
 Index Index.Manager.getIndex()
          Get the current IndexConnection this manager holds.
 org.apache.lucene.search.IndexSearcher Index.Manager.getSearcher()
          Get the current IndexSearcher from the Index.
 IndexWriterConfiguration.WriterSettings Configuration.getWriterSettings(Index.UpdateMode mode)
           
 Index.Result Index.perform(Index.Operation operation)
          Perform an Index.Operation on the index.
 

Method parameters in com.atlassian.jira.index with annotations of type NotNull
 CompositeResultBuilder CompositeResultBuilder.add(Index.Result result)
           
 CompositeResultBuilder CompositeResultBuilder.addCompletionTask(java.lang.Runnable runnable)
           
static Index.Manager Indexes.createQueuedIndexManager(java.lang.String name, Configuration config)
          Creates an index where the index operations are placed on a queue and the actual work is done on a background thread.
static Index.Manager Indexes.createQueuedIndexManager(java.lang.String name, Configuration config)
          Creates an index where the index operations are placed on a queue and the actual work is done on a background thread.
static Index.Manager Indexes.createSimpleIndexManager(Configuration config)
          Creates an index where the index operation work is done in the calling thread.
static Index.Operation Operations.newCreate(java.util.Collection<org.apache.lucene.document.Document> documents, Index.UpdateMode mode)
           
static Index.Operation Operations.newCreate(java.util.Collection<org.apache.lucene.document.Document> documents, Index.UpdateMode mode)
           
static Index.Operation Operations.newCreate(org.apache.lucene.document.Document document, Index.UpdateMode mode)
           
static Index.Operation Operations.newCreate(org.apache.lucene.document.Document document, Index.UpdateMode mode)
           
static Index.Operation Operations.newDelete(org.apache.lucene.index.Term term, Index.UpdateMode mode)
           
static Index.Operation Operations.newDelete(org.apache.lucene.index.Term term, Index.UpdateMode mode)
           
static Index.Operation Operations.newUpdate(org.apache.lucene.index.Term term, java.util.Collection<org.apache.lucene.document.Document> documents, Index.UpdateMode mode)
           
static Index.Operation Operations.newUpdate(org.apache.lucene.index.Term term, java.util.Collection<org.apache.lucene.document.Document> documents, Index.UpdateMode mode)
           
static Index.Operation Operations.newUpdate(org.apache.lucene.index.Term term, java.util.Collection<org.apache.lucene.document.Document> documents, Index.UpdateMode mode)
           
static Index.Operation Operations.newUpdate(org.apache.lucene.index.Term term, org.apache.lucene.document.Document document, Index.UpdateMode mode)
           
static Index.Operation Operations.newUpdate(org.apache.lucene.index.Term term, org.apache.lucene.document.Document document, Index.UpdateMode mode)
           
static Index.Operation Operations.newUpdate(org.apache.lucene.index.Term term, org.apache.lucene.document.Document document, Index.UpdateMode mode)
           
 Index.Result Index.perform(Index.Operation operation)
          Perform an Index.Operation on the index.
 

Constructor parameters in com.atlassian.jira.index with annotations of type NotNull
DefaultConfiguration(org.apache.lucene.store.Directory directory, org.apache.lucene.analysis.Analyzer analyzer)
           
DefaultConfiguration(org.apache.lucene.store.Directory directory, org.apache.lucene.analysis.Analyzer analyzer)
           
DefaultConfiguration(org.apache.lucene.store.Directory directory, org.apache.lucene.analysis.Analyzer analyzer, IndexWriterConfiguration writerConfiguration)
           
DefaultConfiguration(org.apache.lucene.store.Directory directory, org.apache.lucene.analysis.Analyzer analyzer, IndexWriterConfiguration writerConfiguration)
           
DefaultConfiguration(org.apache.lucene.store.Directory directory, org.apache.lucene.analysis.Analyzer analyzer, IndexWriterConfiguration writerConfiguration)
           
MultiThreadedIndexingStrategy(IndexingStrategy strategy, MultiThreadedIndexingConfiguration config, java.lang.String threadPrefix)
           
 

Uses of NotNull in com.atlassian.jira.issue.fields.config.manager
 

Methods in com.atlassian.jira.issue.fields.config.manager with annotations of type NotNull
 java.util.Collection<IssueType> IssueTypeSchemeManager.getIssueTypesForDefaultScheme()
          Return the collection of issue types associated with the default scheme.
 java.util.Collection IssueTypeSchemeManager.getIssueTypesForProject(org.ofbiz.core.entity.GenericValue project)
          Deprecated. Use of GenericValue is discouraged. Deprecated since: 3.9. Use IssueTypeSchemeManager.getIssueTypesForProject(Project) instead.
 java.util.Collection<IssueType> IssueTypeSchemeManager.getIssueTypesForProject(Project project)
          Return the collection of issue types associated with this project
 java.util.Collection<IssueType> IssueTypeSchemeManager.getNonSubTaskIssueTypesForProject(Project project)
          Return the collection of issue types other than sub-tasks associated with this project.
 java.util.Collection<IssueType> IssueTypeSchemeManager.getSubTaskIssueTypesForProject(Project project)
          Return the collection of sub-task issue types associated with this project Join of the result of this method and IssueTypeSchemeManager.getNonSubTaskIssueTypesForProject(com.atlassian.jira.project.Project) produces the same result as a call to IssueTypeSchemeManager.getIssueTypesForProject(com.atlassian.jira.project.Project).
 

Method parameters in com.atlassian.jira.issue.fields.config.manager with annotations of type NotNull
 java.util.Collection<IssueType> IssueTypeSchemeManager.getSubTaskIssueTypesForProject(Project project)
          Return the collection of sub-task issue types associated with this project Join of the result of this method and IssueTypeSchemeManager.getNonSubTaskIssueTypesForProject(com.atlassian.jira.project.Project) produces the same result as a call to IssueTypeSchemeManager.getIssueTypesForProject(com.atlassian.jira.project.Project).
 

Uses of NotNull in com.atlassian.jira.issue.fields.option
 

Method parameters in com.atlassian.jira.issue.fields.option with annotations of type NotNull
 OptionSet OptionSetManager.createOptionSet(FieldConfig config, java.util.Collection optionIds)
           
 OptionSet OptionSetManager.getOptionsForConfig(FieldConfig config)
           
 void OptionSetManager.removeOptionSet(FieldConfig config)
           
 OptionSet OptionSetManager.updateOptionSet(FieldConfig config, java.util.Collection optionIds)
           
 

Uses of NotNull in com.atlassian.jira.issue.index
 

Method parameters in com.atlassian.jira.issue.index with annotations of type NotNull
 Index.Result IssueIndexer.deindexIssues(EnclosedIterable<Issue> issues, Context context)
          Delete any existing documents for the supplied issues.
 Index.Result IssueIndexer.deindexIssues(EnclosedIterable<Issue> issues, Context context)
          Delete any existing documents for the supplied issues.
 Index.Result DefaultIssueIndexer.deindexIssues(EnclosedIterable<Issue> issues, Context context)
           
 Index.Result DefaultIssueIndexer.deindexIssues(EnclosedIterable<Issue> issues, Context context)
           
 Index.Result IssueIndexer.indexIssues(EnclosedIterable<Issue> issues, Context context)
          Add documents for the supplied issues.
 Index.Result IssueIndexer.indexIssues(EnclosedIterable<Issue> issues, Context context)
          Add documents for the supplied issues.
 Index.Result DefaultIssueIndexer.indexIssues(EnclosedIterable<Issue> issues, Context context)
           
 Index.Result DefaultIssueIndexer.indexIssues(EnclosedIterable<Issue> issues, Context context)
           
 Index.Result IssueIndexer.indexIssuesBatchMode(EnclosedIterable<Issue> issues, Context context)
          Index the given issues, use whatever is in your arsenal to do it as FAST as possible.
 Index.Result IssueIndexer.indexIssuesBatchMode(EnclosedIterable<Issue> issues, Context context)
          Index the given issues, use whatever is in your arsenal to do it as FAST as possible.
 Index.Result DefaultIssueIndexer.indexIssuesBatchMode(EnclosedIterable<Issue> issues, Context context)
          No other index operations should be called while this method is being called
 Index.Result DefaultIssueIndexer.indexIssuesBatchMode(EnclosedIterable<Issue> issues, Context context)
          No other index operations should be called while this method is being called
 Index.Result IssueIndexer.reindexIssues(EnclosedIterable<Issue> issues, Context context)
          Re-index the given issues, delete any existing documents and add new ones.
 Index.Result IssueIndexer.reindexIssues(EnclosedIterable<Issue> issues, Context context)
          Re-index the given issues, delete any existing documents and add new ones.
 Index.Result DefaultIssueIndexer.reindexIssues(EnclosedIterable<Issue> issues, Context context)
           
 Index.Result DefaultIssueIndexer.reindexIssues(EnclosedIterable<Issue> issues, Context context)
           
 void IndexDirectoryFactory.setIndexingMode(IndexDirectoryFactory.Mode mode)
          Sets the Indexing Mode - one of either DIRECT or QUEUED.
 

Constructor parameters in com.atlassian.jira.issue.index with annotations of type NotNull
DefaultCommentRetriever(CommentManager commentManager)
           
DefaultIssueIndexer(IndexDirectoryFactory indexDirectoryFactory, DefaultIssueIndexer.CommentRetriever commentRetriever)
           
DefaultIssueIndexer(IndexDirectoryFactory indexDirectoryFactory, DefaultIssueIndexer.CommentRetriever commentRetriever)
           
IndexDirectoryFactory.IndexPathAdapter(IndexPathManager indexPathManager, IndexWriterConfiguration writerConfiguration)
           
 

Uses of NotNull in com.atlassian.jira.issue.search
 

Methods in com.atlassian.jira.issue.search with annotations of type NotNull
 Query SearchRequest.getQuery()
          Gets the SearchQuery that defines the search that will be performed for this SearchRequest.
 

Method parameters in com.atlassian.jira.issue.search with annotations of type NotNull
 SearchRequest SearchRequestStore.adjustFavouriteCount(java.lang.Long searchRequestId, int incrementValue)
          Updates the favourite count of the SearchRequest in the database.
 SearchRequest SearchRequestStore.create(SearchRequest request)
          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
 void SearchRequestStore.delete(java.lang.Long id)
          Removes the SearchRequest GenericValue from the database based on its id
 SearchRequest SearchRequestStore.getSearchRequest(java.lang.Long id)
          Return the search request as stored in the database
 SearchRequest SearchRequestStore.update(SearchRequest request)
          Updates an existing search request in the database.
 

Uses of NotNull in com.atlassian.jira.issue.search.managers
 

Methods in com.atlassian.jira.issue.search.managers with annotations of type NotNull
 java.util.Collection<ClauseHandler> SearchHandlerManager.getClauseHandler(java.lang.String jqlClauseName)
          Return a collection of ClauseHandlers registered against the passed JQL clause name.
 java.util.Collection<ClauseHandler> SearchHandlerManager.getClauseHandler(com.opensymphony.user.User user, java.lang.String jqlClauseName)
          Return a collection of ClauseHandlers registered against the passed JQL clause name.
 java.util.Collection<java.lang.String> SearchHandlerManager.getFieldIds(java.lang.String jqlClauseName)
          Gets the field ids that are associated with the provided jqlClauseName.
 java.util.Collection<java.lang.String> SearchHandlerManager.getFieldIds(com.opensymphony.user.User searcher, java.lang.String jqlClauseName)
          Gets the field ids that are associated with the provided jqlClauseName.
 java.util.Collection<ClauseNames> SearchHandlerManager.getJqlClauseNames(java.lang.String fieldId)
          Get the ClauseNames associated with the provided field name.
 java.util.Collection<IssueSearcher<?>> SearchHandlerManager.getSearchersByClauseName(com.opensymphony.user.User user, java.lang.String jqlClauseName, SearchContext searchContext)
          Return a collection of IssueSearchers registered against the passed JQL clause name.
 java.util.Collection<ClauseHandler> SearchHandlerManager.getVisibleClauseHandlers(com.opensymphony.user.User searcher)
          Get all the available clause handlers that the searcher can see.
 java.util.Collection<ClauseNames> SearchHandlerManager.getVisibleJqlClauseNames(com.opensymphony.user.User searcher)
          Get all the available clause names that the searcher can see.
 

Uses of NotNull in com.atlassian.jira.issue.search.util
 

Methods in com.atlassian.jira.issue.search.util with annotations of type NotNull
 java.util.List<SearchSort> SearchSortUtil.concatSearchSorts(java.util.Collection<SearchSort> newSorts, java.util.Collection<SearchSort> oldSorts, int maxLength)
          Concatenate the new search sorts and the old search sorts returning a list of sorts that is only of size maxLength.
 OrderBy SearchSortUtil.getOrderByClause(java.util.Map parameterMap)
          This method is used to convert incomming, request-style, parameters into SearchSort objects.
 java.util.List<SearchSort> SearchSortUtil.mergeSearchSorts(com.opensymphony.user.User user, java.util.Collection<SearchSort> newSorts, java.util.Collection<SearchSort> oldSorts, int maxLength)
          Combine the new search sorts and the old search sorts returning a list of sorts that is only of size maxLength.
 

Uses of NotNull in com.atlassian.jira.issue.vote
 

Methods in com.atlassian.jira.issue.vote with annotations of type NotNull
 java.lang.Iterable<com.opensymphony.user.User> IssueVoterAccessor.getDetails(java.util.Locale displayLocale, Issue issue)
          Convenience function that simply returns the User objects.
<T> java.lang.Iterable<T>
IssueVoterAccessor.getDetails(java.util.Locale displayLocale, Issue issue, Function<com.opensymphony.user.User,T> transformer)
          Return an Iterable of all voters for the supplied issue.
 java.lang.Iterable<java.lang.Long> VotedIssuesAccessor.getVotedIssueIds(com.opensymphony.user.User voter, com.opensymphony.user.User searcher, VotedIssuesAccessor.Security security)
          Get the issues a particular user has voted for.
 

Method parameters in com.atlassian.jira.issue.vote with annotations of type NotNull
 java.lang.Iterable<com.opensymphony.user.User> IssueVoterAccessor.getDetails(java.util.Locale displayLocale, Issue issue)
          Convenience function that simply returns the User objects.
 java.lang.Iterable<com.opensymphony.user.User> IssueVoterAccessor.getDetails(java.util.Locale displayLocale, Issue issue)
          Convenience function that simply returns the User objects.
<T> java.lang.Iterable<T>
IssueVoterAccessor.getDetails(java.util.Locale displayLocale, Issue issue, Function<com.opensymphony.user.User,T> transformer)
          Return an Iterable of all voters for the supplied issue.
<T> java.lang.Iterable<T>
IssueVoterAccessor.getDetails(java.util.Locale displayLocale, Issue issue, Function<com.opensymphony.user.User,T> transformer)
          Return an Iterable of all voters for the supplied issue.
<T> java.lang.Iterable<T>
IssueVoterAccessor.getDetails(java.util.Locale displayLocale, Issue issue, Function<com.opensymphony.user.User,T> transformer)
          Return an Iterable of all voters for the supplied issue.
 java.lang.Iterable<java.lang.Long> VotedIssuesAccessor.getVotedIssueIds(com.opensymphony.user.User voter, com.opensymphony.user.User searcher, VotedIssuesAccessor.Security security)
          Get the issues a particular user has voted for.
 java.lang.Iterable<java.lang.Long> VotedIssuesAccessor.getVotedIssueIds(com.opensymphony.user.User voter, com.opensymphony.user.User searcher, VotedIssuesAccessor.Security security)
          Get the issues a particular user has voted for.
 java.lang.Iterable<java.lang.Long> VotedIssuesAccessor.getVotedIssueIds(com.opensymphony.user.User voter, com.opensymphony.user.User searcher, VotedIssuesAccessor.Security security)
          Get the issues a particular user has voted for.
 

Constructor parameters in com.atlassian.jira.issue.vote with annotations of type NotNull
DefaultVotedIssuesAccessor(VoteManager voteManager, SearchProvider searchProvider, SearchProviderFactory factory)
           
DefaultVotedIssuesAccessor(VoteManager voteManager, SearchProvider searchProvider, SearchProviderFactory factory)
           
DefaultVotedIssuesAccessor(VoteManager voteManager, SearchProvider searchProvider, SearchProviderFactory factory)
           
 

Uses of NotNull in com.atlassian.jira.issue.watchers
 

Methods in com.atlassian.jira.issue.watchers with annotations of type NotNull
 java.lang.Iterable<com.opensymphony.user.User> IssueWatcherAccessor.getDetails(java.util.Locale displayLocale, Issue issue)
          Convenience function that simply returns the User objects.
<T> java.lang.Iterable<T>
IssueWatcherAccessor.getDetails(java.util.Locale displayLocale, Issue issue, Function<com.opensymphony.user.User,T> transformer)
          Return an Iterable of all watchers for the supplied issue.
 java.lang.Iterable<java.lang.Long> WatchedIssuesAccessor.getWatchedIssueIds(com.opensymphony.user.User watcher, com.opensymphony.user.User searcher, WatchedIssuesAccessor.Security security)
          Get the issues a particular user is watching.
 

Method parameters in com.atlassian.jira.issue.watchers with annotations of type NotNull
 java.lang.Iterable<com.opensymphony.user.User> IssueWatcherAccessor.getDetails(java.util.Locale displayLocale, Issue issue)
          Convenience function that simply returns the User objects.
 java.lang.Iterable<com.opensymphony.user.User> IssueWatcherAccessor.getDetails(java.util.Locale displayLocale, Issue issue)
          Convenience function that simply returns the User objects.
<T> java.lang.Iterable<T>
IssueWatcherAccessor.getDetails(java.util.Locale displayLocale, Issue issue, Function<com.opensymphony.user.User,T> transformer)
          Return an Iterable of all watchers for the supplied issue.
<T> java.lang.Iterable<T>
IssueWatcherAccessor.getDetails(java.util.Locale displayLocale, Issue issue, Function<com.opensymphony.user.User,T> transformer)
          Return an Iterable of all watchers for the supplied issue.
<T> java.lang.Iterable<T>
IssueWatcherAccessor.getDetails(java.util.Locale displayLocale, Issue issue, Function<com.opensymphony.user.User,T> transformer)
          Return an Iterable of all watchers for the supplied issue.
 java.lang.Iterable<java.lang.Long> WatchedIssuesAccessor.getWatchedIssueIds(com.opensymphony.user.User watcher, com.opensymphony.user.User searcher, WatchedIssuesAccessor.Security security)
          Get the issues a particular user is watching.
 java.lang.Iterable<java.lang.Long> WatchedIssuesAccessor.getWatchedIssueIds(com.opensymphony.user.User watcher, com.opensymphony.user.User searcher, WatchedIssuesAccessor.Security security)
          Get the issues a particular user is watching.
 java.lang.Iterable<java.lang.Long> WatchedIssuesAccessor.getWatchedIssueIds(com.opensymphony.user.User watcher, com.opensymphony.user.User searcher, WatchedIssuesAccessor.Security security)
          Get the issues a particular user is watching.
 

Constructor parameters in com.atlassian.jira.issue.watchers with annotations of type NotNull
DefaultWatchedIssuesAccessor(WatcherManager watcherManager, SearchProvider searchProvider, SearchProviderFactory factory)
           
DefaultWatchedIssuesAccessor(WatcherManager watcherManager, SearchProvider searchProvider, SearchProviderFactory factory)
           
DefaultWatchedIssuesAccessor(WatcherManager watcherManager, SearchProvider searchProvider, SearchProviderFactory factory)
           
 

Uses of NotNull in com.atlassian.jira.jql.builder
 

Methods in com.atlassian.jira.jql.builder with annotations of type NotNull
 Query JqlQueryBuilder.buildQuery()
          This will find the root of the clause tree and build a Query whos where clause will return the generated clause and Order By clause will return the generated search order.
static JqlQueryBuilder JqlQueryBuilder.newBuilder()
           
static JqlQueryBuilder JqlQueryBuilder.newBuilder(Query existingQuery)
          Creates a new builder that clones the state of the passed in query so that you can use the resulting builder to create a slightly modified query.
static JqlClauseBuilder JqlQueryBuilder.newClauseBuilder()
          Build a new JqlClauseBuilder.
static JqlClauseBuilder JqlQueryBuilder.newClauseBuilder(Clause copy)
          Build a new JqlClauseBuilder and initialise it with the passed clause.
static JqlClauseBuilder JqlQueryBuilder.newClauseBuilder(Query query)
          Build a new JqlClauseBuilder and initialise it with the clause from the passed query.
static JqlOrderByBuilder JqlQueryBuilder.newOrderByBuilder()
          Build a new JqlOrderByBuilder.
static JqlOrderByBuilder JqlQueryBuilder.newOrderByBuilder(OrderBy copy)
          Build a new JqlOrderByBuilder and initialise it with the passed order.
static JqlOrderByBuilder JqlQueryBuilder.newOrderByBuilder(Query query)
          Build a new JqlOrderByBuilder and initialise it with the order from the passed query.
 JqlOrderByBuilder JqlQueryBuilder.orderBy()
          Creates an JqlOrderByBuilder that can be used to modify the order by statements of the JqlQueryBuilder instance.
 JqlClauseBuilder JqlQueryBuilder.where()
          Creates an JqlClauseBuilder which is used to modify the where clause portion of the JqlQueryBuilder instance.
 

Uses of NotNull in com.atlassian.jira.jql.context
 

Methods in com.atlassian.jira.jql.context with annotations of type NotNull
 ClauseContextFactory MultiClauseDecoratorContextFactory.Factory.create(ClauseContextFactory delegate)
          Same as calling create(delegate, true).
 ClauseContextFactory MultiClauseDecoratorContextFactory.Factory.create(ClauseContextFactory delegate, boolean validating)
          Wrap the passed ClauseContextFactory in a MultiClauseDecoratorContextFactory.
 

Method parameters in com.atlassian.jira.jql.context with annotations of type NotNull
 ClauseContextFactory MultiClauseDecoratorContextFactory.Factory.create(ClauseContextFactory delegate)
          Same as calling create(delegate, true).
 ClauseContextFactory MultiClauseDecoratorContextFactory.Factory.create(ClauseContextFactory delegate, boolean validating)
          Wrap the passed ClauseContextFactory in a MultiClauseDecoratorContextFactory.
 

Uses of NotNull in com.atlassian.jira.jql.query
 

Methods in com.atlassian.jira.jql.query with annotations of type NotNull
 QueryFactoryResult ClauseQueryFactory.getQuery(QueryCreationContext queryCreationContext, TerminalClause terminalClause)
          Generates a lucene query for the passed TerminalClause.
 

Method parameters in com.atlassian.jira.jql.query with annotations of type NotNull
 QueryFactoryResult ClauseQueryFactory.getQuery(QueryCreationContext queryCreationContext, TerminalClause terminalClause)
          Generates a lucene query for the passed TerminalClause.
 QueryFactoryResult ClauseQueryFactory.getQuery(QueryCreationContext queryCreationContext, TerminalClause terminalClause)
          Generates a lucene query for the passed TerminalClause.
 

Uses of NotNull in com.atlassian.jira.jql.resolver
 

Methods in com.atlassian.jira.jql.resolver with annotations of type NotNull
 java.util.Collection<T> NameResolver.getAll()
          Gets all domain objects of this type in the underlying database.
 

Uses of NotNull in com.atlassian.jira.jql.validator
 

Methods in com.atlassian.jira.jql.validator with annotations of type NotNull
 MessageSet OrderByValidator.validate(com.opensymphony.user.User searcher, OrderBy orderBy)
          Will add messages if there is a portion of the order by that contains a non-orderable jql clause name or if there are any duplicates or if the user is trying to order by a field that they can't see.
 MessageSet ClauseValidator.validate(com.opensymphony.user.User searcher, TerminalClause terminalClause)
          Validates a clause and adds human readable i18n'ed messages if there is a problem.
 

Method parameters in com.atlassian.jira.jql.validator with annotations of type NotNull
 MessageSet ClauseValidator.validate(com.opensymphony.user.User searcher, TerminalClause terminalClause)
          Validates a clause and adds human readable i18n'ed messages if there is a problem.
 

Uses of NotNull in com.atlassian.jira.plugin.jql.function
 

Methods in com.atlassian.jira.plugin.jql.function with annotations of type NotNull
 JiraDataType JqlFunction.getDataType()
          Provides the JiraDataType that this function handles and creates values for.
 java.lang.String JqlFunction.getFunctionName()
          The name of the function.
 java.util.List<QueryLiteral> JqlFunction.getValues(QueryCreationContext queryCreationContext, FunctionOperand operand, TerminalClause terminalClause)
          Gets the unexpanded values provided by the user on input.
 FunctionOperand ClauseSanitisingJqlFunction.sanitiseOperand(com.opensymphony.user.User searcher, FunctionOperand operand)
          Sanitise a function operand for the specified user, so that information is not leaked.
 MessageSet JqlFunction.validate(com.opensymphony.user.User searcher, FunctionOperand operand, TerminalClause terminalClause)
          Will validate the function operand's arguments and report back any errors.
 

Method parameters in com.atlassian.jira.plugin.jql.function with annotations of type NotNull
 java.util.List<QueryLiteral> JqlFunction.getValues(QueryCreationContext queryCreationContext, FunctionOperand operand, TerminalClause terminalClause)
          Gets the unexpanded values provided by the user on input.
 java.util.List<QueryLiteral> JqlFunction.getValues(QueryCreationContext queryCreationContext, FunctionOperand operand, TerminalClause terminalClause)
          Gets the unexpanded values provided by the user on input.
 java.util.List<QueryLiteral> JqlFunction.getValues(QueryCreationContext queryCreationContext, FunctionOperand operand, TerminalClause terminalClause)
          Gets the unexpanded values provided by the user on input.
 void JqlFunction.init(JqlFunctionModuleDescriptor moduleDescriptor)
          Initialises this pluggable function with it's module descriptor.
 FunctionOperand ClauseSanitisingJqlFunction.sanitiseOperand(com.opensymphony.user.User searcher, FunctionOperand operand)
          Sanitise a function operand for the specified user, so that information is not leaked.
 MessageSet JqlFunction.validate(com.opensymphony.user.User searcher, FunctionOperand operand, TerminalClause terminalClause)
          Will validate the function operand's arguments and report back any errors.
 MessageSet JqlFunction.validate(com.opensymphony.user.User searcher, FunctionOperand operand, TerminalClause terminalClause)
          Will validate the function operand's arguments and report back any errors.
 

Uses of NotNull in com.atlassian.jira.plugin.webfragment
 

Methods in com.atlassian.jira.plugin.webfragment with annotations of type NotNull
 java.util.List<SimpleLink> SimpleLinkFactory.getLinks(com.opensymphony.user.User user, java.util.Map<java.lang.String,java.lang.Object> params)
          Generates a list of SimpleLink objects.
 java.util.List<SimpleLink> SimpleLinkManager.getLinksForSection(java.lang.String section, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLink for the given section.
 java.util.List<SimpleLink> SimpleLinkManager.getLinksForSectionIgnoreConditions(java.lang.String section, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLink for the given section, without filtering links using the conditions specified for the links.
 java.util.List<SimpleLinkSection> SimpleLinkManager.getSectionsForLocation(java.lang.String location, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLinkSection for the given location.
 

Method parameters in com.atlassian.jira.plugin.webfragment with annotations of type NotNull
 java.util.List<SimpleLink> SimpleLinkManager.getLinksForSection(java.lang.String section, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLink for the given section.
 java.util.List<SimpleLink> SimpleLinkManager.getLinksForSection(java.lang.String section, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLink for the given section.
 java.util.List<SimpleLink> SimpleLinkManager.getLinksForSectionIgnoreConditions(java.lang.String section, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLink for the given section, without filtering links using the conditions specified for the links.
 java.util.List<SimpleLink> SimpleLinkManager.getLinksForSectionIgnoreConditions(java.lang.String section, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLink for the given section, without filtering links using the conditions specified for the links.
 java.util.List<SimpleLink> DefaultSimpleLinkManager.getLinksForSectionIgnoreConditions(java.lang.String section, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
           
 java.util.List<SimpleLink> DefaultSimpleLinkManager.getLinksForSectionIgnoreConditions(java.lang.String section, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
           
 java.util.List<SimpleLinkSection> SimpleLinkManager.getSectionsForLocation(java.lang.String location, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLinkSection for the given location.
 java.util.List<SimpleLinkSection> SimpleLinkManager.getSectionsForLocation(java.lang.String location, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          Gets a list of SimpleLinkSection for the given location.
 boolean DefaultSimpleLinkManager.shouldLocationBeLazy(java.lang.String location, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          This determines whether a location should be loaded lazily if possible.
 boolean DefaultSimpleLinkManager.shouldLocationBeLazy(java.lang.String location, com.opensymphony.user.User remoteUser, JiraHelper jiraHelper)
          This determines whether a location should be loaded lazily if possible.
 

Uses of NotNull in com.atlassian.jira.plugin.webfragment.model
 

Methods in com.atlassian.jira.plugin.webfragment.model with annotations of type NotNull
 java.lang.String SimpleLink.getUrl()
          The URL that the link points to.
 

Constructor parameters in com.atlassian.jira.plugin.webfragment.model with annotations of type NotNull
SimpleLinkImpl(java.lang.String id, java.lang.String label, java.lang.String title, java.lang.String iconUrl, java.lang.String style, java.lang.String url, java.lang.String accessKey)
          Constructor taking all attributes of a link
 

Uses of NotNull in com.atlassian.jira.project
 

Methods in com.atlassian.jira.project with annotations of type NotNull
 Avatar Project.getAvatar()
          Gives the currently-configured Avatar for this project.
 Avatar ProjectImpl.getAvatar()
           
 

Uses of NotNull in com.atlassian.jira.security.auth.trustedapps
 

Constructor parameters in com.atlassian.jira.security.auth.trustedapps with annotations of type NotNull
DefaultCurrentApplicationFactory(ApplicationProperties applicationProperties, JiraLicenseService jiraLicenseService)
           
DefaultCurrentApplicationFactory(ApplicationProperties applicationProperties, JiraLicenseService jiraLicenseService)
           
 

Uses of NotNull in com.atlassian.jira.task
 

Method parameters in com.atlassian.jira.task with annotations of type NotNull
 TaskDescriptor<?> TaskManagerImpl.findFirstTask(TaskMatcher matcher)
           
 TaskDescriptor<?> TaskManager.findFirstTask(TaskMatcher matcher)
          Find the first task that "matches" according to the passed matcher.
 java.util.Collection<TaskDescriptor<?>> TaskManager.findTasks(TaskMatcher matcher)
          Find all the tasks that "match" according to the passed matcher.
<V> TaskDescriptor<V>
TaskManagerImpl.getLiveTask(TaskContext taskContext)
           
<V> TaskDescriptor<V>
TaskManager.getLiveTask(TaskContext taskContext)
          Return the live task associated with the passed context, if one exists.
 boolean TaskManagerImpl.hasLiveTaskWithContext(TaskContext taskContext)
           
 boolean TaskManager.hasLiveTaskWithContext(TaskContext taskContext)
          Returns true if the there are live tasks (running or submitted) that have a task context that is EQUAL to the passed in taskContext.
 boolean TaskManagerImpl.hasTaskWithContext(TaskContext taskContext)
           
 boolean TaskManager.hasTaskWithContext(TaskContext taskContext)
          Returns true if the there are any tasks (submitted, running or finished) that have a task context that is EQUAL to the passed in taskContext.
 boolean TaskManager.removeTask(java.lang.Long taskId)
          Remove a task from the manager.
<V> TaskDescriptor<V>
TaskManagerImpl.submitTask(java.util.concurrent.Callable<V> callable, java.lang.String taskDescription, TaskContext taskContext)
           
<V> TaskDescriptor<V>
TaskManagerImpl.submitTask(java.util.concurrent.Callable<V> callable, java.lang.String taskDescription, TaskContext taskContext)
           
<V> TaskDescriptor<V>
TaskManagerImpl.submitTask(java.util.concurrent.Callable<V> callable, java.lang.String taskDescription, TaskContext taskContext)
           
<V> TaskDescriptor<V>
TaskManager.submitTask(java.util.concurrent.Callable<V> callable, java.lang.String taskDescription, TaskContext taskContext)
          This submits a Callable task to the manager which can then be started at the managers discretion, but hopefully very soon.
<V> TaskDescriptor<V>
TaskManager.submitTask(java.util.concurrent.Callable<V> callable, java.lang.String taskDescription, TaskContext taskContext)
          This submits a Callable task to the manager which can then be started at the managers discretion, but hopefully very soon.
<V> TaskDescriptor<V>
TaskManager.submitTask(java.util.concurrent.Callable<V> callable, java.lang.String taskDescription, TaskContext taskContext)
          This submits a Callable task to the manager which can then be started at the managers discretion, but hopefully very soon.
 

Uses of NotNull in com.atlassian.jira.task.context
 

Method parameters in com.atlassian.jira.task.context with annotations of type NotNull
static Context Contexts.percentageLogger(Sized sized, org.apache.log4j.Logger logger, java.lang.String msg)
           
static Context Contexts.percentageLogger(Sized sized, org.apache.log4j.Logger logger, java.lang.String msg)
           
static Context Contexts.percentageLogger(Sized sized, org.apache.log4j.Logger logger, java.lang.String msg)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, java.lang.String msg, com.atlassian.johnson.event.Event event)
           
 

Uses of NotNull in com.atlassian.jira.user
 

Methods in com.atlassian.jira.user with annotations of type NotNull
 java.util.List<UserHistoryItem> UserAdminHistoryManager.getAdminPageHistoryWithoutPermissionChecks(com.opensymphony.user.User user)
          Retreive the user's admin page history queue.
 java.util.List<UserHistoryItem> UserIssueHistoryManager.getFullIssueHistoryWithoutPermissionChecks(com.opensymphony.user.User user)
          Retreive the user's issue history queue.
 java.util.List<UserHistoryItem> DefaultUserIssueHistoryManager.getFullIssueHistoryWithoutPermissionChecks(com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> UserIssueHistoryManager.getFullIssueHistoryWithPermissionChecks(com.opensymphony.user.User user)
          Retreive the user's issue history queue.
 java.util.List<UserHistoryItem> OfBizUserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> SessionBasedAnonymousUserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> CachingUserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> UserHistoryManager.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
          Retreive the user's history queue for the given UserHistoryItem.Type.
 java.util.List<UserHistoryItem> DefaultUserHistoryManager.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> UserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
          Retreive the history for a given user/type.
 java.util.List<UserHistoryItem> UserProjectHistoryManager.getProjectHistoryWithoutPermissionChecks(com.opensymphony.user.User user)
          Retreive the user's project history queue.
 java.util.List<Project> UserProjectHistoryManager.getProjectHistoryWithPermissionChecks(int permission, com.opensymphony.user.User user)
          Retreive the user's project history queue.
 java.util.List<Issue> UserIssueHistoryManager.getShortIssueHistory(com.opensymphony.user.User user)
          Retreive the first X (jira.max.issue.history.dropdown.items) Issues from the user's issue history queue.
 java.util.List<Issue> DefaultUserIssueHistoryManager.getShortIssueHistory(com.opensymphony.user.User user)
           
 

Method parameters in com.atlassian.jira.user with annotations of type NotNull
 void OfBizUserHistoryStore.addHistoryItem(com.opensymphony.user.User user, UserHistoryItem item)
           
 void OfBizUserHistoryStore.addHistoryItem(com.opensymphony.user.User user, UserHistoryItem item)
           
 void SessionBasedAnonymousUserHistoryStore.addHistoryItem(com.opensymphony.user.User user, UserHistoryItem historyItem)
           
 void SessionBasedAnonymousUserHistoryStore.addHistoryItem(com.opensymphony.user.User user, UserHistoryItem historyItem)
           
 void CachingUserHistoryStore.addHistoryItem(com.opensymphony.user.User user, UserHistoryItem historyItem)
           
 void CachingUserHistoryStore.addHistoryItem(com.opensymphony.user.User user, UserHistoryItem historyItem)
           
 void UserHistoryStore.addHistoryItem(com.opensymphony.user.User user, UserHistoryItem historyItem)
          Add a history item to the database.
 void OfBizUserHistoryStore.addHistoryItemNoChecks(com.opensymphony.user.User user, UserHistoryItem item)
          Optimised method for adding a history item.
 void OfBizUserHistoryStore.addHistoryItemNoChecks(com.opensymphony.user.User user, UserHistoryItem item)
          Optimised method for adding a history item.
 void DefaultUserIssueHistoryManager.addIssueToHistory(com.opensymphony.user.User user, Issue issue)
           
 void DefaultUserIssueHistoryManager.addIssueToHistory(com.opensymphony.user.User user, Issue issue)
           
 void DefaultUserHistoryManager.addItemToHistory(UserHistoryItem.Type type, com.opensymphony.user.User user, java.lang.String entityId)
           
 void DefaultUserHistoryManager.addItemToHistory(UserHistoryItem.Type type, com.opensymphony.user.User user, java.lang.String entityId)
           
 void DefaultUserHistoryManager.addItemToHistory(UserHistoryItem.Type type, com.opensymphony.user.User user, java.lang.String entityId)
           
 void DefaultUserHistoryManager.addItemToHistory(UserHistoryItem.Type type, com.opensymphony.user.User user, java.lang.String entityId, java.lang.String data)
           
 void DefaultUserHistoryManager.addItemToHistory(UserHistoryItem.Type type, com.opensymphony.user.User user, java.lang.String entityId, java.lang.String data)
           
 void OfBizUserHistoryStore.expireOldHistoryItems(com.opensymphony.user.User user, UserHistoryItem.Type type, java.util.Collection<java.lang.String> entityIds)
          Method for expiring old items.
 void OfBizUserHistoryStore.expireOldHistoryItems(com.opensymphony.user.User user, UserHistoryItem.Type type, java.util.Collection<java.lang.String> entityIds)
          Method for expiring old items.
 java.util.List<UserHistoryItem> OfBizUserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> OfBizUserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> CachingUserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> CachingUserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> DefaultUserHistoryManager.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.List<UserHistoryItem> UserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
          Retreive the history for a given user/type.
 java.util.List<UserHistoryItem> UserHistoryStore.getHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
          Retreive the history for a given user/type.
 boolean DefaultUserHistoryManager.hasHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 boolean DefaultUserHistoryManager.hasHistory(UserHistoryItem.Type type, com.opensymphony.user.User user)
           
 java.util.Set<UserHistoryItem.Type> OfBizUserHistoryStore.removeHistoryForUser(com.opensymphony.user.User user)
           
 java.util.Set<UserHistoryItem.Type> SessionBasedAnonymousUserHistoryStore.removeHistoryForUser(com.opensymphony.user.User user)
           
 java.util.Set<UserHistoryItem.Type> CachingUserHistoryStore.removeHistoryForUser(com.opensymphony.user.User user)
           
 void UserHistoryManager.removeHistoryForUser(com.opensymphony.user.User user)
          Remove the user's history.
 void DefaultUserHistoryManager.removeHistoryForUser(com.opensymphony.user.User user)
           
 java.util.Set<UserHistoryItem.Type> UserHistoryStore.removeHistoryForUser(com.opensymphony.user.User user)
          Remove all history items for a given user.
 void OfBizUserHistoryStore.updateHistoryItemNoChecks(com.opensymphony.user.User user, UserHistoryItem item)
          Optimised method for updating a record in the database.
 void OfBizUserHistoryStore.updateHistoryItemNoChecks(com.opensymphony.user.User user, UserHistoryItem item)
          Optimised method for updating a record in the database.
 

Constructor parameters in com.atlassian.jira.user with annotations of type NotNull
CachingUserHistoryStore(OfBizUserHistoryStore delegatingStore, ApplicationProperties applicationProperties, com.atlassian.event.api.EventPublisher eventPublisher)
           
CachingUserHistoryStore(OfBizUserHistoryStore delegatingStore, ApplicationProperties applicationProperties, com.atlassian.event.api.EventPublisher eventPublisher)
           
DefaultUserHistoryManager(UserHistoryStore store)
           
 

Uses of NotNull in com.atlassian.jira.user.util
 

Methods in com.atlassian.jira.user.util with annotations of type NotNull
 java.util.Set<com.opensymphony.user.User> UserManager.getAllUsers()
          Returns all users defined in JIRA, regardless of whether they are active or not.
 java.util.Set<com.opensymphony.user.User> UserUtil.getAllUsers()
          Returns the all user-names defined in JIRA, regardless of whether they are active or not.
 

Uses of NotNull in com.atlassian.jira.util
 

Method parameters in com.atlassian.jira.util with annotations of type NotNull
static
<T> DelegateComponentAdapter.Builder<T>
DelegateComponentAdapter.Builder.builderFor(java.lang.Class<T> concrete)
           
 void StreamCopyingConsumer.consume(java.io.InputStream inputStream)
           
 void Base64InputStreamConsumer.consume(java.io.InputStream element)
           
 void Consumer.consume(T element)
          Consume the product.
static
<T> Predicate<T>
Predicates.equalTo(T check)
          A predicate that check that some input equals the passed argument.
 

Constructor parameters in com.atlassian.jira.util with annotations of type NotNull
CompositeCloseable(Closeable closeable, Closeable closeable2)
           
CompositeCloseable(Closeable closeable, Closeable closeable2)
           
RuntimeIOException(java.io.IOException cause)
           
RuntimeIOException(java.lang.String message, java.io.IOException cause)
           
RuntimeIOException(java.lang.String message, java.io.IOException cause)
           
UserAgentUtil.Browser(UserAgentUtil.BrowserFamily browserFamily, UserAgentUtil.BrowserMajorVersion browserMajorVersion, java.lang.String browserMinorVersion)
           
UserAgentUtil.Browser(UserAgentUtil.BrowserFamily browserFamily, UserAgentUtil.BrowserMajorVersion browserMajorVersion, java.lang.String browserMinorVersion)
           
UserAgentUtil.Browser(UserAgentUtil.BrowserFamily browserFamily, UserAgentUtil.BrowserMajorVersion browserMajorVersion, java.lang.String browserMinorVersion)
           
 

Uses of NotNull in com.atlassian.jira.util.cache
 

Method parameters in com.atlassian.jira.util.cache with annotations of type NotNull
 T CompositeKeyCache.get(R one, S two, Supplier<T> supplier)
          Get the thing mapped to this key for the specified reader.
 T CompositeKeyCache.get(R one, S two, Supplier<T> supplier)
          Get the thing mapped to this key for the specified reader.
 

Uses of NotNull in com.atlassian.jira.util.collect
 

Method parameters in com.atlassian.jira.util.collect with annotations of type NotNull
static
<T> boolean
CollectionUtil.contains(java.lang.Iterable<? extends T> iterable, Predicate<T> predicate)
          Does the supplied Iterable contain anything that matches the predicate?
static
<T> boolean
CollectionUtil.contains(java.lang.Iterable<? extends T> iterable, Predicate<T> predicate)
          Does the supplied Iterable contain anything that matches the predicate?
static
<T> boolean
CollectionUtil.contains(java.util.Iterator<? extends T> iterator, Predicate<T> predicate)
          Does the supplied Iterator contain anything that matches the predicate?
static
<T> boolean
CollectionUtil.contains(java.util.Iterator<? extends T> iterator, Predicate<T> predicate)
          Does the supplied Iterator contain anything that matches the predicate?
static
<T> java.util.List<T>
CollectionUtil.copyAsImmutableList(java.util.Collection<? extends T> copy)
          Return an immutable list copy of the passed collection.
static
<K,V> java.util.Map<K,V>
CollectionUtil.copyAsImmutableMap(java.util.Map<? extends K,? extends V> copy)
          Return an immutable copy of the passed map.
static
<T> java.util.Set<T>
CollectionUtil.copyAsImmutableSet(java.util.Collection<? extends T> copy)
          Return an immutable set copy of the passed collection.
static
<T> java.util.Collection<T>
CollectionUtil.filter(java.util.Collection<T> collection, Predicate<? super T> predicate)
          Create a filtered Collection.
static
<T> java.util.Collection<T>
CollectionUtil.filter(java.util.Collection<T> collection, Predicate<? super T> predicate)
          Create a filtered Collection.
static
<T> java.lang.Iterable<T>
CollectionUtil.filter(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
          Create a filtered Iterable.
static
<T> java.lang.Iterable<T>
CollectionUtil.filter(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
          Create a filtered Iterable.
static
<T> java.util.Iterator<T>
CollectionUtil.filter(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
          Create a filtered Iterator.
static
<T> java.util.Iterator<T>
CollectionUtil.filter(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
          Create a filtered Iterator.
static
<T,R extends T>
java.util.Collection<R>
CollectionUtil.filterByType(java.lang.Iterable<T> iterable, java.lang.Class<R> subclass)
          Filter a Collection for the specified subtype.
static
<T,R extends T>
java.util.Collection<R>
CollectionUtil.filterByType(java.lang.Iterable<T> iterable, java.lang.Class<R> subclass)
          Filter a Collection for the specified subtype.
static
<T> T
CollectionUtil.findFirstMatch(java.lang.Iterable<? extends T> iterable, Predicate<T> predicate)
          Return the first found element that the predicate matches.
static
<T> T
CollectionUtil.first(java.lang.Iterable<? extends T> iterable)
          Get the first element of a an Iterable in iteration order, or null if empty.
static
<T> void
CollectionUtil.foreach(java.lang.Iterable<T> iterable, Consumer<T> consumer)
          For each element in the iterator, consume the contents.
static
<T> void
CollectionUtil.foreach(java.util.Iterator<? extends T> iterator, Consumer<T> consumer)
          For each element in the iterator, consume the contents.
static
<T> void
CollectionUtil.foreach(java.util.Iterator<? extends T> iterator, Consumer<T> consumer)
          For each element in the iterator, consume the contents.
static
<T> int
CollectionUtil.indexOf(java.lang.Iterable<? extends T> iterable, Predicate<? super T> predicate)
          Returns the index of the first element that matches the predicate.
static
<T> int
CollectionUtil.indexOf(java.lang.Iterable<? extends T> iterable, Predicate<? super T> predicate)
          Returns the index of the first element that matches the predicate.
static
<T> java.util.List<T>
CollectionUtil.sort(java.util.Collection<? extends T> collection, java.util.Comparator<T> comparator)
          Copy and sort the passed collection and return an unmodifiable List of the elements.
static
<T> java.util.List<T>
CollectionUtil.sort(java.util.Collection<? extends T> collection, java.util.Comparator<T> comparator)
          Copy and sort the passed collection and return an unmodifiable List of the elements.
static
<T> java.util.List<T>
CollectionUtil.toList(java.util.Enumeration<? extends T> enumeration)
          Turn the enumeration into a list.
static
<T> java.util.List<T>
CollectionUtil.toList(java.lang.Iterable<? extends T> iterable)
          Turn the iterable into a list.
static
<T> java.util.List<T>
CollectionUtil.toList(java.util.Iterator<? extends T> iterator)
          Turn the iterator into a list.
static
<T> java.util.Set<T>
CollectionUtil.toSet(java.lang.Iterable<? extends T> iterable)
          Turn the iterable into a Set.
static
<T> java.util.Set<T>
CollectionUtil.toSet(java.util.Iterator<? extends T> iterator)
          Turn the iterable into a Set.
static
<T,R> java.util.List<R>
CollectionUtil.transform(java.lang.Iterable<? extends T> iterable, Function<T,R> transformer)
          Return a List that is transformed from elements of the input type to elements of the output type by a transformer function.
static
<T,R> java.util.List<R>
CollectionUtil.transform(java.lang.Iterable<? extends T> iterable, Function<T,R> transformer)
          Return a List that is transformed from elements of the input type to elements of the output type by a transformer function.
static
<T,R> java.util.List<R>
CollectionUtil.transform(java.util.Iterator<? extends T> iterator, Function<T,R> transformer)
          Return a List that is transformed from elements of the input type to elements of the output type by a transformer function.
static
<T,R> java.util.List<R>
CollectionUtil.transform(java.util.Iterator<? extends T> iterator, Function<T,R> transformer)
          Return a List that is transformed from elements of the input type to elements of the output type by a transformer function.
static
<T,R> java.util.Iterator<R>
CollectionUtil.transformIterator(java.util.Iterator<? extends T> iterator, Function<T,R> transformer)
          Return an Iterator that is transformed from elements of the input type to elements of the output type by a transformer function.
static
<T,R> java.util.Iterator<R>
CollectionUtil.transformIterator(java.util.Iterator<? extends T> iterator, Function<T,R> transformer)
          Return an Iterator that is transformed from elements of the input type to elements of the output type by a transformer function.
static
<T,R> java.util.Set<R>
CollectionUtil.transformSet(java.lang.Iterable<T> iterable, Function<T,R> transformer)
          Return a Set that is transformed from elements of the input type to elements of the output type by a transformer function.
static
<T,R> java.util.Set<R>
CollectionUtil.transformSet(java.lang.Iterable<T> iterable, Function<T,R> transformer)
          Return a Set that is transformed from elements of the input type to elements of the output type by a transformer function.
 

Uses of NotNull in com.atlassian.jira.util.index
 

Method parameters in com.atlassian.jira.util.index with annotations of type NotNull
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, com.atlassian.johnson.event.Event event)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, com.atlassian.johnson.event.Event event)
           
 

Uses of NotNull in com.atlassian.jira.util.log
 

Methods in com.atlassian.jira.util.log with annotations of type NotNull
 java.util.Collection<java.io.File> JiraLogLocator.findAllJiraLogFiles()
          Return a collection of all JIRA log files.
 

Uses of NotNull in com.atlassian.query.order
 

Methods in com.atlassian.query.order with annotations of type NotNull
 java.util.List<SearchSort> OrderBy.getSearchSorts()
           
 



Copyright © 2002-2010 Atlassian. All Rights Reserved.