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

org.jdal.logic.PersistentManager Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2002-2010 the original author or authors.
 *
 * 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 org.jdal.logic;

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

import org.jdal.dao.Dao;
import org.jdal.dao.Page;
import org.jdal.service.PersistentService;

/**
 * Base class for Services that wrappers persistent operations to DAO.
 * 
 * @author Jose Luis Martin
 */
@SuppressWarnings("deprecation")
public class PersistentManager implements PersistentService {

	public static final int DEFAULT_DEPTH = 2;
	protected Dao dao;

	/**
	 * {@inheritDoc}
	 */
	public void delete(T entity) {
		dao.delete(entity);
	}

	/**
	 * {@inheritDoc}
	 */
	public T initialize(T entity, int depth) {
		dao.initialize(entity, depth);
		return entity;
	}

	/**
	 * {@inheritDoc}
	 */
	public T initialize(T entity) {
		dao.initialize(entity);
		return entity;
	}

	/**
	 * {@inheritDoc}
	 */
	public List getAll() {
		return dao.getAll();
	}

	/**
	 * {@inheritDoc}
	 */
	public T save(T entity) {
		return dao.save(entity);
	}

	/**
	 * {@inheritDoc}
	 */
	public void delete(Collection collection) {
		for (T t : collection) {
			dao.delete(t);
		}
	}

	/**
	 * {@inheritDoc}
	 */
	public Collection save(Collection collection) {
		List saved = new ArrayList();

		for (T t : collection) {
			saved.add(dao.save(t));
		}

		return saved;
	}

	/**
	 * {@inheritDoc}
	 */
	public void deleteById(PK id) {
		dao.deleteById(id);

	}

	/**
	 * {@inheritDoc}
	 */
	public void deleteById(Collection ids) {
		for (PK id : ids)
			dao.deleteById(id);

	}

	/**
	 * {@inheritDoc}
	 */
	public List getKeys(Page page) {
		return dao.getKeys(page);
	}

	/**
	 * {@inheritDoc}
	 */
	public  Page getPage(Page page) {
		return dao.getPage(page);
	}

	public Dao getDao() {
		return dao;
	}

	public void setDao(Dao dao) {
		this.dao = dao;
	}

	/**
	 * {@inheritDoc}
	 */
	public T get(PK id) {
		return dao.get(id);
	}

	/**
	 * {@inheritDoc}
	 */
	public  E get(PK id, Class clazz) {
		return dao.get(id, clazz);
	}

	/**
	 * {@inheritDoc}
	 */
	public  List getAll(Class clazz) {
		return dao.getAll(clazz);
	}

	/**
	 * {@inheritDoc}
	 */
	public Class getEntityClass() {
		if (dao != null)
			return dao.getEntityClass();
		
		return null;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public boolean exists(PK id) {
		return dao.exists(id);
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public List findByNamedQuery(String queryName,
			Map queryParams) {
		return dao.findByNamedQuery(queryName, queryParams);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy