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

io.imunity.idp.TechnicalInformationProperty Maven / Gradle / Ivy

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

package io.imunity.idp;

public class TechnicalInformationProperty
{
	public final String titleKey;
	public final String value;

	private TechnicalInformationProperty(Builder builder)
	{
		this.titleKey = builder.titleKey;
		this.value = builder.value;
	}

	public static Builder builder()
	{
		return new Builder();
	}

	public static final class Builder
	{
		private String titleKey;
		private String value;

		private Builder()
		{
		}

		public Builder withTitleKey(String titleKey)
		{
			this.titleKey = titleKey;
			return this;
		}

		public Builder withValue(String value)
		{
			this.value = value;
			return this;
		}

		public TechnicalInformationProperty build()
		{
			return new TechnicalInformationProperty(this);
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy