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());
}