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

io.imunity.console.views.authentication.facilities.AuthenticationFlowDefinitionForBinder Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 2021 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */

package io.imunity.console.views.authentication.facilities;

import java.util.List;
import java.util.Set;

import pl.edu.icm.unity.base.authn.AuthenticationFlowDefinition.Policy;

class AuthenticationFlowDefinitionForBinder
{
	private String name;
	private Set firstFactorAuthenticators;
	private List secondFactorAuthenticators;
	private Policy policy;
	private String policyConfiguration;
	
	AuthenticationFlowDefinitionForBinder(String name,Policy policy, Set firstFactorAuthenticators,
			List secondFactorAuthenticators, String policyConfiguration)
	{
		this.name = name;
		this.firstFactorAuthenticators = firstFactorAuthenticators;
		this.secondFactorAuthenticators = secondFactorAuthenticators;
		this.policy = policy;
		this.policyConfiguration = policyConfiguration;
	}

	public String getName()
	{
		return name;
	}

	public void setName(String name)
	{
		this.name = name;
	}

	public Set getFirstFactorAuthenticators()
	{
		return firstFactorAuthenticators;
	}

	public void setFirstFactorAuthenticators(Set firstFactorAuthenticators)
	{
		this.firstFactorAuthenticators = firstFactorAuthenticators;
	}

	public List getSecondFactorAuthenticators()
	{
		return secondFactorAuthenticators;
	}

	public void setSecondFactorAuthenticators(List secondFactorAuthenticators)
	{
		this.secondFactorAuthenticators = secondFactorAuthenticators;
	}

	public Policy getPolicy()
	{
		return policy;
	}

	public void setPolicy(Policy policy)
	{
		this.policy = policy;
	}

	public String getPolicyConfiguration()
	{
		return policyConfiguration;
	}

	public void setPolicyConfiguration(String policyConfiguration)
	{
		this.policyConfiguration = policyConfiguration;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy