modified to allow only one kind of client at a time
This commit is contained in:
parent
8d7e16a0c4
commit
f561ad58ff
|
@ -1,7 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<!DOCTYPE authenticationClientFactory [
|
<!DOCTYPE authenticationClientFactory [
|
||||||
|
|
||||||
<!ELEMENT authenticationClientFactory (testAuthentication)>
|
<!ELEMENT authenticationClientFactory (testAuthentication|
|
||||||
|
webAuthentication)>
|
||||||
|
|
||||||
<!ELEMENT testAuthentication (user) >
|
<!ELEMENT testAuthentication (user) >
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.3 $
|
Version : $Revision: 1.4 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/include/LiveSupport/Authentication/AuthenticationClientFactory.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/include/LiveSupport/Authentication/AuthenticationClientFactory.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -88,11 +88,12 @@ using namespace LiveSupport::Core;
|
||||||
* The DTD for the above element is:
|
* The DTD for the above element is:
|
||||||
*
|
*
|
||||||
* <pre><code>
|
* <pre><code>
|
||||||
* <!ELEMENT authenticationClientFactory (webAuthentication) >
|
* <!ELEMENT authenticationClientFactory (testAuthentication|
|
||||||
|
* webAuthentication) >
|
||||||
* </code></pre>
|
* </code></pre>
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.3 $
|
* @version $Revision: 1.4 $
|
||||||
* @see TestAuthenticationClient
|
* @see TestAuthenticationClient
|
||||||
* @see WebAuthenticationClient
|
* @see WebAuthenticationClient
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<!DOCTYPE authenticationClientFactory [
|
<!DOCTYPE authenticationClientFactory [
|
||||||
|
|
||||||
<!ELEMENT authenticationClientFactory (testAuthentication)>
|
<!ELEMENT authenticationClientFactory (testAuthentication|
|
||||||
|
webAuthentication)>
|
||||||
|
|
||||||
<!ELEMENT testAuthentication (user) >
|
<!ELEMENT testAuthentication (user) >
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<!DOCTYPE authenticationClientFactory [
|
<!DOCTYPE authenticationClientFactory [
|
||||||
|
|
||||||
<!ELEMENT authenticationClientFactory (testAuthentication)>
|
<!ELEMENT authenticationClientFactory (testAuthentication|
|
||||||
|
webAuthentication)>
|
||||||
|
|
||||||
<!ELEMENT testAuthentication (user) >
|
<!ELEMENT testAuthentication (user) >
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue