Multi-line svn commit, see body.
[shibboleth/cpp-opensaml.git] / saml / saml2 / binding / SAML2Artifact.h
index e84a334..af2dbe9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright 2001-2006 Internet2
+ *  Copyright 2001-2007 Internet2
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
  */
 
 /**
- * @file saml/saml2/core/SAML2Artifact.h
+ * @file saml/saml2/binding/SAML2Artifact.h
  * 
  * Base class for SAML 2.0 artifacts
  */
@@ -50,8 +50,18 @@ namespace opensaml {
         protected:
             SAML2Artifact() {}
 
+            /**
+             * Constructor.
+             * 
+             * @param s raw artifact string
+             */
             SAML2Artifact(const char* s) : SAMLArtifact(s) {}
     
+            /**
+             * Copy constructor.
+             * 
+             * @param src   object to copy
+             */
             SAML2Artifact(const SAML2Artifact& src) : SAMLArtifact(src) {}
         };