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

io.imunity.scim.config.UndefinedMapping Maven / Gradle / Ivy

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

package io.imunity.scim.config;

import java.util.Optional;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import io.imunity.scim.console.AttributeMappingBean;

@JsonIgnoreProperties(ignoreUnknown = true)
public class UndefinedMapping implements AttributeMapping
{
	public static final String id = "Undefined";

	@Override
	public Optional getDataArray()
	{
		return Optional.empty();
	}

	@Override
	public String getEvaluatorId()
	{
		return id;
	}

	@Override
	public AttributeMappingBean toBean()
	{
		AttributeMappingBean bean = new AttributeMappingBean();
		return bean;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy