Toggle navigation
Home
javax.persistence.EntityManager to org.keycloak.example.photoz.CustomDatabase
No. of Instances - 2
No. of Commits - 1
No. of Projects - {'keycloak'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: External -> Internal
Mapping:
Rename Variable
entityManager
to
customDatabase
entityManager
to
customDatabase
entityManager
to
customDatabase
entityManager
to
customDatabase
Add or Remove Method invocation
this.entityManager
to
this.customDatabase.getAll()
this.entityManager.createQuery("from Album").getResultList()
to
this.customDatabase
this.entityManager.createQuery("from Album")
to
this.customDatabase
this.entityManager
to
this.customDatabase.findByUserId(request.getUserPrincipal().getName())
this.entityManager.createQuery("from Album where userId = '" + request.getUserPrincipal().getName() + "'").getResultList()
to
this.customDatabase
this.entityManager.createQuery("from Album where userId = '" + request.getUserPrincipal().getName() + "'")
to
this.customDatabase