2014-07-07 11:30:28 +02:00
|
|
|
/*
|
|
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
|
|
*/
|
2014-07-17 15:53:50 +02:00
|
|
|
package org.elasticsearch.shield.authc;
|
2014-07-07 11:30:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2014-07-17 15:53:50 +02:00
|
|
|
public interface AuthenticationToken {
|
2014-07-07 11:30:28 +02:00
|
|
|
|
2014-07-17 15:53:50 +02:00
|
|
|
String principal();
|
2014-07-07 11:30:28 +02:00
|
|
|
|
2014-07-17 15:53:50 +02:00
|
|
|
Object credentials();
|
2014-09-09 07:53:22 -06:00
|
|
|
|
|
|
|
void clearCredentials();
|
2014-07-07 11:30:28 +02:00
|
|
|
}
|