This commit is contained in:
Michael Jumper
2011-05-12 23:47:01 -07:00
parent 3b7e71a402
commit 78a957b978
2 changed files with 3 additions and 3 deletions

View File

@@ -25,11 +25,11 @@ import net.sourceforge.guacamole.protocol.GuacamoleInstruction.Operation;
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
public class ConfiguredSocket implements GuacamoleSocket {
public class ConfiguredGuacamoleSocket implements GuacamoleSocket {
private GuacamoleSocket socket;
public ConfiguredSocket(GuacamoleSocket socket, Configuration config) throws GuacamoleException {
public ConfiguredGuacamoleSocket(GuacamoleSocket socket, GuacamoleConfiguration config) throws GuacamoleException {
this.socket = socket;

View File

@@ -21,7 +21,7 @@ import java.util.HashMap;
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
public class Configuration {
public class GuacamoleConfiguration {
private String protocol;
private HashMap<String, String> parameters = new HashMap<String, String>();