blob: e69128d42eb317193b3b0ec7979b574afd37d28f [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.core.security;
/**
*
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
public class AuthenticationToken implements Authentication<String> {
private String token;
public AuthenticationToken(String token) {
this.token = token;
}
@Override
public String getAuthenticationMaterial() {
return this.token;
}
}