Skip to content

Instantly share code, notes, and snippets.

@Odilio
Created July 30, 2019 19:12
Show Gist options
  • Select an option

  • Save Odilio/eb6a259b071bf05cfee868b801186a2c to your computer and use it in GitHub Desktop.

Select an option

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