Yes, it does. In JPA you use persistence units, which represent specific banks. If you want to specify more than one bank, you can only declare more than one persistence unit (PU) and create the entity managers for each one. The persistence.xml file that declares the PUs looks like this:
<persistence-unit name="pu1">
<properties>
<property name="javax.persistence.jdbc.url" value="jdbc:postgresql://localhost/banco1" />
<property name="javax.persistence.jdbc.user" value="admin" />
<property name="javax.persistence.jdbc.password" value="123456" />
<persistence-unit name="pu2">
<properties>
<property name="javax.persistence.jdbc.url" value="jdbc:postgresql://localhost/banco2" />
<property name="javax.persistence.jdbc.user" value="admin" />
<property name="javax.persistence.jdbc.password" value="123456" />
Then to reference an entity that is in bank 1 you only need to instantiate the pu1 in the creation of the entity manager:
EntityManager emPU1 = Persistence.createEntityManagerFactory("pu1").createEntityManager();
Now for the entity that is in bank 2 just refer to pu2:
EntityManager emPU2 = Persistence.createEntityManagerFactory("pu2").createEntityManager();
After consulting both entities, you can make your DE-PARA and persist as you wish the final result. I hope I have helped ^^