⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 messagelevelfacade.java

📁 协同办公
💻 JAVA
字号:
package com.sinosoft.message.ejb;

import java.util.List;
import java.util.Set;
import java.util.logging.Level;
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;

import com.sinosoft.message.po.Messagelevel;

/**
 * Facade for entity Messagelevel.
 * 
 * @see com.sinosoft.message.po.Messagelevel
 * @author MyEclipse Persistence Tools
 */
@Stateless
public class MessagelevelFacade implements MessagelevelFacadeLocal,
		MessagelevelFacadeRemote {
	// property constants
	public static final String NAME = "name";
	public static final String UPDATETIME = "updatetime";
	public static final String PRIORITY = "priority";

	@PersistenceContext
	private EntityManager entityManager;

	/**
	 * Perform an initial save of a previously unsaved Messagelevel entity. All
	 * subsequent persist actions of this entity should use the #update()
	 * method.
	 * 
	 * @param entity
	 *            Messagelevel entity to persist
	 * @throws RuntimeException
	 *             when the operation fails
	 */
	public void save(Messagelevel entity) {
		LogUtil.log("saving Messagelevel instance", Level.INFO, null);
		try {
			entityManager.persist(entity);
			LogUtil.log("save successful", Level.INFO, null);
		} catch (RuntimeException re) {
			LogUtil.log("save failed", Level.SEVERE, re);
			throw re;
		}
	}

	/**
	 * Delete a persistent Messagelevel entity.
	 * 
	 * @param entity
	 *            Messagelevel entity to delete
	 * @throws RuntimeException
	 *             when the operation fails
	 */
	public void delete(Messagelevel entity) {
		LogUtil.log("deleting Messagelevel instance", Level.INFO, null);
		try {
			entity = entityManager.getReference(Messagelevel.class, entity
					.getId());
			entityManager.remove(entity);
			LogUtil.log("delete successful", Level.INFO, null);
		} catch (RuntimeException re) {
			LogUtil.log("delete failed", Level.SEVERE, re);
			throw re;
		}
	}

	/**
	 * Persist a previously saved Messagelevel entity and return it or a copy of
	 * it to the sender. A copy of the Messagelevel entity parameter is returned
	 * when the JPA persistence mechanism has not previously been tracking the
	 * updated entity.
	 * 
	 * @param entity
	 *            Messagelevel entity to update
	 * @return Messagelevel the persisted Messagelevel entity instance, may not
	 *         be the same
	 * @throws RuntimeException
	 *             if the operation fails
	 */
	public Messagelevel update(Messagelevel entity) {
		LogUtil.log("updating Messagelevel instance", Level.INFO, null);
		try {
			Messagelevel result = entityManager.merge(entity);
			LogUtil.log("update successful", Level.INFO, null);
			return result;
		} catch (RuntimeException re) {
			LogUtil.log("update failed", Level.SEVERE, re);
			throw re;
		}
	}

	public Messagelevel findById(String id) {
		LogUtil.log("finding Messagelevel instance with id: " + id, Level.INFO,
				null);
		try {
			Messagelevel instance = entityManager.find(Messagelevel.class, id);
			return instance;
		} catch (RuntimeException re) {
			LogUtil.log("find failed", Level.SEVERE, re);
			throw re;
		}
	}

	/**
	 * Find all Messagelevel entities with a specific property value.
	 * 
	 * @param propertyName
	 *            the name of the Messagelevel property to query
	 * @param value
	 *            the property value to match
	 * @param rowStartIdxAndCount
	 *            Optional int varargs. rowStartIdxAndCount[0] specifies the the
	 *            row index in the query result-set to begin collecting the
	 *            results. rowStartIdxAndCount[1] specifies the the maximum
	 *            number of results to return.
	 * @return List<Messagelevel> found by query
	 */
	@SuppressWarnings("unchecked")
	public List<Messagelevel> findByProperty(String propertyName,
			final Object value, final int... rowStartIdxAndCount) {
		LogUtil.log("finding Messagelevel instance with property: "
				+ propertyName + ", value: " + value, Level.INFO, null);
		try {
			final String queryString = "select model from Messagelevel model where model."
					+ propertyName + "= :propertyValue";
			Query query = entityManager.createQuery(queryString);
			query.setParameter("propertyValue", value);
			if (rowStartIdxAndCount != null && rowStartIdxAndCount.length > 0) {
				int rowStartIdx = Math.max(0, rowStartIdxAndCount[0]);
				if (rowStartIdx > 0) {
					query.setFirstResult(rowStartIdx);
				}

				if (rowStartIdxAndCount.length > 1) {
					int rowCount = Math.max(0, rowStartIdxAndCount[1]);
					if (rowCount > 0) {
						query.setMaxResults(rowCount);
					}
				}
			}
			return query.getResultList();
		} catch (RuntimeException re) {
			LogUtil.log("find by property name failed", Level.SEVERE, re);
			throw re;
		}
	}

	public List<Messagelevel> findByName(Object name,
			int... rowStartIdxAndCount) {
		return findByProperty(NAME, name, rowStartIdxAndCount);
	}

	public List<Messagelevel> findByUpdatetime(Object updatetime,
			int... rowStartIdxAndCount) {
		return findByProperty(UPDATETIME, updatetime, rowStartIdxAndCount);
	}

	public List<Messagelevel> findByPriority(Object priority,
			int... rowStartIdxAndCount) {
		return findByProperty(PRIORITY, priority, rowStartIdxAndCount);
	}

	/**
	 * Find all Messagelevel entities.
	 * 
	 * @param rowStartIdxAndCount
	 *            Optional int varargs. rowStartIdxAndCount[0] specifies the the
	 *            row index in the query result-set to begin collecting the
	 *            results. rowStartIdxAndCount[1] specifies the the maximum
	 *            count of results to return.
	 * @return List<Messagelevel> all Messagelevel entities
	 */
	@SuppressWarnings("unchecked")
	public List<Messagelevel> findAll(final int... rowStartIdxAndCount) {
		LogUtil.log("finding all Messagelevel instances", Level.INFO, null);
		try {
			final String queryString = "select model from Messagelevel model";
			Query query = entityManager.createQuery(queryString);
			if (rowStartIdxAndCount != null && rowStartIdxAndCount.length > 0) {
				int rowStartIdx = Math.max(0, rowStartIdxAndCount[0]);
				if (rowStartIdx > 0) {
					query.setFirstResult(rowStartIdx);
				}

				if (rowStartIdxAndCount.length > 1) {
					int rowCount = Math.max(0, rowStartIdxAndCount[1]);
					if (rowCount > 0) {
						query.setMaxResults(rowCount);
					}
				}
			}
			return query.getResultList();
		} catch (RuntimeException re) {
			LogUtil.log("find all failed", Level.SEVERE, re);
			throw re;
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -