| package de.ids_mannheim.korap.constant; | |
| /** | |
| * Lists possible actual authentication methods. Multiple | |
| * {@link AuthenticationScheme} may use an identical | |
| * authentication method. | |
| * | |
| * @author margaretha | |
| * | |
| * @see AuthenticationScheme | |
| * | |
| */ | |
| public enum AuthenticationMethod { | |
| LDAP, | |
| // not available | |
| SHIBBOLETH, DATABASE, | |
| // by pass authentication for testing | |
| TEST; | |
| } |