Skip to content

Changes

Summary

  1. fixed javadoc (commit: 017a1c4) (details)
  2. Modify ServiceLoaderProvider to use the HK2 OSGi ServiceLoader when present (commit: facd320) (details)
  3. Fix errant Jakarta class name in Javadoc (commit: 987a84f) (details)
  4. Improve ServiceLoaderProvider OSGi flagging, fix potential NPE, and fix service sorting in OSGi contexts (commit: cc96bb7) (details)
  5. create classload reader (commit: 220b134) (details)
  6. initial scope of code (commit: de79f0b) (details)
  7. Create loadertype as an enum (commit: 2222ccb) (details)
  8. Create read method to loadertype (commit: afcc7e9) (details)
  9. Add Loadertype method (commit: b1f1a76) (details)
  10. Add logs on the loadertype (commit: 3fef58d) (details)
  11. Remove ClassLoadReader (commit: c78a2b8) (details)
  12. removing ServiceLoaderProvider logic and extrating to SLP (commit: 2861cf7) (details)
  13. Create loadertype test (commit: 762e1b3) (details)
  14. Create test to Loadertype (commit: da138b8) (details)
  15. remove unused imports (commit: 0cce50c) (details)
  16. remove unused imports on ServiceLoaderProvider (commit: 350c78b) (details)
  17. simplify code using method reference (commit: db82161) (details)
  18. Optmizes code using final on ServiceLoaderProvider (commit: b00c482) (details)
  19. fixes documentation on Condition javadoc (commit: adcbf43) (details)
  20. Small documentation typos (commit: 8764b79) (details)
  21. Add test cases for the behavior of LoaderType.OSGI (commit: 0cd827d) (details)
  22. Update jakarta nosql API to 1.0.0-b4 (commit: 4c6fb73) (details)
Commit 017a1c483b64d098d1cee878045c85b2638a9a41 by Robson Kades
fixed javadoc
(commit: 017a1c4)
The file was modified api/mapping/mapping-column/src/main/java/jakarta/nosql/mapping/column/ColumnQueryMapper.java
The file was modified api/mapping/mapping-column/src/main/java/jakarta/nosql/mapping/column/ColumnWorkflow.java
The file was modified api/mapping/mapping-document/src/main/java/jakarta/nosql/mapping/document/DocumentQueryMapper.java
The file was modified api/mapping/mapping-key-value/src/main/java/jakarta/nosql/mapping/keyvalue/KeyValueEventPersistManager.java
The file was modified api/communication/communication-column/src/main/java/jakarta/nosql/column/ColumnDeleteQuery.java
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ServiceLoaderProvider.java
The file was modified api/mapping/mapping-core/src/main/java/jakarta/nosql/mapping/Template.java
The file was modified api/communication/communication-document/src/main/java/jakarta/nosql/document/DocumentCollectionManager.java
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/Settings.java
The file was modified api/mapping/mapping-document/src/main/java/jakarta/nosql/mapping/document/DocumentEntityConverter.java
The file was modified api/mapping/mapping-document/src/main/java/jakarta/nosql/mapping/document/DocumentEventPersistManager.java
The file was modified api/mapping/mapping-key-value/src/main/java/jakarta/nosql/mapping/keyvalue/KeyValueEntityConverter.java
The file was modified api/communication/communication-column/src/main/java/jakarta/nosql/column/ColumnEntity.java
The file was modified api/communication/communication-document/src/main/java/jakarta/nosql/document/DocumentDeleteQuery.java
The file was modified api/communication/communication-column/src/main/java/jakarta/nosql/column/ColumnCondition.java
The file was modified api/communication/communication-column/src/main/java/jakarta/nosql/column/ColumnQuery.java
The file was modified api/communication/communication-key-value/src/main/java/jakarta/nosql/keyvalue/BucketManagerFactory.java
The file was modified api/communication/communication-document/src/main/java/jakarta/nosql/document/DocumentEntity.java
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ProviderNotFoundException.java
The file was modified api/mapping/mapping-column/src/main/java/jakarta/nosql/mapping/column/ColumnEventPersistManager.java
The file was modified api/mapping/mapping-document/src/main/java/jakarta/nosql/mapping/document/DocumentWorkflow.java
The file was modified api/communication/communication-document/src/main/java/jakarta/nosql/document/DocumentCondition.java
The file was modified api/mapping/mapping-key-value/src/main/java/jakarta/nosql/mapping/keyvalue/KeyValueTemplate.java
Commit facd32078e6ff57c7781218588b618a5603e1869 by Jesse Gallagher
Modify ServiceLoaderProvider to use the HK2 OSGi ServiceLoader when present
(commit: facd320)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ServiceLoaderProvider.java
Commit 987a84f51dbe15c7da24b45272b73f1a657b775a by Jesse Gallagher
Fix errant Jakarta class name in Javadoc
(commit: 987a84f)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ServiceLoaderProvider.java
Commit cc96bb78cf9dc2102d7b04cbd9af3dfb0180a0b1 by Jesse Gallagher
Improve ServiceLoaderProvider OSGi flagging, fix potential NPE, and fix service sorting in OSGi contexts
(commit: cc96bb7)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ServiceLoaderProvider.java
Commit 220b1348fabcc61cd369a1fc0318ec190fe6d9d8 by Otavio Santana
create classload reader

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 220b134)
The file was addedapi/communication/communication-core/src/main/java/jakarta/nosql/ClassLoadReader.java
Commit de79f0b3d9e22d386a0d0c5cf97cc5ef14cd1ea8 by Otavio Santana
initial scope of code

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: de79f0b)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ClassLoadReader.java
Commit 2222ccb584ee702a9e148788bc1d7e79f7d160e5 by Otavio Santana
Create loadertype as an enum

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 2222ccb)
The file was addedapi/communication/communication-core/src/main/java/jakarta/nosql/LoaderType.java
Commit afcc7e9b731fbcea60156f6cac75d7ccbedd1a22 by Otavio Santana
Create read method to loadertype

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: afcc7e9)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/LoaderType.java
Commit b1f1a76d48c141d8aee2a180083c42fbf2ccd1b2 by Otavio Santana
Add Loadertype method

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: b1f1a76)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/LoaderType.java
Commit 3fef58d4e5312e206d3a7a0d2c158651ccd795ea by Otavio Santana
Add logs on the loadertype

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 3fef58d)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/LoaderType.java
Commit c78a2b8e8813e52960e6a84511aae7f547daa42b by Otavio Santana
Remove ClassLoadReader

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: c78a2b8)
The file was removedapi/communication/communication-core/src/main/java/jakarta/nosql/ClassLoadReader.java
Commit 2861cf738934c6c1a238b992d3b51ce5666e2f4c by Otavio Santana
removing ServiceLoaderProvider logic and extrating to SLP

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 2861cf7)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ServiceLoaderProvider.java
Commit 762e1b3d09298550b142159400b22ef6e94a9320 by Otavio Santana
Create loadertype test

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 762e1b3)
The file was addedapi/communication/communication-core/src/test/java/jakarta/nosql/LoaderTypeTest.java
Commit da138b81db8e6bdb75fdda6e471508ab8b83b7e9 by Otavio Santana
Create test to Loadertype

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: da138b8)
The file was modified api/communication/communication-core/src/test/java/jakarta/nosql/LoaderTypeTest.java
Commit 0cce50ca66283365a29f444de4ebc3757cc63b5e by Otavio Santana
remove unused imports

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 0cce50c)
The file was modified api/communication/communication-core/src/test/java/jakarta/nosql/LoaderTypeTest.java
Commit 350c78b7dc03fae772d9fbc5568b1752b374a2bb by Otavio Santana
remove unused imports on ServiceLoaderProvider

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 350c78b)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ServiceLoaderProvider.java
Commit db8216159658aaff7f66d2a24b5c4ccb709bb257 by Otavio Santana
simplify code using method reference

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: db82161)
The file was modified api/communication/communication-core/src/test/java/jakarta/nosql/ServiceLoaderSortTest.java
Commit b00c482a8fa29894056a3c3575b9788d005fb923 by Otavio Santana
Optmizes code using final on ServiceLoaderProvider

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: b00c482)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ServiceLoaderProvider.java
Commit adcbf436f50065e0c26e3c530be0ea01867f169e by Otavio Santana
fixes documentation on Condition javadoc

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: adcbf43)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/Condition.java
Commit 8764b7979620e6af672b2fd5c15e8503540518da by Otavio Santana
Small documentation typos

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 8764b79)
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/Params.java
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ValueWriter.java
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/ServiceLoaderProvider.java
The file was modified api/communication/communication-core/src/main/java/jakarta/nosql/Sort.java
Commit 0cd827db35e5f02881e7a3c03134c22b06e1d5f4 by Jesse Gallagher
Add test cases for the behavior of LoaderType.OSGI
(commit: 0cd827d)
The file was modified api/communication/communication-core/src/test/java/jakarta/nosql/LoaderTypeTest.java
The file was addedapi/communication/communication-core/src/test/resources/ServiceLoaderImpl.java
The file was addedapi/communication/communication-core/src/test/resources/ServiceLoaderNull.java
The file was modified pom.xml
Commit 4c6fb73231d883142851e8e0f28bc8c8db7894f3 by Otavio Santana
Update jakarta nosql API to 1.0.0-b4

Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
(commit: 4c6fb73)
The file was modified api/mapping/pom.xml
The file was modified api/mapping/mapping-key-value/pom.xml
The file was modified tck/driver-tck/driver-tck-document/pom.xml
The file was modified tck/communication-tck/communication-tck-core/pom.xml
The file was modified tck/mapping-tck/mapping-tck-test/pom.xml
The file was modified tck/driver-tck/driver-tck-key-value/pom.xml
The file was modified api/communication/communication-core/pom.xml
The file was modified tck/mapping-tck/mapping-tck-key-value/pom.xml
The file was modified tck/driver-tck/pom.xml
The file was modified tck/mapping-tck/mapping-tck-document/pom.xml
The file was modified api/communication/pom.xml
The file was modified api/mapping/mapping-column/pom.xml
The file was modified api/communication/communication-document/pom.xml
The file was modified tck/communication-tck/communication-tck-document/pom.xml
The file was modified tck/mapping-tck/pom.xml
The file was modified tck/mapping-tck/mapping-tck-entities/pom.xml
The file was modified pom.xml
The file was modified spec/pom.xml
The file was modified api/communication/communication-key-value/pom.xml
The file was modified api/communication/communication-query/pom.xml
The file was modified api/communication/communication-column/pom.xml
The file was modified tck/communication-tck/communication-tck-column/pom.xml
The file was modified tck/pom.xml
The file was modified tck/mapping-tck/mapping-tck-core/pom.xml
The file was modified tck/driver-tck/driver-tck-column/pom.xml
The file was modified api/mapping/mapping-core/pom.xml
The file was modified tck/communication-tck/communication-tck-key-value/pom.xml
The file was modified tck/communication-tck/pom.xml
The file was modified api/mapping/mapping-document/pom.xml
The file was modified api/pom.xml
The file was modified tck/mapping-tck/mapping-tck-column/pom.xml