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

com.almende.eve.agent.annotation.User Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package com.almende.eve.agent.annotation;

import java.io.Serializable;

public class User implements Serializable {
	private static final long serialVersionUID = 1L;
	
	public String authToken;
	public String[] roles;

	public User(String authToken, String[] roles) {
		this.authToken = authToken;
		this.roles = roles;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy