blob: 193a11d0605bfe6d19aa42d48fa95f49aaa83f7b [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.contactbasedata.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class JwtToken {
@JsonProperty("access_token")
private String accessToken;
public String getAccessToken() { return accessToken; }
public void setAccessToken(String accessToken) { this.accessToken = accessToken; }
}