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

com.github.fonimus.ssh.shell.auth.SshAuthentication Maven / Gradle / Ivy

The newest version!
package com.github.fonimus.ssh.shell.auth;

import java.util.List;

/**
 * Ssh authentication
 */
public class SshAuthentication {

	private Object principal;

	private Object details;

	private Object credentials;

	private List authorities;

	public SshAuthentication(Object principal, Object details, Object credentials, List authorities) {
		this.principal = principal;
		this.details = details;
		this.credentials = credentials;
		this.authorities = authorities;
	}

	public Object getPrincipal() {
		return principal;
	}

	public Object getDetails() {
		return details;
	}

	public Object getCredentials() {
		return credentials;
	}

	public List getAuthorities() {
		return authorities;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy