All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.richodemus.dropwizard.jwt.model.Role Maven / Gradle / Ivy

The newest version!
package com.richodemus.dropwizard.jwt.model;

public class Role
{
	private final String role;

	public Role(String role)
	{
		this.role = role;
	}

	public String stringValue()
	{
		return role;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy