summaryrefslogtreecommitdiffabout
path: root/include
authorMichael Krelin <hacker@klever.net>2008-02-08 21:24:46 (UTC)
committer Michael Krelin <hacker@klever.net>2008-02-08 21:24:46 (UTC)
commit2e93c9940944edab87c29a2a13d60090f15fea86 (patch) (side-by-side diff)
tree06cfab5d2c67f0937039dfe52f252f168441b300 /include
parent6c82575a47283fcd7fdd0cf42b96e90a0888c58c (diff)
downloadlibopkele-2e93c9940944edab87c29a2a13d60090f15fea86.zip
libopkele-2e93c9940944edab87c29a2a13d60090f15fea86.tar.gz
libopkele-2e93c9940944edab87c29a2a13d60090f15fea86.tar.bz2
further doxygenation of basic_OP, extension_t and verify_OP
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'include') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/basic_op.h3
-rw-r--r--include/opkele/extension.h8
-rw-r--r--include/opkele/verify_op.h10
3 files changed, 21 insertions, 0 deletions
diff --git a/include/opkele/basic_op.h b/include/opkele/basic_op.h
index a0f0af0..0e3231d 100644
--- a/include/opkele/basic_op.h
+++ b/include/opkele/basic_op.h
@@ -10,2 +10,5 @@ namespace opkele {
+ /**
+ * Implementation of basic OP functionality
+ */
class basic_OP {
diff --git a/include/opkele/extension.h b/include/opkele/extension.h
index 37bcb90..38f61e3 100644
--- a/include/opkele/extension.h
+++ b/include/opkele/extension.h
@@ -46,2 +46,7 @@ namespace opkele {
+ /**
+ * @name deprecated hooks, used by the deprecated consumer_t and
+ * server_t implementations
+ * @{
+ */
virtual void checkid_hook(basic_openid_message& om) OPKELE_DEPRECATE;
@@ -50,2 +55,5 @@ namespace opkele {
virtual void checkid_hook(const basic_openid_message& inm,basic_openid_message& oum);
+ /**
+ * @}
+ */
diff --git a/include/opkele/verify_op.h b/include/opkele/verify_op.h
index 6c3c386..6b94240 100644
--- a/include/opkele/verify_op.h
+++ b/include/opkele/verify_op.h
@@ -7,2 +7,5 @@ namespace opkele {
+ /**
+ * The OP implementation that does discovery verification on RP
+ */
class verify_op : public basic_OP {
@@ -10,2 +13,9 @@ namespace opkele {
+ /**
+ * In addition to basic_OP::verify_return_to() functionality this
+ * implementation does the discovery on RP to see if return_to matches
+ * the realm
+ * @throw bad_return_to in case we fail to discover corresponding
+ * service endpoint
+ */
void verify_return_to();