mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:52:45 +00:00 
			
		
		
		
	 6e19ab2bbc
			
		
	
	
		6e19ab2bbc
		
	
	
	
	
		
			
			We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			893 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			893 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Max Wipfli <mail@maxwipfli.ch>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/DeprecatedString.h>
 | |
| #include <AK/Optional.h>
 | |
| #include <LibHTTP/HttpRequest.h>
 | |
| 
 | |
| namespace WebServer {
 | |
| 
 | |
| class Configuration {
 | |
| public:
 | |
|     Configuration(DeprecatedString root_path);
 | |
| 
 | |
|     DeprecatedString const& root_path() const { return m_root_path; }
 | |
|     Optional<HTTP::HttpRequest::BasicAuthenticationCredentials> const& credentials() const { return m_credentials; }
 | |
| 
 | |
|     void set_root_path(DeprecatedString root_path) { m_root_path = move(root_path); }
 | |
|     void set_credentials(Optional<HTTP::HttpRequest::BasicAuthenticationCredentials> credentials) { m_credentials = move(credentials); }
 | |
| 
 | |
|     static Configuration const& the();
 | |
| 
 | |
| private:
 | |
|     DeprecatedString m_root_path;
 | |
|     Optional<HTTP::HttpRequest::BasicAuthenticationCredentials> m_credentials;
 | |
| };
 | |
| 
 | |
| }
 |