|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ClauseContextFactory | |
|---|---|
| com.atlassian.jira.issue.customfields.searchers | |
| com.atlassian.jira.issue.search.handlers | |
| com.atlassian.jira.jql | |
| com.atlassian.jira.jql.context | |
| Uses of ClauseContextFactory in com.atlassian.jira.issue.customfields.searchers |
|---|
| Methods in com.atlassian.jira.issue.customfields.searchers that return ClauseContextFactory | |
|---|---|
ClauseContextFactory |
SimpleCustomFieldClauseContextHandler.getClauseContextFactory()
|
ClauseContextFactory |
CustomFieldClauseContextHandler.getClauseContextFactory()
|
| Constructors in com.atlassian.jira.issue.customfields.searchers with parameters of type ClauseContextFactory | |
|---|---|
SimpleCustomFieldClauseContextHandler(ClauseValidator validator,
ClauseQueryFactory clauseQueryFactory,
ClauseContextFactory clauseContextFactory,
Set<Operator> supportedOperators,
JiraDataType supportedType)
|
|
SimpleCustomFieldContextValueGeneratingClauseHandler(ClauseValidator validator,
ClauseQueryFactory clauseQueryFactory,
ClauseContextFactory clauseContextFactory,
ClauseValuesGenerator clauseValuesGenerator,
Set<Operator> supportedOperators,
JiraDataType supportedType)
|
|
| Uses of ClauseContextFactory in com.atlassian.jira.issue.search.handlers |
|---|
| Constructors in com.atlassian.jira.issue.search.handlers with parameters of type ClauseContextFactory | |
|---|---|
SimpleSearchHandlerFactory(ComponentFactory factory,
ClauseInformation information,
Class<? extends IssueSearcher<SearchableField>> searcherClass,
ClauseQueryFactory queryFactory,
ClauseValidator queryValidator,
FieldClausePermissionChecker.Factory clausePermissionFactory,
ClauseContextFactory clauseContextFactory,
ClauseValuesGenerator clauseValuesGenerator)
Creates a new factory. |
|
SimpleSearchHandlerFactory(ComponentFactory factory,
ClauseInformation information,
Class<? extends IssueSearcher<SearchableField>> searcherClass,
ClauseQueryFactory queryFactory,
ClauseValidator queryValidator,
FieldClausePermissionChecker.Factory clausePermissionFactory,
ClauseContextFactory clauseContextFactory,
ClauseValuesGenerator clauseValuesGenerator,
ClauseSanitiser sanitiser)
Creates a new factory. |
|
| Uses of ClauseContextFactory in com.atlassian.jira.jql |
|---|
| Methods in com.atlassian.jira.jql that return ClauseContextFactory | |
|---|---|
ClauseContextFactory |
ClauseHandler.getClauseContextFactory()
|
ClauseContextFactory |
NoOpClauseHandler.getClauseContextFactory()
|
ClauseContextFactory |
DefaultValuesGeneratingClauseHandler.getClauseContextFactory()
|
ClauseContextFactory |
DefaultClauseHandler.getClauseContextFactory()
|
| Constructors in com.atlassian.jira.jql with parameters of type ClauseContextFactory | |
|---|---|
DefaultClauseHandler(ClauseInformation information,
ClauseQueryFactory factory,
ClauseValidator validator,
ClausePermissionHandler permissionHandler,
ClauseContextFactory contextFactory)
|
|
DefaultValuesGeneratingClauseHandler(ClauseInformation clauseInformation,
ClauseQueryFactory factory,
ClauseValidator validator,
ClausePermissionHandler permissionHandler,
ClauseContextFactory contextFactory,
ClauseValuesGenerator valuesGenerator)
|
|
| Uses of ClauseContextFactory in com.atlassian.jira.jql.context |
|---|
| Classes in com.atlassian.jira.jql.context that implement ClauseContextFactory | |
|---|---|
class |
AbstractProjectAttributeClauseContextFactory<T>
An abstract class for generating the context for version and components of projects. |
class |
AllTextClauseContextFactory
Calculates the context of the "all text" clause. |
class |
CascadingSelectCustomFieldClauseContextFactory
The context calculation for cascading select. |
class |
ComponentClauseContextFactory
A context factory for project component clauses. |
class |
CustomFieldClauseContextFactory
Generates the ClauseContext for a custom field. |
class |
IntersectingClauseContextFactory
An intersecting ClauseContextFactory that intersectects
the generated query contexts of its sub ClauseContextFactory's |
class |
IssueIdClauseContextFactory
A context factory for issue keys and id clauses. |
class |
IssueParentClauseContextFactory
A context factory for issue parent clauses. |
class |
IssueSecurityLevelClauseContextFactory
A context factory for issue security level clauses. |
class |
IssueTypeClauseContextFactory
Generates a ClauseContext based on the issue type values and the project they are visible in |
class |
MultiClauseDecoratorContextFactory
Decorates a ClauseContextFactory to ensure that: |
class |
ProjectCategoryClauseContextFactory
Generates a ClauseContext for a project category clause based on the specified
project values and the projects that the user has permission to see. |
class |
ProjectClauseContextFactory
Generates a ClauseContext for a project clause based on the specified
project values and the projects that the user has permission to see. |
class |
SavedFilterClauseContextFactory
A Clause context factory for saved filters. |
class |
SelectCustomFieldClauseContextFactory
Generates the ClauseContext for a select custom field. |
class |
SimpleClauseContextFactory
A Clause context factory that returns a ClauseContext with
all issue types and all projects. |
class |
StatusClauseContextFactory
A context factory for project status clauses. |
class |
ValidatingDecoratorContextFactory
A ClauseContextFactory that wraps another ClauseContextFactory to ensure
that the ValidatingDecoratorContextFactory.getClauseContext(com.opensymphony.user.User, com.atlassian.query.clause.TerminalClause) method
on the wrapped object is only called when this passed TerminalClause passes usage validation. |
class |
VersionClauseContextFactory
A context factory for project version clauses (fix and affects). |
| Methods in com.atlassian.jira.jql.context that return ClauseContextFactory | |
|---|---|
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. |
| Methods in com.atlassian.jira.jql.context with parameters of type ClauseContextFactory | |
|---|---|
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. |
| Constructors in com.atlassian.jira.jql.context with parameters of type ClauseContextFactory | |
|---|---|
MultiClauseDecoratorContextFactory(JqlOperandResolver jqlOperandResolver,
ClauseContextFactory delegate)
|
|
MultiClauseDecoratorContextFactory(JqlOperandResolver jqlOperandResolver,
ClauseContextFactory delegate,
ContextSetUtil contextSetUtil)
|
|
ValidatingDecoratorContextFactory(OperatorUsageValidator usageValidator,
ClauseContextFactory delegatingContextFactory)
|
|
| Constructor parameters in com.atlassian.jira.jql.context with type arguments of type ClauseContextFactory | |
|---|---|
IntersectingClauseContextFactory(ContextSetUtil contextSetUtil,
Collection<ClauseContextFactory> subClauseContextFactories)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||