Skip to content

Commit

Permalink
feat: upgrade package name
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <[email protected]>
  • Loading branch information
otaviojava committed Feb 5, 2024
1 parent 0a9c11a commit b1ea178
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.jnosql.demoee;

import jakarta.data.repository.Pageable;
import jakarta.data.page.Pageable;
import jakarta.data.repository.PageableRepository;
import jakarta.data.repository.Repository;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.jnosql.demoee;

import jakarta.data.page.Pageable;
import jakarta.data.repository.*;
import jakarta.ws.rs.QueryParam;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package org.jnosql.demoee;

import io.smallrye.config.ConfigMappingClassMapper;
import jakarta.data.repository.Page;
import jakarta.data.repository.Pageable;
import jakarta.data.page.Pageable;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Inject;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package org.jnosql.demoee;

import jakarta.data.repository.Direction;
import jakarta.data.repository.Pageable;
import jakarta.data.repository.Sort;

import jakarta.data.Direction;
import jakarta.data.page.Pageable;
import jakarta.data.Sort;

import java.util.Arrays;
import java.util.Objects;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
package org.jnosql.demoee;

import com.github.javafaker.Faker;
import jakarta.data.repository.Pageable;
import jakarta.data.repository.Sort;


import jakarta.data.page.Pageable;
import jakarta.data.Sort;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Inject;
import jakarta.ws.rs.DELETE;
import jakarta.ws.rs.DefaultValue;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.PUT;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import jakarta.ws.rs.QueryParam;
Expand Down

0 comments on commit b1ea178

Please sign in to comment.