Changeset 2976
- Timestamp:
- Nov 29, 2006, 2:49:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/development/plugins/storage/index.html
r2932 r2976 52 52 <li><a href="#overview">Primary vs. secondary storage</a></li> 53 53 <li><a href="#secondary">The SecondaryStorageController interface</a></li> 54 <li><a href="#config">Co mnfiguration settings</a></li>54 <li><a href="#config">Configuration settings</a></li> 55 55 </ol> 56 56 <p> … … 59 59 <li><a href="../../../admin/base.config.html#seconary">base.config reference: 60 60 Secondary storage section</a> 61 <li><a href="../../../api/net/sf/basedb/core/SecondaryStorageController.html" 62 >The SecondaryStorageController interface</a> 61 63 </ul> 62 64 </p> … … 121 123 <p> 122 124 All you have to do to create a secondary storage controller is 123 to create a class that implements the <code>SecondaryStorageController</code> 124 interface. In you <code>base.config</code> file you then specify the 125 to create a class that implements the 126 <code><a href="../../../api/net/sf/basedb/core/SecondaryStorageController.html" 127 >SecondaryStorageController</a></code> 128 interface. In your <code>base.config</code> file you then specify the 125 129 class name in the <code>secondary.storage.driver</code> setting and it's 126 130 initialisation parameters in the <code>secondary.storage.driver</code> … … 131 135 Your class must have a public no-argument constructor. The BASE application will 132 136 create only one instance of the class for lifetime of the BASE server. 133 Here are the method that you must implement:137 Here are the methods that you must implement: 134 138 </p> 135 139 … … 189 193 190 194 <a name="config"></a> 191 <h2>3. Configuration setting </h2>195 <h2>3. Configuration settings</h2> 192 196 193 197 <p> 194 198 The configuration settings for the secondary storage controller is 195 locat ionin the <code>base.config</code> file. Here is an overview of199 located in the <code>base.config</code> file. Here is an overview of 196 200 the settings. For more information read the 197 201 <a href="../../../admin/base.config.html#seconary">base.config reference</a> … … 206 210 <dt>secondary.storage.init</dt> 207 211 <dd> 208 Initialisation param ters sent to the plugin by calling the212 Initialisation parameters sent to the plugin by calling the 209 213 <code>init()</code> method. 210 214 </dd>
Note: See TracChangeset
for help on using the changeset viewer.