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

io.imunity.rest.mappers.registration.GroupSelectionMapper Maven / Gradle / Ivy

/*
 * Copyright (c) 2021 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */

package io.imunity.rest.mappers.registration;

import io.imunity.rest.api.types.registration.RestGroupSelection;
import pl.edu.icm.unity.base.registration.GroupSelection;

public class GroupSelectionMapper
{
	public static RestGroupSelection map(GroupSelection groupSelection)
	{
		return RestGroupSelection.builder()
				.withExternalIdp(groupSelection.getExternalIdp())
				.withTranslationProfile(groupSelection.getTranslationProfile())
				.withSelectedGroups(groupSelection.getSelectedGroups())
				.build();
	}

	public static GroupSelection map(RestGroupSelection restGroupSelection)
	{
		return new GroupSelection(restGroupSelection.selectedGroups, restGroupSelection.externalIdp,
				restGroupSelection.translationProfile);

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy