📄 applicationinfofacaderemote.java
字号:
package com.sinosoft.message.ejb;
import java.util.List;
import java.util.Set;
import javax.ejb.Remote;
import com.sinosoft.message.po.Applicationinfo;
/**
* Remote interface for ApplicationinfoFacade.
*
* @author MyEclipse Persistence Tools
*/
@Remote
public interface ApplicationinfoFacadeRemote {
/**
* Perform an initial save of a previously unsaved Applicationinfo entity.
* All subsequent persist actions of this entity should use the #update()
* method.
*
* @param entity
* Applicationinfo entity to persist
* @throws RuntimeException
* when the operation fails
*/
public void save(Applicationinfo entity);
/**
* Delete a persistent Applicationinfo entity.
*
* @param entity
* Applicationinfo entity to delete
* @throws RuntimeException
* when the operation fails
*/
public void delete(Applicationinfo entity);
/**
* Persist a previously saved Applicationinfo entity and return it or a copy
* of it to the sender. A copy of the Applicationinfo entity parameter is
* returned when the JPA persistence mechanism has not previously been
* tracking the updated entity.
*
* @param entity
* Applicationinfo entity to update
* @return Applicationinfo the persisted Applicationinfo entity instance,
* may not be the same
* @throws RuntimeException
* if the operation fails
*/
public Applicationinfo update(Applicationinfo entity);
public Applicationinfo findById(String id);
/**
* Find all Applicationinfo entities with a specific property value.
*
* @param propertyName
* the name of the Applicationinfo 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<Applicationinfo> found by query
*/
public List<Applicationinfo> findByProperty(String propertyName,
Object value, int... rowStartIdxAndCount);
public List<Applicationinfo> findByApplicationName(Object applicationName,
int... rowStartIdxAndCount);
public List<Applicationinfo> findByUrl(Object url,
int... rowStartIdxAndCount);
public List<Applicationinfo> findByCreateor(Object createor,
int... rowStartIdxAndCount);
public List<Applicationinfo> findByCreateTime(Object createTime,
int... rowStartIdxAndCount);
public List<Applicationinfo> findByLastCreator(Object lastCreator,
int... rowStartIdxAndCount);
public List<Applicationinfo> findByLastModify(Object lastModify,
int... rowStartIdxAndCount);
/**
* Find all Applicationinfo 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<Applicationinfo> all Applicationinfo entities
*/
public List<Applicationinfo> findAll(int... rowStartIdxAndCount);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -