Added UserConfiguration, refactored auth into own package.
[guacamole.git] / src / main / java / net / sourceforge / guacamole / net / basic / properties / AuthenticationProviderProperty.java
1 package net.sourceforge.guacamole.net.basic.properties;
2
3 /*
4  *  Guacamole - Clientless Remote Desktop
5  *  Copyright (C) 2010  Michael Jumper
6  *
7  *  This program is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU Affero General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Affero General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Affero General Public License
18  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 import java.lang.reflect.InvocationTargetException;
22 import net.sourceforge.guacamole.GuacamoleException;
23 import net.sourceforge.guacamole.net.auth.AuthenticationProvider;
24 import net.sourceforge.guacamole.properties.GuacamoleProperty;
25
26 public abstract class AuthenticationProviderProperty implements GuacamoleProperty<AuthenticationProvider> {
27
28     @Override
29     public AuthenticationProvider parseValue(String authProviderClassName) throws GuacamoleException {
30
31         // Get auth provider instance
32         try {
33
34             Object obj = Class.forName(authProviderClassName).getConstructor().newInstance();
35             if (!(obj instanceof AuthenticationProvider))
36                 throw new GuacamoleException("Specified authentication provider class is not a AuthenticationProvider.");
37
38             return (AuthenticationProvider) obj;
39
40         }
41         catch (ClassNotFoundException e) {
42             throw new GuacamoleException("Authentication provider class not found", e);
43         }
44         catch (NoSuchMethodException e) {
45             throw new GuacamoleException("Default constructor for authentication provider not present", e);
46         }
47         catch (SecurityException e) {
48             throw new GuacamoleException("Creation of authentication provider disallowed; check your security settings", e);
49         }
50         catch (InstantiationException e) {
51             throw new GuacamoleException("Unable to instantiate authentication provider", e);
52         }
53         catch (IllegalAccessException e) {
54             throw new GuacamoleException("Unable to access default constructor of authentication provider", e);
55         }
56         catch (InvocationTargetException e) {
57             throw new GuacamoleException("Internal error in constructor of authentication provider", e.getTargetException());
58         }
59
60     }
61
62 }
63