GUACAMOLE-1: Refactor old net.sourceforge package to org.apache.

This commit is contained in:
Michael Jumper
2016-03-22 14:27:16 -07:00
parent 1f7d9bb052
commit 4198c33df6
15 changed files with 15 additions and 15 deletions

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
package net.sourceforge.guacamole.net.auth.mysql;
package org.apache.guacamole.auth.mysql;
import com.google.inject.Guice;
import com.google.inject.Injector;

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
package net.sourceforge.guacamole.net.auth.mysql;
package org.apache.guacamole.auth.mysql;
import com.google.inject.Binder;
import com.google.inject.Module;

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
package net.sourceforge.guacamole.net.auth.mysql;
package org.apache.guacamole.auth.mysql;
import org.apache.guacamole.GuacamoleException;
import org.apache.guacamole.auth.jdbc.JDBCEnvironment;

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
package net.sourceforge.guacamole.net.auth.mysql;
package org.apache.guacamole.auth.mysql;
import org.apache.guacamole.properties.BooleanGuacamoleProperty;
import org.apache.guacamole.properties.IntegerGuacamoleProperty;

View File

@@ -24,4 +24,4 @@
* The MySQL authentication provider. This package exists outside of
* org.apache for backwards-compatibility.
*/
package net.sourceforge.guacamole.net.auth.mysql;
package org.apache.guacamole.auth.mysql;

View File

@@ -6,7 +6,7 @@
"namespace" : "guac-mysql",
"authProviders" : [
"net.sourceforge.guacamole.net.auth.mysql.MySQLAuthenticationProvider"
"org.apache.guacamole.auth.mysql.MySQLAuthenticationProvider"
],
"translations" : [

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
package net.sourceforge.guacamole.net.auth.ldap;
package org.apache.guacamole.auth.ldap;
import org.apache.guacamole.auth.ldap.AuthenticationProviderService;

View File

@@ -32,7 +32,7 @@ import java.util.Collections;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Map;
import net.sourceforge.guacamole.net.auth.ldap.LDAPAuthenticationProvider;
import org.apache.guacamole.auth.ldap.LDAPAuthenticationProvider;
import org.apache.guacamole.auth.ldap.ConfigurationService;
import org.apache.guacamole.auth.ldap.EscapingService;
import org.apache.guacamole.GuacamoleException;

View File

@@ -26,7 +26,7 @@ import com.google.inject.Inject;
import com.novell.ldap.LDAPConnection;
import java.util.Collection;
import java.util.Collections;
import net.sourceforge.guacamole.net.auth.ldap.LDAPAuthenticationProvider;
import org.apache.guacamole.auth.ldap.LDAPAuthenticationProvider;
import org.apache.guacamole.auth.ldap.connection.ConnectionService;
import org.apache.guacamole.GuacamoleException;
import org.apache.guacamole.form.Form;

View File

@@ -6,7 +6,7 @@
"namespace" : "guac-ldap",
"authProviders" : [
"net.sourceforge.guacamole.net.auth.ldap.LDAPAuthenticationProvider"
"org.apache.guacamole.auth.ldap.LDAPAuthenticationProvider"
],
"translations" : [

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
package net.sourceforge.guacamole.net.auth.noauth;
package org.apache.guacamole.auth.noauth;
import java.util.Collections;
import java.util.HashMap;

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
package net.sourceforge.guacamole.net.auth.noauth;
package org.apache.guacamole.auth.noauth;
import java.util.Map;
import java.io.BufferedReader;

View File

@@ -6,7 +6,7 @@
"namespace" : "guac-noauth",
"authProviders" : [
"net.sourceforge.guacamole.net.auth.noauth.NoAuthenticationProvider"
"org.apache.guacamole.auth.noauth.NoAuthenticationProvider"
],
"translations" : [

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
package net.sourceforge.guacamole.net.basic;
package org.apache.guacamole.net.basic;
import java.io.BufferedInputStream;
import java.io.File;

View File

@@ -32,7 +32,7 @@ import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import net.sourceforge.guacamole.net.basic.BasicFileAuthenticationProvider;
import org.apache.guacamole.net.basic.BasicFileAuthenticationProvider;
import org.apache.guacamole.GuacamoleException;
import org.apache.guacamole.GuacamoleServerException;
import org.apache.guacamole.environment.Environment;