Skip to content

Commit

Permalink
fix: package declaration of JtiValidationStore (#4623)
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger authored Nov 13, 2024
1 parent fdf6427 commit 58f7a07
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
*
*/

package org.eclipse.edc.edr.store.index;
package org.eclipse.edc.jtivalidation.store.sql;

import com.fasterxml.jackson.databind.ObjectMapper;
import org.eclipse.edc.edr.store.index.sql.schema.JtiValidationStoreStatements;
import org.eclipse.edc.jtivalidation.store.sql.schema.JtiValidationStoreStatements;
import org.eclipse.edc.jwt.validation.jti.JtiValidationEntry;
import org.eclipse.edc.jwt.validation.jti.JtiValidationStore;
import org.eclipse.edc.spi.monitor.Monitor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
*
*/

package org.eclipse.edc.edr.store.index;
package org.eclipse.edc.jtivalidation.store.sql;


import org.eclipse.edc.edr.store.index.sql.schema.JtiValidationStoreStatements;
import org.eclipse.edc.edr.store.index.sql.schema.postgres.PostgresDialectStatements;
import org.eclipse.edc.jtivalidation.store.sql.schema.JtiValidationStoreStatements;
import org.eclipse.edc.jtivalidation.store.sql.schema.postgres.PostgresDialectStatements;
import org.eclipse.edc.jwt.validation.jti.JtiValidationStore;
import org.eclipse.edc.runtime.metamodel.annotation.Extension;
import org.eclipse.edc.runtime.metamodel.annotation.Inject;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
*/

package org.eclipse.edc.edr.store.index.sql.schema;
package org.eclipse.edc.jtivalidation.store.sql.schema;

import org.eclipse.edc.spi.query.Criterion;
import org.eclipse.edc.sql.translation.SqlOperatorTranslator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
*/

package org.eclipse.edc.edr.store.index.sql.schema;
package org.eclipse.edc.jtivalidation.store.sql.schema;

import org.eclipse.edc.sql.statement.SqlStatements;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
*
*/

package org.eclipse.edc.edr.store.index.sql.schema.postgres;
package org.eclipse.edc.jtivalidation.store.sql.schema.postgres;

import org.eclipse.edc.edr.store.index.sql.schema.BaseSqlDialectStatements;
import org.eclipse.edc.jtivalidation.store.sql.schema.BaseSqlDialectStatements;
import org.eclipse.edc.sql.dialect.PostgresDialect;
import org.eclipse.edc.sql.translation.PostgresqlOperatorTranslator;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
#
#

org.eclipse.edc.edr.store.index.SqlJtiValidationStoreExtension
org.eclipse.edc.jtivalidation.store.sql.SqlJtiValidationStoreExtension
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@
*
*/

package org.eclipse.edc.edr.store.index.sql;
package org.eclipse.edc.jtivalidation.store.sql;

import org.eclipse.edc.edr.store.index.SqlJtiValidationStore;
import org.eclipse.edc.edr.store.index.SqlJtiValidationStoreExtension;
import org.eclipse.edc.json.JacksonTypeManager;
import org.eclipse.edc.junit.extensions.DependencyInjectionExtension;
import org.eclipse.edc.jwt.validation.jti.JtiValidationStore;
Expand All @@ -27,7 +25,7 @@
import org.junit.jupiter.api.extension.ExtendWith;

import static org.assertj.core.api.Assertions.assertThat;
import static org.eclipse.edc.edr.store.index.SqlJtiValidationStoreExtension.DATASOURCE_NAME;
import static org.eclipse.edc.jtivalidation.store.sql.SqlJtiValidationStoreExtension.DATASOURCE_NAME;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.mock;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@
*
*/

package org.eclipse.edc.edr.store.index.sql;
package org.eclipse.edc.jtivalidation.store.sql;

import com.fasterxml.jackson.databind.ObjectMapper;
import org.eclipse.edc.edr.store.index.SqlJtiValidationStore;
import org.eclipse.edc.edr.store.index.sql.schema.BaseSqlDialectStatements;
import org.eclipse.edc.edr.store.index.sql.schema.postgres.PostgresDialectStatements;
import org.eclipse.edc.jtivalidation.store.sql.schema.BaseSqlDialectStatements;
import org.eclipse.edc.jtivalidation.store.sql.schema.postgres.PostgresDialectStatements;
import org.eclipse.edc.junit.annotations.ComponentTest;
import org.eclipse.edc.junit.testfixtures.TestUtils;
import org.eclipse.edc.jwt.validation.jti.JtiValidationStore;
Expand Down

0 comments on commit 58f7a07

Please sign in to comment.