Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
GUACAMOLE-1: Refactor old net.sourceforge package to org.apache.
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-jumper committed Mar 29, 2016
1 parent 1f7d9bb commit 4198c33
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;
Expand Up @@ -6,7 +6,7 @@
"namespace" : "guac-mysql",

"authProviders" : [
"net.sourceforge.guacamole.net.auth.mysql.MySQLAuthenticationProvider"
"org.apache.guacamole.auth.mysql.MySQLAuthenticationProvider"
],

"translations" : [
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -32,7 +32,7 @@
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;
Expand Down
Expand Up @@ -26,7 +26,7 @@
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;
Expand Down
Expand Up @@ -6,7 +6,7 @@
"namespace" : "guac-ldap",

"authProviders" : [
"net.sourceforge.guacamole.net.auth.ldap.LDAPAuthenticationProvider"
"org.apache.guacamole.auth.ldap.LDAPAuthenticationProvider"
],

"translations" : [
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -6,7 +6,7 @@
"namespace" : "guac-noauth",

"authProviders" : [
"net.sourceforge.guacamole.net.auth.noauth.NoAuthenticationProvider"
"org.apache.guacamole.auth.noauth.NoAuthenticationProvider"
],

"translations" : [
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -32,7 +32,7 @@
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;
Expand Down

0 comments on commit 4198c33

Please sign in to comment.