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

📄 userdefinedstrategyfacadelocal.java

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

import java.util.List;
import javax.ejb.Local;

import com.sinosoft.message.po.Userdefinedstrategy;

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

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

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

	public Userdefinedstrategy findById(String id);

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

	public List<Userdefinedstrategy> findByStrategyName(Object strategyName,
			int... rowStartIdxAndCount);

	public List<Userdefinedstrategy> findByStrategyDec(Object strategyDec,
			int... rowStartIdxAndCount);

	public List<Userdefinedstrategy> findByCreator(Object creator,
			int... rowStartIdxAndCount);

	public List<Userdefinedstrategy> findByMessagetypeid(Object messagetypeid,
			int... rowStartIdxAndCount);

	public List<Userdefinedstrategy> findByAllow(Object allow,
			int... rowStartIdxAndCount);

	public List<Userdefinedstrategy> findByFunmodelid(Object funmodelid,
			int... rowStartIdxAndCount);

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

⌨️ 快捷键说明

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