libjdo-api-java 3.1-2 source package in Ubuntu

Changelog

libjdo-api-java (3.1-2) unstable; urgency=medium

  * Team upload.
  * Depend on libgeronimo-jta-1.2-spec-java instead of glassfish-javaee
  * Standards-Version updated to 4.1.1
  * Switch to debhelper level 10

 -- Emmanuel Bourg <email address hidden>  Wed, 22 Nov 2017 00:06:57 +0100

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
java
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe libs

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libjdo-api-java_3.1-2.dsc 2.1 KiB 8330011858f7f79600fc28ea9c543962ee0aee1e07808de26bcc065792311829
libjdo-api-java_3.1.orig.tar.gz 1.1 MiB 861d5ffd0c7f607c40ba8c03451500492e46efd381a5b4154eeeb6f24ab53135
libjdo-api-java_3.1-2.debian.tar.xz 3.3 KiB f271f449f76573a156bb85fbca320dc0d850cc1828904e260c75e48340c6eff4

Available diffs

No changes file available.

Binary packages built by this source

libjdo-api-java: Implementation of JSR 243: Java Data Objects 3.1

 Java Data Objects (JDO) is a standard way to access persistent data in
 databases, using plain old Java objects (POJO) to represent persistent data.
 The approach separates data manipulation (done by accessing Java data members
 in the Java domain objects) from database manipulation (done by calling the
 JDO interface methods). This separation of concerns leads to a high degree of
 independence of the Java view of data from the database view of the data.
 .
 Interfaces are defined for the user's view of persistence:
  - PersistenceManager: the component responsible for the life cycle of
    persistent instances, Query factory, and Transaction access
  - Query: the component responsible for querying the datastore and returning
    persistent instances or values
  - Transaction: the component responsible for initiating and completing
    transactions
 .
 JDO is being developed as a Java Specification Request in the Java Community
 Process. The original JDO 1.0 is JSR-12 http://www.jcp.org/en/jsr/detail?id=12
 and the current JDO 2.0 is JSR-243 http://www.jcp.org/en/jsr/detail?id=243