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

de.alpharogroup.db.strategies.DefaultMergeStrategy Maven / Gradle / Ivy

There is a newer version: 6.6
Show newest version
/**
 * Copyright (C) 2015 Asterios Raptis
 *
 * 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 de.alpharogroup.db.strategies;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import javax.persistence.EntityManager;

import de.alpharogroup.db.entity.BaseEntity;
import de.alpharogroup.db.repository.AbstractRepository;
import de.alpharogroup.db.strategies.api.MergeStrategy;
import de.alpharogroup.lang.TypeArgumentsExtensions;
import lombok.Getter;
import lombok.NonNull;

/**
 * The class {@link DefaultMergeStrategy} is a default implementation of the {@link MergeStrategy}.
 *
 * @param 
 *            the type of the entity object
 * @param 
 *            the type of the primary key from the entity object
 */
public class DefaultMergeStrategy, PK extends Serializable>
	implements
		MergeStrategy
{


	/** The Constant serialVersionUID. */
	private static final long serialVersionUID = 1L;

	/** The repository. */
	@NonNull
	private final AbstractRepository repository;

	/** The class type of the entity. */
	@Getter
	@SuppressWarnings("unchecked")
	private final Class type = (Class)TypeArgumentsExtensions
		.getFirstTypeArgument(DefaultMergeStrategy.class, this.getClass());

	/**
	 * Instantiates a new {@link DefaultMergeStrategy}.
	 *
	 * @param repository
	 *            the repository
	 */
	public DefaultMergeStrategy(AbstractRepository repository)
	{
		this.repository = repository;
	}

	/**
	 * Gets the entity manager.
	 *
	 * @return the entity manager
	 */
	private EntityManager getEntityManager()
	{
		return this.repository.getEntityManager();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public List merge(List objects)
	{
		final List mergedEntities = new ArrayList<>();
		for (final T object : objects)
		{
			mergedEntities.add(merge(object));
		}
		return mergedEntities;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public T merge(T entity)
	{
		return getEntityManager().merge(entity);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy