Browse Source

update:包名

yonge 5 years ago
parent
commit
5184914251

+ 6 - 0
mec-thirdparty/src/main/java/com/ym/mec/thirdparty/eseal/ESealPlugin.java

@@ -0,0 +1,6 @@
+package com.ym.mec.thirdparty.eseal;
+
+public interface ESealPlugin {
+
+	
+}

+ 3 - 3
mec-thirdparty/src/main/java/com/ym/mec/thirdparty/message/MessageSenderPluginContext.java

@@ -11,9 +11,9 @@ import org.springframework.context.ApplicationContextAware;
 import org.springframework.stereotype.Component;
 
 import com.ym.mec.thirdparty.exception.ThirdpartyException;
-import com.ym.mec.thirdparty.message.vendors.JiguangPushPlugin;
-import com.ym.mec.thirdparty.message.vendors.MOxintongSMSPlugin;
-import com.ym.mec.thirdparty.message.vendors.ShiyuanSMSPlugin;
+import com.ym.mec.thirdparty.message.provider.JiguangPushPlugin;
+import com.ym.mec.thirdparty.message.provider.MOxintongSMSPlugin;
+import com.ym.mec.thirdparty.message.provider.ShiyuanSMSPlugin;
 
 @Component
 public class MessageSenderPluginContext implements ApplicationContextAware {

+ 1 - 1
mec-thirdparty/src/main/java/com/ym/mec/thirdparty/message/vendors/JiguangPushPlugin.java → mec-thirdparty/src/main/java/com/ym/mec/thirdparty/message/provider/JiguangPushPlugin.java

@@ -1,4 +1,4 @@
-package com.ym.mec.thirdparty.message.vendors;
+package com.ym.mec.thirdparty.message.provider;
 
 import java.io.IOException;
 import java.util.HashMap;

+ 1 - 1
mec-thirdparty/src/main/java/com/ym/mec/thirdparty/message/vendors/MOxintongSMSPlugin.java → mec-thirdparty/src/main/java/com/ym/mec/thirdparty/message/provider/MOxintongSMSPlugin.java

@@ -1,4 +1,4 @@
-package com.ym.mec.thirdparty.message.vendors;
+package com.ym.mec.thirdparty.message.provider;
 
 import java.io.IOException;
 import java.util.HashMap;

+ 1 - 1
mec-thirdparty/src/main/java/com/ym/mec/thirdparty/message/vendors/ShiyuanSMSPlugin.java → mec-thirdparty/src/main/java/com/ym/mec/thirdparty/message/provider/ShiyuanSMSPlugin.java

@@ -1,4 +1,4 @@
-package com.ym.mec.thirdparty.message.vendors;
+package com.ym.mec.thirdparty.message.provider;
 
 import java.io.IOException;
 import java.util.HashMap;

+ 1 - 1
mec-thirdparty/src/main/java/com/ym/mec/thirdparty/storage/StoragePluginContext.java

@@ -14,7 +14,7 @@ import org.springframework.context.ApplicationContextAware;
 import org.springframework.stereotype.Component;
 
 import com.ym.mec.thirdparty.exception.ThirdpartyException;
-import com.ym.mec.thirdparty.storage.vendors.AliyunOssStoragePlugin;
+import com.ym.mec.thirdparty.storage.provider.AliyunOssStoragePlugin;
 
 @Component
 public class StoragePluginContext implements ApplicationContextAware, InitializingBean {

+ 1 - 1
mec-thirdparty/src/main/java/com/ym/mec/thirdparty/storage/vendors/AliyunOssStoragePlugin.java → mec-thirdparty/src/main/java/com/ym/mec/thirdparty/storage/provider/AliyunOssStoragePlugin.java

@@ -1,4 +1,4 @@
-package com.ym.mec.thirdparty.storage.vendors;
+package com.ym.mec.thirdparty.storage.provider;
 
 import java.io.File;
 import java.io.IOException;