GUACAMOLE-210: Move classes to reasonable packages.

This commit is contained in:
Michael Jumper
2016-01-02 00:43:18 -08:00
parent 77e714b0e1
commit 1c6a603a08
5 changed files with 6 additions and 3 deletions

View File

@@ -24,6 +24,8 @@ import com.google.inject.Provider;
import java.util.Arrays;
import javax.servlet.http.HttpServletRequest;
import org.apache.guacamole.auth.oauth.user.AuthenticatedUser;
import org.apache.guacamole.auth.oauth.conf.ConfigurationService;
import org.apache.guacamole.auth.oauth.form.OAuthCodeField;
import org.glyptodon.guacamole.GuacamoleException;
import org.glyptodon.guacamole.form.Field;
import org.glyptodon.guacamole.net.auth.Credentials;

View File

@@ -20,6 +20,7 @@
package org.apache.guacamole.auth.oauth;
import com.google.inject.AbstractModule;
import org.apache.guacamole.auth.oauth.conf.ConfigurationService;
import org.glyptodon.guacamole.GuacamoleException;
import org.glyptodon.guacamole.environment.Environment;
import org.glyptodon.guacamole.environment.LocalEnvironment;

View File

@@ -17,7 +17,7 @@
* under the License.
*/
package org.apache.guacamole.auth.oauth;
package org.apache.guacamole.auth.oauth.conf;
import com.google.inject.Inject;
import org.glyptodon.guacamole.GuacamoleException;

View File

@@ -17,7 +17,7 @@
* under the License.
*/
package org.apache.guacamole.auth.oauth;
package org.apache.guacamole.auth.oauth.conf;
import org.glyptodon.guacamole.properties.StringGuacamoleProperty;

View File

@@ -17,7 +17,7 @@
* under the License.
*/
package org.apache.guacamole.auth.oauth;
package org.apache.guacamole.auth.oauth.form;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;