mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GuacamoleConfiguration should be serializable (ticket #111).
This commit is contained in:
@@ -37,6 +37,7 @@ package net.sourceforge.guacamole.protocol;
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
|
||||
/**
|
||||
@@ -45,7 +46,9 @@ import java.util.HashMap;
|
||||
*
|
||||
* @author Michael Jumper
|
||||
*/
|
||||
public class GuacamoleConfiguration {
|
||||
public class GuacamoleConfiguration implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String protocol;
|
||||
private HashMap<String, String> parameters = new HashMap<String, String>();
|
||||
|
Reference in New Issue
Block a user