[RESOLVIDO] Utilizar 'IN' (HQL) Passando Array de ids

Eu estou com uma pequena duvida de como utilizar in passando um array de ids.

public List<Pessoa> porArray(Integer[] idPessoa) { 		
	return manager.createQuery("from Pessoa where idPessoa in (:idPessoas)", Pessoa.class)				
			.setParameter("idPessoa", idPessoa)
			.getResultList(); 		
}

Queria Fazer algo parecido com isso.

Bem Resolvido. Consegui Resposta em outro Forum.

public List<Pessoa> porArray(ArrayList<Integer> idPessoa) { 		
return manager.createQuery("from Pessoa where idPessoa in (:idPessoas)", Pessoa.class)				
		.setParameter("idPessoa", idPessoa)
		.getResultList(); 	
}