Skip to content

Instantly share code, notes, and snippets.

@Odilio
Created July 30, 2019 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Odilio/eb6a259b071bf05cfee868b801186a2c to your computer and use it in GitHub Desktop.
Save Odilio/eb6a259b071bf05cfee868b801186a2c to your computer and use it in GitHub Desktop.
package com.crm.model;
import java.io.Serializable;
public class JwtResponse implements Serializable {
private static final long serialVersionUID = -8091879091924046844L;
private final String jwttoken;
public JwtResponse(String jwttoken) {
this.jwttoken = jwttoken;
}
public String getToken() {
return this.jwttoken;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment