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

pl.edu.icm.unity.saml.idp.console.GroupMapping Maven / Gradle / Ivy

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

package pl.edu.icm.unity.saml.idp.console;

import pl.edu.icm.unity.webui.common.groups.GroupWithIndentIndicator;

/**
 * Contains SAML group mapping information
 * 
 * @author P.Piernik
 *
 */
public class GroupMapping
{
	private String clientId;
	private GroupWithIndentIndicator group;

	public GroupMapping()
	{
	}

	public GroupWithIndentIndicator getGroup()
	{
		return group;
	}

	public void setGroup(GroupWithIndentIndicator group)
	{
		this.group = group;
	}

	public String getClientId()
	{
		return clientId;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy