* @throws SandeshaStorageException
*/
protected void checkKeys (List findBeanList) throws SandeshaStorageException {
for (Iterator iter = findBeanList.iterator(); iter.hasNext();) {
RMBean rmBean = (RMBean) iter.next();
List conflicts = find(rmBean);
if (conflicts.size()>0) {
//we only report the first conflict here.
throw new SandeshaStorageException ("Key conflict occured with the bean " + conflicts.get(0));