Promoted isSecure.
[shibboleth/cpp-opensaml.git] / saml / binding / HTTPRequest.h
index 2c34a83..177aa56 100644 (file)
@@ -42,7 +42,11 @@ namespace opensaml {
         HTTPRequest() {}
     public:
         virtual ~HTTPRequest() {}
-        
+
+        bool isSecure() const {
+            return strcmp(getScheme(),"https")==0;
+        }
+          
         /**
          * Returns the HTTP method of the request (GET, POST, etc.)
          * 
@@ -51,12 +55,19 @@ namespace opensaml {
         virtual const char* getMethod() const=0;
         
         /**
-         * Returns the complete request URL, including scheme, host, port.
+         * Returns the request URI.
+         * 
+         * @return the request URI
+         */
+        virtual const char* getRequestURI() const=0;
+        
+        /**
+         * Returns the complete request URL, including scheme, host, port, and URI.
          * 
          * @return the request URL
          */
         virtual const char* getRequestURL() const=0;
-        
+
         /**
          * Returns the HTTP query string appened to the request. The query
          * string is returned without any decoding applied, everything found