List<FotoForm> fotosForm = new ArrayList<FotoForm>();
Iterator<?> it = fotos.iterator();
while (it.hasNext())
{
FotoForm fotoForm = new FotoForm();
Fotos foto = (Fotos) it.next();
//fotoForm.setKey(foto.getKey());
//fotoForm.setImatge(foto.getImatge());
fotoForm.setDescripcio(foto.getDescripcio());
//fotoForm.setKeyInmoble(foto.getInmobles().getInmobleKey());
fotosForm.add(fotoForm);
}