Add some missing comments.
authorScott Cantor <cantor.2@osu.edu>
Thu, 26 Apr 2007 20:08:50 +0000 (20:08 +0000)
committerScott Cantor <cantor.2@osu.edu>
Thu, 26 Apr 2007 20:08:50 +0000 (20:08 +0000)
xmltooling/security/BasicX509Credential.h
xmltooling/security/Credential.h
xmltooling/security/X509Credential.h

index c9ee377..6b4b486 100644 (file)
@@ -36,6 +36,11 @@ namespace xmltooling {
     class XMLTOOL_API BasicX509Credential : public virtual X509Credential
     {
     protected:
+        /**
+         * Constructor.
+         * 
+         * @param ownCerts  true iff any certificates subsequently stored should be freed by destructor
+         */
         BasicX509Credential(bool ownCerts) : m_key(NULL), m_ownCerts(ownCerts), m_crl(NULL), m_keyInfo(NULL), m_compactKeyInfo(NULL) {
         }
 
index 42b20d4..8fa7bb4 100644 (file)
@@ -53,6 +53,9 @@ namespace xmltooling {
     public:
         virtual ~Credential() {}
         
+        /**
+         * Bitmask constants for limiting resolution process inside a CredentialResolver. 
+         */
         enum ResolveTypes {
             RESOLVE_KEYS = 1,
             RESOLVE_NAMES = 2
index b751398..6442ca1 100644 (file)
@@ -41,6 +41,9 @@ namespace xmltooling {
     public:
         virtual ~X509Credential() {}
 
+        /**
+         * Bitmask constants for limiting resolution process inside a CredentialResolver. 
+         */
         enum ResolveTypes {
             RESOLVE_CERTS = 4,
             RESOLVE_CRLS = 8