Skip to content

Instantly share code, notes, and snippets.

@radutoev
Created March 14, 2018 20:05
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 radutoev/b76a6d7ce21d25b97a0ff08fc9132f7a to your computer and use it in GitHub Desktop.
Save radutoev/b76a6d7ce21d25b97a0ff08fc9132f7a to your computer and use it in GitHub Desktop.
public class TokenString {
private final String value;
public TokenString(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment