libjdo-api-java 3.1-3~18.04 source package in Ubuntu

Changelog

libjdo-api-java (3.1-3~18.04) bionic; urgency=medium

  * Backport for OpenJDK 11. LP: #1814133.

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

  * Team upload.
  * Fixed the build failure with Java 11 (Closes: #911188)
  * Standards-Version updated to 4.2.1
  * Switch to debhelper level 11
  * Use salsa.debian.org Vcs-* URLs

 -- Matthias Klose <email address hidden>  Tue, 26 Feb 2019 16:00:01 +0100

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Bionic
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
java
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic updates universe libs
Bionic security universe libs

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libjdo-api-java_3.1.orig.tar.gz 1.1 MiB 861d5ffd0c7f607c40ba8c03451500492e46efd381a5b4154eeeb6f24ab53135
libjdo-api-java_3.1-3~18.04.debian.tar.xz 3.3 KiB 1da102065e907933b5a740767bd5cd422850d995298d6250591e66a6c953e4ea
libjdo-api-java_3.1-3~18.04.dsc 2.1 KiB 5ceb26590050ca6d5cfae1b1f07c42c45110fc9c5e19708499f5e5572f549a85

Available diffs

View changes file

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