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

io.imunity.console.views.identity_provider.endpoints.IdpServiceAdditionalActionsRegistry Maven / Gradle / Ivy

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

package io.imunity.console.views.identity_provider.endpoints;

import java.util.List;

import org.springframework.stereotype.Component;

import io.imunity.console.spi.IdpServiceAdditionalAction;
import pl.edu.icm.unity.engine.api.utils.TypesRegistryBase;

/**
 * Provides additional actions for idp services view
 * 
 * @author P.Piernik
 *
 */
@Component
public class IdpServiceAdditionalActionsRegistry extends TypesRegistryBase
{
	public IdpServiceAdditionalActionsRegistry(List typeElements)
	{
		super(typeElements);
	}

	@Override
	protected String getId(IdpServiceAdditionalAction from)
	{
		return from.getName();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy