Converted to generic credentials.
[guacamole.git] / src / main / java / net / sourceforge / guacamole / net / auth / AuthenticationProvider.java
1
2 package net.sourceforge.guacamole.net.auth;
3
4 import net.sourceforge.guacamole.GuacamoleException;
5
6 public interface AuthenticationProvider<CredentialType> {
7
8     public UserConfiguration getUserConfiguration(CredentialType credentials) throws GuacamoleException;
9
10 }