First version of OpenID consumer

(light implementation)
This commit is contained in:
Jocelyn Fiat
2013-02-27 22:09:06 +01:00
parent 2302a91b5b
commit d4091a57c9
10 changed files with 1165 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
note
description : "Objects that ..."
author : "$Author$"
date : "$Date$"
revision : "$Revision$"
class
APPLICATION
inherit
ARGUMENTS
create
make
feature {NONE} -- Initialization
make
-- Initialize `Current'.
do
test_openid
end
test_openid
local
t: TEST_OPENID
do
create t.make
end
end