public static java.util.Collection findByName(String qst, UniversumHome home) 
        throws SQLException, FinderException, RemoteException{
        String where = " FIRST_NAME = '" + qst + "'";    
        return home.findBySQLWhere(where, UserPK.getInstance());
}

Example 2: Finder method on a primary key.

Back to Article