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

software.xdev.mockserver.serialization.model.KeysToMultiValuesModifierDTO Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
/*
 * Copyright © 2024 XDEV Software (https://xdev.software)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package software.xdev.mockserver.serialization.model;

import java.util.List;
import java.util.Objects;

import software.xdev.mockserver.model.KeyToMultiValue;
import software.xdev.mockserver.model.KeysToMultiValues;
import software.xdev.mockserver.model.KeysToMultiValuesModifier;


@SuppressWarnings("unchecked")
public abstract class KeysToMultiValuesModifierDTO<
	T extends KeysToMultiValues,
	K extends KeysToMultiValuesModifier,
	I extends KeyToMultiValue,
	D extends DTO>
	implements DTO
{
	private T add;
	private T replace;
	private List remove;
	
	protected KeysToMultiValuesModifierDTO()
	{
	}
	
	protected KeysToMultiValuesModifierDTO(final K keysToMultiValuesModifier)
	{
		if(keysToMultiValuesModifier != null)
		{
			this.add = keysToMultiValuesModifier.getAdd();
			this.replace = keysToMultiValuesModifier.getReplace();
			this.remove = keysToMultiValuesModifier.getRemove();
		}
	}
	
	@Override
	public K buildObject()
	{
		return this.newKeysToMultiValuesModifier()
			.withAdd(this.add)
			.withReplace(this.replace)
			.withRemove(this.remove);
	}
	
	abstract K newKeysToMultiValuesModifier();
	
	public T getAdd()
	{
		return this.add;
	}
	
	public D setAdd(final T add)
	{
		this.add = add;
		return (D)this;
	}
	
	public T getReplace()
	{
		return this.replace;
	}
	
	public D setReplace(final T replace)
	{
		this.replace = replace;
		return (D)this;
	}
	
	public List getRemove()
	{
		return this.remove;
	}
	
	public D setRemove(final List remove)
	{
		this.remove = remove;
		return (D)this;
	}
	
	@Override
	public boolean equals(final Object o)
	{
		if(this == o)
		{
			return true;
		}
		if(!(o instanceof final KeysToMultiValuesModifierDTO that))
		{
			return false;
		}
		return Objects.equals(this.getAdd(), that.getAdd())
			&& Objects.equals(this.getReplace(), that.getReplace())
			&& Objects.equals(this.getRemove(), that.getRemove());
	}
	
	@Override
	public int hashCode()
	{
		return Objects.hash(this.getAdd(), this.getReplace(), this.getRemove());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy