Ticket #269: Remove unused ConfigurationTranslationService.

This commit is contained in:
Michael Jumper
2013-02-27 22:43:24 -08:00
parent c0d69860cb
commit 695b05c14d
2 changed files with 0 additions and 112 deletions

View File

@@ -55,7 +55,6 @@ import net.sourceforge.guacamole.net.auth.mysql.dao.SystemPermissionMapper;
import net.sourceforge.guacamole.net.auth.mysql.dao.UserMapper;
import net.sourceforge.guacamole.net.auth.mysql.dao.UserPermissionMapper;
import net.sourceforge.guacamole.net.auth.mysql.properties.MySQLGuacamoleProperties;
import net.sourceforge.guacamole.net.auth.mysql.service.ConfigurationTranslationService;
import net.sourceforge.guacamole.net.auth.mysql.service.PasswordEncryptionService;
import net.sourceforge.guacamole.net.auth.mysql.service.PermissionCheckService;
import net.sourceforge.guacamole.net.auth.mysql.service.ProviderService;
@@ -167,7 +166,6 @@ public class MySQLAuthenticationProvider implements AuthenticationProvider {
bind(PermissionCheckService.class);
bind(ProviderService.class);
bind(UserService.class);
bind(ConfigurationTranslationService.class);
bind(ActiveConnectionSet.class).toInstance(activeConnectionSet);
}

View File

@@ -1,110 +0,0 @@
package net.sourceforge.guacamole.net.auth.mysql.service;
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is guacamole-auth-mysql.
*
* The Initial Developer of the Original Code is
* James Muehlner.
* Portions created by the Initial Developer are Copyright (C) 2010
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
import java.util.ArrayList;
import java.util.List;
import net.sourceforge.guacamole.net.auth.mysql.model.ConnectionParameter;
import net.sourceforge.guacamole.protocol.GuacamoleConfiguration;
/**
* Provides functions for translating between GuacamoleConfiguration objects
* and a collection of ConnectionParameter database records.
* @author James Muehlner
*/
public class ConfigurationTranslationService {
/**
* Get a GuacamoleConfiguration based on the provided protocol and
* parameters.
*
* @param protocol The protocol used (VNC, RDP, etc)
* @param parameters The parameter database records to translate
* @return A new GuacamoleConfiguration based on the given protocol and
* parameters.
*/
public GuacamoleConfiguration getConfiguration(String protocol,
Iterable<ConnectionParameter> parameters) {
// Create new configuration, set protocol
GuacamoleConfiguration configuration = new GuacamoleConfiguration();
configuration.setProtocol(protocol);
// Copy parameters from given parameters
for(ConnectionParameter parameter : parameters)
configuration.setParameter(parameter.getParameter_name(), parameter.getParameter_value());
return configuration;
}
/**
* Creates a list of ConnectionParameter database records based on the
* provided connectionID and GuacamoleConfiguration.
*
* @param connectionID The ID of the connection that these parameters are
* for.
* @param configuration The configuration to pull the parameter values from.
* @return A list of ConnectionParameter database records.
*/
public List<ConnectionParameter> getConnectionParameters(int connectionID,
GuacamoleConfiguration configuration) {
List<ConnectionParameter> connectionParameters =
new ArrayList<ConnectionParameter>();
// Each connection parameter in the given configuration, create
// a corresponding database record
for (String parameterName : configuration.getParameterNames()) {
// Get value of parameter
String parameterValue = configuration.getParameter(parameterName);
// Create corresponding ConnectionParameter
ConnectionParameter connectionParameter = new ConnectionParameter();
connectionParameter.setConnection_id(connectionID);
connectionParameter.setParameter_name(parameterName);
connectionParameter.setParameter_value(parameterValue);
// Add parameter to list
connectionParameters.add(connectionParameter);
}
return connectionParameters;
}
}