public class BeanClass implements javax.ejb.SessionBean {
public Collection ejbFindByPrimaryKey (String key) throws FinderException{
PrimaryKey pKey = новый PrimaryKey(key);
Возвращает набор;
searchByPrimaryKey(pKey);
если (pKey.exists())
результат = pKey;
возвращает результат;
else
throw new ObjectNotFoundException("Primary Key "+ key + " not found");
}
}
|
|