|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CommandInterceptor | |
|---|---|
| org.xcmis.search.content.interceptors | |
| org.xcmis.search.lucene | |
| Uses of CommandInterceptor in org.xcmis.search.content.interceptors |
|---|
| Subclasses of CommandInterceptor in org.xcmis.search.content.interceptors | |
|---|---|
class |
ContentReaderInterceptor
Abstract class that interpret only read-only operation's. |
class |
QueryableIndexStorage
Interceptor that handle changes to the index. |
class |
QueryProcessorInterceptor
A query engine that is able to execute formal queries expressed in the Abstract Query Model. |
| Methods in org.xcmis.search.content.interceptors that return CommandInterceptor | |
|---|---|
CommandInterceptor |
InterceptorChain.getFirstInChain()
|
CommandInterceptor |
CommandInterceptor.getNext()
Retrieves the next interceptor in the chain. |
| Methods in org.xcmis.search.content.interceptors that return types with arguments of type CommandInterceptor | |
|---|---|
List<CommandInterceptor> |
InterceptorChain.asList()
Returns an unmofiable list with all the interceptors in sequence. |
List<CommandInterceptor> |
InterceptorChain.getInterceptorsWhichExtend(Class<? extends CommandInterceptor> interceptorClass)
Returns all interceptors which extend the given command interceptor. |
List<CommandInterceptor> |
InterceptorChain.getInterceptorsWithClassName(String fqName)
Returns all the interceptors that have the fully qualified name of their class equal with the supplied class name. |
| Methods in org.xcmis.search.content.interceptors with parameters of type CommandInterceptor | |
|---|---|
boolean |
InterceptorChain.addAfterInterceptor(CommandInterceptor toAdd,
Class<? extends CommandInterceptor> afterInterceptor)
Adds a new interceptor in list after an interceptor of a given type. |
boolean |
InterceptorChain.addBeforeInterceptor(CommandInterceptor toAdd,
Class<? extends CommandInterceptor> beforeInterceptor)
Adds a new interceptor in list after an interceptor of a given type. |
void |
InterceptorChain.addInterceptor(CommandInterceptor interceptor,
int position)
Inserts the given interceptor at the specified position in the chain (o based indexing). |
void |
InterceptorChain.appendIntereceptor(CommandInterceptor ci)
Appends at the end. |
boolean |
InterceptorChain.containsInstance(CommandInterceptor interceptor)
Checks whether the chain contains the supplied interceptor instance. |
void |
InterceptorChain.setFirstInChain(CommandInterceptor interceptor)
Mainly used by unit tests to replace the interceptor chain with the starting point passed in. |
void |
CommandInterceptor.setNext(CommandInterceptor next)
Sets the next interceptor in the chain to the interceptor passed in. |
| Method parameters in org.xcmis.search.content.interceptors with type arguments of type CommandInterceptor | |
|---|---|
boolean |
InterceptorChain.addAfterInterceptor(CommandInterceptor toAdd,
Class<? extends CommandInterceptor> afterInterceptor)
Adds a new interceptor in list after an interceptor of a given type. |
boolean |
InterceptorChain.addBeforeInterceptor(CommandInterceptor toAdd,
Class<? extends CommandInterceptor> beforeInterceptor)
Adds a new interceptor in list after an interceptor of a given type. |
List<CommandInterceptor> |
InterceptorChain.getInterceptorsWhichExtend(Class<? extends CommandInterceptor> interceptorClass)
Returns all interceptors which extend the given command interceptor. |
void |
InterceptorChain.removeInterceptor(Class<? extends CommandInterceptor> clazz)
Removes all the occurences of supplied interceptor type from the chain. |
| Constructors in org.xcmis.search.content.interceptors with parameters of type CommandInterceptor | |
|---|---|
InterceptorChain(CommandInterceptor first)
Constructs an interceptor chain having the supplied interceptor as first. |
|
| Uses of CommandInterceptor in org.xcmis.search.lucene |
|---|
| Subclasses of CommandInterceptor in org.xcmis.search.lucene | |
|---|---|
class |
AbstractLuceneQueryableIndexStorage
Base implementation of Lucene based QueryableIndexStorage. |
class |
InMemoryLuceneQueryableIndexStorage
|
class |
LuceneQueryableIndexStorage
Lucene persisted implementation of QueryableIndexStorage. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||