Skip to content

Commit

Permalink
updates the key-value package name
Browse files Browse the repository at this point in the history
  • Loading branch information
otaviojava committed Aug 13, 2019
1 parent bef99a6 commit f97cf8e
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package jakarta.nosql.kv;
package jakarta.nosql.keyvalue;


import jakarta.nosql.QueryException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package jakarta.nosql.kv;
package jakarta.nosql.keyvalue;


import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package jakarta.nosql.kv;
package jakarta.nosql.keyvalue;

import jakarta.nosql.ServiceLoaderProvider;
import jakarta.nosql.Settings;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package jakarta.nosql.kv;
package jakarta.nosql.keyvalue;


import jakarta.nosql.ServiceLoaderProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package jakarta.nosql.kv;
package jakarta.nosql.keyvalue;

import jakarta.nosql.NonUniqueResultException;
import jakarta.nosql.Value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package jakarta.nosql.kv;
package jakarta.nosql.keyvalue;

import jakarta.nosql.QueryException;
import jakarta.nosql.Value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
* Some databases support ordering of keys. There are various hardware implementations, and some users maintain
* data in memory (RAM), while others employ solid-state drives or rotating disks.
*/
package jakarta.nosql.kv;
package jakarta.nosql.keyvalue;
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package jakarta.nosql.mapping.kv;


import jakarta.nosql.kv.KeyValueEntity;
import jakarta.nosql.keyvalue.KeyValueEntity;
import jakarta.nosql.mapping.Id;
import jakarta.nosql.mapping.IdNotFoundException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
package jakarta.nosql.mapping.kv;


import jakarta.nosql.kv.KeyValueEntity;
import jakarta.nosql.keyvalue.KeyValueEntity;

public interface KeyValueEntityPostPersist {

/**
* The {@link jakarta.nosql.kv.KeyValueEntity} after be saved
* The {@link jakarta.nosql.keyvalue.KeyValueEntity} after be saved
*
* @return the {@link KeyValueEntity} instance
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
package jakarta.nosql.mapping.kv;


import jakarta.nosql.kv.KeyValueEntity;
import jakarta.nosql.keyvalue.KeyValueEntity;

public interface KeyValueEntityPrePersist {

/**
* The {@link jakarta.nosql.kv.KeyValueEntity} after be saved
* The {@link jakarta.nosql.keyvalue.KeyValueEntity} after be saved
*
* @return the {@link KeyValueEntity} instance
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package jakarta.nosql.mapping.kv;


import jakarta.nosql.kv.KeyValueEntity;
import jakarta.nosql.keyvalue.KeyValueEntity;

/**
* This interface represent the manager of events. When an entity be either saved or updated an event will be fired. This order gonna be:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package jakarta.nosql.mapping.kv;

import jakarta.nosql.kv.BucketManager;
import jakarta.nosql.keyvalue.BucketManager;
import jakarta.nosql.mapping.Repository;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package jakarta.nosql.mapping.kv;


import jakarta.nosql.kv.BucketManager;
import jakarta.nosql.keyvalue.BucketManager;

/**
* The producer of {@link KeyValueTemplate}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package jakarta.nosql.mapping.kv;


import jakarta.nosql.kv.KeyValueEntity;
import jakarta.nosql.keyvalue.KeyValueEntity;

import java.util.function.UnaryOperator;

Expand Down

0 comments on commit f97cf8e

Please sign in to comment.