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

📄 historymessagecontentfacaderemote.java

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

import java.util.List;
import java.util.Set;
import javax.ejb.Remote;

/**
 * Remote interface for HistorymessagecontentFacade.
 * 
 * @author MyEclipse Persistence Tools
 */
@Remote
public interface HistorymessagecontentFacadeRemote {
	/**
	 * Perform an initial save of a previously unsaved Historymessagecontent
	 * entity. All subsequent persist actions of this entity should use the
	 * #update() method.
	 * 
	 * @param entity
	 *            Historymessagecontent entity to persist
	 * @throws RuntimeException
	 *             when the operation fails
	 */
	public void save(Historymessagecontent entity);

	/**
	 * Delete a persistent Historymessagecontent entity.
	 * 
	 * @param entity
	 *            Historymessagecontent entity to delete
	 * @throws RuntimeException
	 *             when the operation fails
	 */
	public void delete(Historymessagecontent entity);

	/**
	 * Persist a previously saved Historymessagecontent entity and return it or
	 * a copy of it to the sender. A copy of the Historymessagecontent entity
	 * parameter is returned when the JPA persistence mechanism has not
	 * previously been tracking the updated entity.
	 * 
	 * @param entity
	 *            Historymessagecontent entity to update
	 * @return Historymessagecontent the persisted Historymessagecontent entity
	 *         instance, may not be the same
	 * @throws RuntimeException
	 *             if the operation fails
	 */
	public Historymessagecontent update(Historymessagecontent entity);

	public Historymessagecontent findById(String id);

	/**
	 * Find all Historymessagecontent entities with a specific property value.
	 * 
	 * @param propertyName
	 *            the name of the Historymessagecontent 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
	 *            count of results to return.
	 * @return List<Historymessagecontent> found by query
	 */
	public List<Historymessagecontent> findByProperty(String propertyName,
			Object value, int... rowStartIdxAndCount);

	public List<Historymessagecontent> findByMessagecontent(
			Object messagecontent, int... rowStartIdxAndCount);

	public List<Historymessagecontent> findByMessagetype(Object messagetype,
			int... rowStartIdxAndCount);

	public List<Historymessagecontent> findByUrl(Object url,
			int... rowStartIdxAndCount);

	public List<Historymessagecontent> findByLevel(Object level,
			int... rowStartIdxAndCount);

	/**
	 * Find all Historymessagecontent 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<Historymessagecontent> all Historymessagecontent entities
	 */
	public List<Historymessagecontent> findAll(int... rowStartIdxAndCount);
}

⌨️ 快捷键说明

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