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

io.imunity.scim.schema.SchemaId Maven / Gradle / Ivy

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

package io.imunity.scim.schema;

import java.util.Objects;

class SchemaId
{
	final String id;

	SchemaId(String id)
	{
		this.id = id;
	}

	@Override
	public boolean equals(Object o)
	{
		if (this == o)
			return true;
		if (o == null || getClass() != o.getClass())
			return false;
		SchemaId that = (SchemaId) o;
		return Objects.equals(id, that.id);
	}

	@Override
	public int hashCode()
	{
		return Objects.hash(id);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy