?? userdefinedtypefacaderemote.java
字號:
package com.sinosoft.message.ejb;
import java.util.List;
import java.util.Set;
import javax.ejb.Remote;
import com.sinosoft.message.po.Userdefinedtype;
/**
* Remote interface for UserdefinedtypeFacade.
*
* @author MyEclipse Persistence Tools
*/
@Remote
public interface UserdefinedtypeFacadeRemote {
/**
* Perform an initial save of a previously unsaved Userdefinedtype entity.
* All subsequent persist actions of this entity should use the #update()
* method.
*
* @param entity
* Userdefinedtype entity to persist
* @throws RuntimeException
* when the operation fails
*/
public void save(Userdefinedtype entity);
/**
* Delete a persistent Userdefinedtype entity.
*
* @param entity
* Userdefinedtype entity to delete
* @throws RuntimeException
* when the operation fails
*/
public void delete(Userdefinedtype entity);
/**
* Persist a previously saved Userdefinedtype entity and return it or a copy
* of it to the sender. A copy of the Userdefinedtype entity parameter is
* returned when the JPA persistence mechanism has not previously been
* tracking the updated entity.
*
* @param entity
* Userdefinedtype entity to update
* @return Userdefinedtype the persisted Userdefinedtype entity instance,
* may not be the same
* @throws RuntimeException
* if the operation fails
*/
public Userdefinedtype update(Userdefinedtype entity);
public Userdefinedtype findById(String id);
/**
* Find all Userdefinedtype entities with a specific property value.
*
* @param propertyName
* the name of the Userdefinedtype 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<Userdefinedtype> found by query
*/
public List<Userdefinedtype> findByProperty(String propertyName,
Object value, int... rowStartIdxAndCount);
public List<Userdefinedtype> findByName(Object name,
int... rowStartIdxAndCount);
public List<Userdefinedtype> findByDec(Object dec,
int... rowStartIdxAndCount);
/**
* Find all Userdefinedtype 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<Userdefinedtype> all Userdefinedtype entities
*/
public List<Userdefinedtype> findAll(int... rowStartIdxAndCount);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -