changed StorageClientFactory to produce only one kind of client
added some documentation (of xml configuration file format)
This commit is contained in:
parent
bcbe880d42
commit
8d7e16a0c4
17 changed files with 168 additions and 85 deletions
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
Author : $Author: fgerlits $
|
||||
Version : $Revision: 1.15 $
|
||||
Version : $Revision: 1.16 $
|
||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/TestStorageClient.h,v $
|
||||
|
||||
------------------------------------------------------------------------------*/
|
||||
|
@ -67,8 +67,30 @@ using namespace LiveSupport::Core;
|
|||
/**
|
||||
* A dummy storage client, only used for test purposes.
|
||||
*
|
||||
* This object has to be configured with an XML configuration element
|
||||
* called testStorage. This may look like the following:
|
||||
*
|
||||
* <pre><code>
|
||||
* <testStorage tempFiles="file:///tmp/tempPlaylist" >
|
||||
* <playlist> ... </playlist>
|
||||
* ...
|
||||
* <audioClip> ... </audioClip>
|
||||
* ...
|
||||
* </testStorage>
|
||||
* </code></pre>
|
||||
*
|
||||
* For detais of the playlist and audioClip elements, see the documentation
|
||||
* for the Core::Playlist and Core::AudioClip classes.
|
||||
*
|
||||
* The DTD for the above element is:
|
||||
*
|
||||
* <pre><code>
|
||||
* <!ELEMENT testStorage (playlist*, audioClip*) >
|
||||
* <!ATTLIST testStorage tempFiles CDATA #REQUIRED >
|
||||
* </code></pre>
|
||||
*
|
||||
* @author $Author: fgerlits $
|
||||
* @version $Revision: 1.15 $
|
||||
* @version $Revision: 1.16 $
|
||||
*/
|
||||
class TestStorageClient :
|
||||
virtual public Configurable,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue