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

fm.pattern.tokamak.sdk.model.AuthoritiesRepresentation Maven / Gradle / Ivy

The newest version!
package fm.pattern.tokamak.sdk.model;

import java.util.ArrayList;
import java.util.List;

public class AuthoritiesRepresentation {

	private List authorities = new ArrayList();

	public AuthoritiesRepresentation() {

	}

	public AuthoritiesRepresentation(List authorities) {
		this.authorities = authorities;
	}

	public List getAuthorities() {
		return authorities;
	}

	public void setAuthorities(List authorities) {
		this.authorities = authorities;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy