You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by du...@apache.org on 2023/04/18 13:02:09 UTC

[shardingsphere] branch master updated: fix encrypt example (#25215)

This is an automated email from the ASF dual-hosted git repository.

duanzhengqiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new 9c4a997efcd fix encrypt example (#25215)
9c4a997efcd is described below

commit 9c4a997efcdfdf90bd38996a72920d5f569c67e3
Author: Guocheng Tang <to...@apache.org>
AuthorDate: Tue Apr 18 21:02:01 2023 +0800

    fix encrypt example (#25215)
---
 .../jdbc/java/TestQueryAssistedShardingEncryptAlgorithm.ftl         | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/shardingsphere-example-generator/src/main/resources/template/jdbc/java/TestQueryAssistedShardingEncryptAlgorithm.ftl b/examples/shardingsphere-example-generator/src/main/resources/template/jdbc/java/TestQueryAssistedShardingEncryptAlgorithm.ftl
index f9c6ebd9cae..59ff2eae00c 100644
--- a/examples/shardingsphere-example-generator/src/main/resources/template/jdbc/java/TestQueryAssistedShardingEncryptAlgorithm.ftl
+++ b/examples/shardingsphere-example-generator/src/main/resources/template/jdbc/java/TestQueryAssistedShardingEncryptAlgorithm.ftl
@@ -20,12 +20,12 @@ package org.apache.shardingsphere.example.${package}.${framework?replace('-', '.
 
 import lombok.Getter;
 import lombok.Setter;
-import org.apache.shardingsphere.encrypt.api.encrypt.standard.StandardEncryptAlgorithm;
-import org.apache.shardingsphere.encrypt.spi.context.EncryptContext;
+import org.apache.shardingsphere.encrypt.spi.EncryptAlgorithm;
+import org.apache.shardingsphere.encrypt.api.context.EncryptContext;
 
 import java.util.Properties;
 
-public final class TestQueryAssistedShardingEncryptAlgorithm implements StandardEncryptAlgorithm<Object, String> {
+public final class TestQueryAssistedShardingEncryptAlgorithm implements EncryptAlgorithm<Object, String> {
     
     @Getter
     private Properties props;