added some more documentation to the authentication client
This commit is contained in:
parent
7a1e167ca9
commit
d453f7d664
4 changed files with 1212 additions and 9 deletions
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
Author : $Author: fgerlits $
|
||||
Version : $Revision: 1.3 $
|
||||
Version : $Revision: 1.4 $
|
||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/WebStorageClient.h,v $
|
||||
|
||||
------------------------------------------------------------------------------*/
|
||||
|
@ -65,10 +65,41 @@ using namespace LiveSupport::Core;
|
|||
/* =============================================================== data types */
|
||||
|
||||
/**
|
||||
* An interface to the (possibly remote) php storage server.
|
||||
* An interface to the php storage server.
|
||||
*
|
||||
* This object has to be configured with an XML configuration element
|
||||
* called webStorage. This element contains a child element
|
||||
* specifying the location of the authentication server, and an attribute
|
||||
* called tempFiles which specifies where the temporary playlist files are
|
||||
* going to be created. The name of the temp files will be the tempFiles
|
||||
* attribute value, plus a random string, plus a ".smil" extension.
|
||||
*
|
||||
* A authenticationClientFactory configuration element may look like the following:
|
||||
*
|
||||
* <pre><code>
|
||||
* <webStorage
|
||||
* tempFiles="file:///tmp/tempPlaylist" >
|
||||
* <location
|
||||
* server="localhost"
|
||||
* port="80"
|
||||
* path="/storage/var/xmlrpc/xrLocStor.php"
|
||||
* />
|
||||
* </webStorage>
|
||||
* </code></pre>
|
||||
*
|
||||
* The DTD for the above element is:
|
||||
*
|
||||
* <pre><code>
|
||||
* <!ELEMENT webStorage (location) >
|
||||
* <!ATTLIST webStorage tempFiles CDATA #REQUIRED >
|
||||
* <!ELEMENT location EMPTY >
|
||||
* <!ATTLIST location server CDATA #REQUIRED >
|
||||
* <!ATTLIST location port NMTOKEN #REQUIRED >
|
||||
* <!ATTLIST location path CDATA #REQUIRED >
|
||||
* </code></pre>
|
||||
*
|
||||
* @author $Author: fgerlits $
|
||||
* @version $Revision: 1.3 $
|
||||
* @version $Revision: 1.4 $
|
||||
*/
|
||||
class WebStorageClient :
|
||||
virtual public Configurable,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue