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

io.imunity.vaadin.auth.services.idp.ActiveValueConfig Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2019 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */

package io.imunity.vaadin.auth.services.idp;

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

/**
 * Represent single active value configuration in idp service
 * 
 * @author P.Piernik
 *
 */
public class ActiveValueConfig
{
	private String clientId;
	private List singleSelectableAttributes = new ArrayList<>();
	private List multiSelectableAttributes =  new ArrayList<>();

	public ActiveValueConfig()
	{

	}

	public String getClientId()
	{
		return clientId;
	}

	public void setClientId(String clientId)
	{
		this.clientId = clientId;
	}

	public List getSingleSelectableAttributes()
	{
		return singleSelectableAttributes;
	}

	public void setSingleSelectableAttributes(List singleSelectableAttributes)
	{
		this.singleSelectableAttributes = singleSelectableAttributes;
	}

	public List getMultiSelectableAttributes()
	{
		return multiSelectableAttributes;
	}

	public void setMultiSelectableAttributes(List multiSelectableAttributes)
	{
		this.multiSelectableAttributes = multiSelectableAttributes;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy