blob: 8f8d6fd45952869eb9231efc7b95a065ff7dfaf9 [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2017-2018 PTA GmbH.
* 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
*
******************************************************************************
*/
package org.eclipse.openk.elogbook.auth2.model;
import java.util.List;
public class JwtAccount {
private List<String> roles;
public List<String> getRoles() {
return roles;
}
public void setRoles(List<String> roles) { this.roles = roles; }
}