org.scala_libs.jpa

JndiEMF

class JndiEMF extends ScalaEMFactory

This class represents an EntityManager factory that is retrieved from JNDI, using JTA to handle transactions. An example of usage would be:

object FooEM extends JndiEMF("java:/myEM")

...

def doSomething = {
  val em = FooEM.newEM
  ...
  em.close()
}

Linear Supertypes
ScalaEMFactory, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JndiEMF
  2. ScalaEMFactory
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JndiEMF(jndiName: String)

    jndiName

    The full JNDI binding for the managed EntityManager, such as "java:comp/env/persistence/myem".

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def closeEM(em: EntityManager): Unit

    Commits the transaction if it hasn't been marked for rollback.

    Commits the transaction if it hasn't been marked for rollback.

    em

    The EntityManager to close

    Definition Classes
    JndiEMFScalaEMFactory
  7. lazy val ctxt: InitialContext

    Holds an InitialContext for use with JNDI.

  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def getUnitName: String

    Return the name of the configured persistence unit name

    Return the name of the configured persistence unit name

    Definition Classes
    JndiEMFScalaEMFactory
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. val jndiName: String

    The full JNDI binding for the managed EntityManager, such as "java:comp/env/persistence/myem".

  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def newEM: ScalaEntityManager

    Returns a newly created ScalaEntityManager.

    Returns a newly created ScalaEntityManager. This is the method that clients would typically use to obtain their EM.

    returns

    A new ScalaEntityManager instance.

    Definition Classes
    ScalaEMFactory
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. def openEM(): EntityManager

    Retrieves an EntityManager via JNDI and associates it with a JTA transaction.

    Retrieves an EntityManager via JNDI and associates it with a JTA transaction.

    returns

    An appropriately configured EntityManager

    Definition Classes
    JndiEMFScalaEMFactory
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. def tx: UserTransaction

    Returns the current UserTransaction retrieved from JNDI.

  24. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ScalaEMFactory

Inherited from AnyRef

Inherited from Any

Ungrouped