blob: a0ebd5718ae381f4b1b67c12370c70dd61533da3 [file] [log] [blame]
package de.ids_mannheim.korap.authentication.http;
import de.ids_mannheim.korap.constant.AuthenticationScheme;
import lombok.Getter;
import lombok.Setter;
/**
* Describes the values stored in Authorization header of HTTP
* requests.
*
* @author margaretha
*
*/
@Getter
@Setter
public class AuthorizationData {
private String token;
private AuthenticationScheme authenticationScheme;
private String username;
private String password;
}