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. Hide All
  2. Show all
  1. JndiEMF
  2. ScalaEMFactory
  3. AnyRef
  4. Any
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. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

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

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. 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
  9. lazy val ctxt : InitialContext

    Holds an InitialContext for use with JNDI.

  10. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  11. def equals (arg0: Any): Boolean

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

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

    Attributes
    final
    Definition Classes
    AnyRef
  14. def getUnitName : String

    Return the name of the configured persistence unit name

    Return the name of the configured persistence unit name

    Definition Classes
    JndiEMFScalaEMFactory
  15. def hashCode (): Int

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

    Attributes
    final
    Definition Classes
    Any
  17. val jndiName : String

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

  18. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  19. 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
  20. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  21. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  22. 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
  23. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  24. def toString (): String

    Definition Classes
    AnyRef → Any
  25. def tx : UserTransaction

    Returns the current UserTransaction retrieved from JNDI.

  26. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from ScalaEMFactory

Inherited from AnyRef

Inherited from Any