root/org.nuxeo.ecm.platform/trunk/nuxeo-platform-search-compass-plugin/src/main/resources/OSGI-INF/nxsearch-backend-compass-framework.xml

Revision 21771, 1.2 kB (checked in by gracinet, 2 years ago)

NXP-1167: use file system Lucene Directory, configurable

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1 <?xml version="1.0"?>
2
3 <component name="org.nuxeo.ecm.core.search.backend.compass.CompassBackend"
4   version="1.0">
5
6   <service>
7     <provide
8       interface="org.nuxeo.ecm.core.search.backend.compass.CompassBackend"/>
9   </service>
10
11   <documentation> Compass Search Engne Backend
12
13     @version 1.0
14     @author <a href="mailto:gr@nuxeo.com">Georges Racinet</a>
15   </documentation>
16
17   <implementation class="org.nuxeo.ecm.core.search.backend.compass.CompassBackend"/>
18
19   <extension-point name="connection">
20
21     <documentation> Extension point for database connection.
22     This overrides the connection information that's specified
23     in main Compass configuration file.
24
25     FileConnectionDescriptor: use the standard Lucene file system storage.
26     Attribute: path. If relative, this will be from NXRuntime's home.
27
28     DefaultConnectionDescriptor: clears all contribution to the present
29     extension point, ie get back to what's specified in main Compass XML
30     configuration file.
31     </documentation>
32
33     <object
34       class="org.nuxeo.ecm.core.search.backend.compass.connection.FileConnectionDescriptor"/>
35
36     <object
37       class="org.nuxeo.ecm.core.search.backend.compass.connection.DefaultConnectionDescriptor"/>
38
39   </extension-point>
40
41 </component>
Note: See TracBrowser for help on using the browser.