summaryrefslogtreecommitdiffabout
path: root/include/opkele/consumer.h
Unidiff
Diffstat (limited to 'include/opkele/consumer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/consumer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/opkele/consumer.h b/include/opkele/consumer.h
index f9939cf..f32509e 100644
--- a/include/opkele/consumer.h
+++ b/include/opkele/consumer.h
@@ -87,7 +87,7 @@ namespace opkele {
87 * @return the location string 87 * @return the location string
88 * @throw exception in case of error 88 * @throw exception in case of error
89 */ 89 */
90 string checkid_immediate(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); 90 virtual string checkid_immediate(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
91 /** 91 /**
92 * prepare the parameters for the checkid_setup 92 * prepare the parameters for the checkid_setup
93 * request. 93 * request.
@@ -98,7 +98,7 @@ namespace opkele {
98 * @return the location string 98 * @return the location string
99 * @throw exception in case of error 99 * @throw exception in case of error
100 */ 100 */
101 string checkid_setup(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); 101 virtual string checkid_setup(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
102 /** 102 /**
103 * the actual implementation behind checkid_immediate() and 103 * the actual implementation behind checkid_immediate() and
104 * checkid_setup() functions. 104 * checkid_setup() functions.
@@ -110,7 +110,7 @@ namespace opkele {
110 * @return the location string 110 * @return the location string
111 * @throw exception in case of error 111 * @throw exception in case of error
112 */ 112 */
113 string checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); 113 virtual string checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
114 /** 114 /**
115 * verify the id_res response 115 * verify the id_res response
116 * @param pin the response parameters 116 * @param pin the response parameters
@@ -123,7 +123,7 @@ namespace opkele {
123 * @throw id_res_failed in case of failure 123 * @throw id_res_failed in case of failure
124 * @throw exception in case of other failures 124 * @throw exception in case of other failures
125 */ 125 */
126 void id_res(const params_t& pin,const string& identity="",extension_t *ext=0); 126 virtual void id_res(const params_t& pin,const string& identity="",extension_t *ext=0);
127 /** 127 /**
128 * perform a check_authentication request. 128 * perform a check_authentication request.
129 * @param server the OpenID server 129 * @param server the OpenID server