mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 00:53:21 +00:00 
			
		
		
		
	GUACAMOLE-422: Add timezone to tunnel connections.
This commit is contained in:
		
				
					committed by
					
						 Virtually Nick
						Virtually Nick
					
				
			
			
				
	
			
			
			
						parent
						
							8ad65d6e6c
						
					
				
				
					commit
					047ed7ac9c
				
			| @@ -58,6 +58,11 @@ public class GuacamoleClientInformation { | ||||
|      * The list of image mimetypes reported by the client to be supported. | ||||
|      */ | ||||
|     private final List<String> imageMimetypes = new ArrayList<String>(); | ||||
|      | ||||
|     /** | ||||
|      * The timezone report by the client. | ||||
|      */ | ||||
|     private String timezone = ""; | ||||
|  | ||||
|     /** | ||||
|      * Returns the optimal screen width requested by the client, in pixels. | ||||
| @@ -144,5 +149,25 @@ public class GuacamoleClientInformation { | ||||
|     public List<String> getImageMimetypes() { | ||||
|         return imageMimetypes; | ||||
|     } | ||||
|      | ||||
|     /** | ||||
|      * Return the timezone as reported by the client. | ||||
|      *  | ||||
|      * @returns | ||||
|      *     A string value of the timezone reported by the client. | ||||
|      */ | ||||
|     public String getTimezone() { | ||||
|         return timezone; | ||||
|     } | ||||
|      | ||||
|     /** | ||||
|      * Set the string value of the timezone. | ||||
|      *  | ||||
|      * @param timezone | ||||
|      *     The string value of the timezone reported by the client. | ||||
|      */ | ||||
|     public void setTimezone(String timezone) { | ||||
|         this.timezone = timezone; | ||||
|     } | ||||
|  | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user