}
selectSrcSequencesStmt.setString(1, endpointIdentifier);
ResultSet res = selectSrcSequencesStmt.executeQuery();
while (res.next()) {
Identifier sid = RMUtils.getWSRMFactory().createIdentifier();
sid.setValue(res.getString(1));
BigInteger cmn = res.getBigDecimal(2).toBigInteger();
boolean lm = res.getBoolean(3);
long lval = res.getLong(4);
Date expiry = 0 == lval ? null : new Date(lval);
String oidValue = res.getString(5);
Identifier oi = null;
if (null != oidValue) {
oi = RMUtils.getWSRMFactory().createIdentifier();
oi.setValue(oidValue);
}
SourceSequence seq = new SourceSequence(sid, expiry, oi, cmn, lm);
seqs.add(seq);
}
} catch (SQLException ex) {