mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 17:13:21 +00:00 
			
		
		
		
	Ticket #399: Allow modifying SimpleConnectionDirectory.
This commit is contained in:
		| @@ -95,18 +95,30 @@ public class SimpleConnectionDirectory | ||||
|     @Override | ||||
|     public void add(Connection connection) | ||||
|             throws GuacamoleException { | ||||
|         throw new GuacamoleSecurityException("Permission denied."); | ||||
|          | ||||
|         if(connections.containsKey(connection.getIdentifier())) | ||||
|             throw new GuacamoleException("Connection identifier already present."); | ||||
|          | ||||
|         connections.put(connection.getIdentifier(), connection); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public void update(Connection connection) | ||||
|             throws GuacamoleException { | ||||
|         throw new GuacamoleSecurityException("Permission denied."); | ||||
|          | ||||
|         if(!connections.containsKey(connection.getIdentifier())) | ||||
|             throw new GuacamoleException("Connection not found."); | ||||
|          | ||||
|         connections.put(connection.getIdentifier(), connection); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public void remove(String identifier) throws GuacamoleException { | ||||
|         throw new GuacamoleSecurityException("Permission denied."); | ||||
|          | ||||
|         if(!connections.containsKey(identifier)) | ||||
|             throw new GuacamoleException("Connection not found."); | ||||
|          | ||||
|         connections.remove(identifier); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|   | ||||
		Reference in New Issue
	
	Block a user