update com.windchat.im package name
This commit is contained in:
parent
1b15c7fd29
commit
e9656176ba
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web;
|
||||
package com.windchat.im.web;
|
||||
|
||||
import org.springframework.boot.Banner;
|
||||
import org.springframework.boot.SpringApplication;
|
@ -1,6 +1,7 @@
|
||||
package com.akaxin.site.web.admin.bean;
|
||||
package com.windchat.im.web.admin.bean;
|
||||
|
||||
import com.akaxin.common.utils.GsonUtils;
|
||||
|
||||
import com.windchat.common.utils.GsonUtils;
|
||||
|
||||
public class WebMessageBean {
|
||||
private String siteUserId;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.common;
|
||||
package com.windchat.im.web.admin.common;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.common;
|
||||
package com.windchat.im.web.admin.common;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import java.util.Map;
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
@ -21,6 +21,7 @@ import java.util.Set;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import com.windchat.im.web.admin.service.IConfigService;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.log4j.Level;
|
||||
import org.slf4j.Logger;
|
||||
@ -39,8 +40,7 @@ import com.akaxin.proto.core.ConfigProto;
|
||||
import com.akaxin.proto.core.ConfigProto.ConfigKey;
|
||||
import com.akaxin.proto.core.PluginProto;
|
||||
import com.akaxin.site.business.impl.site.SiteConfig;
|
||||
import com.akaxin.site.web.admin.exception.UserPermissionException;
|
||||
import com.akaxin.site.web.admin.service.IConfigService;
|
||||
import com.windchat.im.web.admin.exception.UserPermissionException;
|
||||
import com.google.protobuf.InvalidProtocolBufferException;
|
||||
|
||||
/**
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -23,6 +23,9 @@ import java.util.Map;
|
||||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import com.windchat.im.web.admin.exception.UserPermissionException;
|
||||
import com.windchat.im.web.admin.service.IConfigService;
|
||||
import com.windchat.im.web.admin.service.IGroupService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@ -40,9 +43,6 @@ import com.windchat.im.storage.bean.GroupMemberBean;
|
||||
import com.windchat.im.storage.bean.GroupProfileBean;
|
||||
import com.windchat.im.storage.bean.SimpleGroupBean;
|
||||
import com.windchat.im.storage.bean.UserProfileBean;
|
||||
import com.akaxin.site.web.admin.exception.UserPermissionException;
|
||||
import com.akaxin.site.web.admin.service.IConfigService;
|
||||
import com.akaxin.site.web.admin.service.IGroupService;
|
||||
import com.google.protobuf.InvalidProtocolBufferException;
|
||||
|
||||
/**
|
@ -1,11 +1,11 @@
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import com.akaxin.common.utils.GsonUtils;
|
||||
import com.akaxin.proto.core.PluginProto;
|
||||
import com.windchat.im.storage.bean.MonitorBean;
|
||||
import com.akaxin.site.web.admin.common.Timeutils;
|
||||
import com.akaxin.site.web.admin.exception.UserPermissionException;
|
||||
import com.akaxin.site.web.admin.service.IMonitorService;
|
||||
import com.windchat.im.web.admin.common.Timeutils;
|
||||
import com.windchat.im.web.admin.exception.UserPermissionException;
|
||||
import com.windchat.im.web.admin.service.IMonitorService;
|
||||
import com.google.protobuf.InvalidProtocolBufferException;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -22,6 +22,8 @@ import java.util.Map;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import com.windchat.im.web.admin.exception.UserPermissionException;
|
||||
import com.windchat.im.web.admin.service.IPluginService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@ -35,8 +37,6 @@ import org.springframework.web.servlet.ModelAndView;
|
||||
import com.akaxin.common.utils.StringHelper;
|
||||
import com.akaxin.proto.core.PluginProto;
|
||||
import com.windchat.im.storage.bean.PluginBean;
|
||||
import com.akaxin.site.web.admin.exception.UserPermissionException;
|
||||
import com.akaxin.site.web.admin.service.IPluginService;
|
||||
import com.google.protobuf.InvalidProtocolBufferException;
|
||||
|
||||
//插件扩展管理
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -22,8 +22,9 @@ import java.util.Map;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import com.akaxin.site.web.admin.exception.UserPermissionException;
|
||||
import com.windchat.im.web.admin.exception.UserPermissionException;
|
||||
import com.google.protobuf.InvalidProtocolBufferException;
|
||||
import com.windchat.im.web.admin.service.IUICService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@ -38,7 +39,6 @@ import com.akaxin.common.utils.GsonUtils;
|
||||
import com.akaxin.proto.core.PluginProto;
|
||||
import com.akaxin.site.business.impl.site.SiteConfig;
|
||||
import com.windchat.im.storage.bean.UicBean;
|
||||
import com.akaxin.site.web.admin.service.IUICService;
|
||||
|
||||
//邀请码管理
|
||||
@Controller
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -25,6 +25,10 @@ import java.util.regex.Pattern;
|
||||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import com.windchat.im.web.admin.exception.ManagerException;
|
||||
import com.windchat.im.web.admin.exception.UserPermissionException;
|
||||
import com.windchat.im.web.admin.service.IConfigService;
|
||||
import com.windchat.im.web.admin.service.IUserService;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@ -41,10 +45,6 @@ import com.akaxin.proto.core.PluginProto;
|
||||
import com.akaxin.proto.core.UserProto.UserStatus;
|
||||
import com.windchat.im.storage.bean.SimpleUserBean;
|
||||
import com.windchat.im.storage.bean.UserProfileBean;
|
||||
import com.akaxin.site.web.admin.exception.ManagerException;
|
||||
import com.akaxin.site.web.admin.exception.UserPermissionException;
|
||||
import com.akaxin.site.web.admin.service.IConfigService;
|
||||
import com.akaxin.site.web.admin.service.IUserService;
|
||||
import com.google.protobuf.InvalidProtocolBufferException;
|
||||
|
||||
/**
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.controller;
|
||||
package com.windchat.im.web.admin.controller;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -8,6 +8,7 @@ import java.util.Map;
|
||||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import com.windchat.im.web.admin.service.IUserService;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@ -26,7 +27,6 @@ import com.akaxin.site.business.impl.notice.User2Notice;
|
||||
import com.akaxin.site.business.push.PushNotification;
|
||||
import com.windchat.im.storage.bean.SimpleUserBean;
|
||||
import com.windchat.im.storage.bean.UserProfileBean;
|
||||
import com.akaxin.site.web.admin.service.IUserService;
|
||||
import com.google.protobuf.InvalidProtocolBufferException;
|
||||
|
||||
/**
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.exception;
|
||||
package com.windchat.im.web.admin.exception;
|
||||
|
||||
import com.akaxin.common.utils.StringHelper;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.exception;
|
||||
package com.windchat.im.web.admin.exception;
|
||||
|
||||
public class UserPermissionException extends Exception {
|
||||
/**
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.service;
|
||||
package com.windchat.im.web.admin.service;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.service;
|
||||
package com.windchat.im.web.admin.service;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.akaxin.site.web.admin.service;
|
||||
package com.windchat.im.web.admin.service;
|
||||
|
||||
import com.akaxin.site.web.admin.bean.WebMessageBean;
|
||||
import com.windchat.im.web.admin.bean.WebMessageBean;
|
||||
|
||||
/**
|
||||
* 后台管理发送消息接口
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.service;
|
||||
package com.windchat.im.web.admin.service;
|
||||
|
||||
public interface IMonitorService {
|
||||
int queryNumRegisterPerDay(long now, int day);
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.service;
|
||||
package com.windchat.im.web.admin.service;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.service;
|
||||
package com.windchat.im.web.admin.service;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.admin.service;
|
||||
package com.windchat.im.web.admin.service;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -13,12 +13,13 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.service.impl;
|
||||
package com.windchat.im.web.admin.service.impl;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.windchat.im.web.admin.service.IConfigService;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@ -26,8 +27,7 @@ import org.springframework.stereotype.Service;
|
||||
|
||||
import com.akaxin.site.business.dao.SiteConfigDao;
|
||||
import com.akaxin.site.business.impl.site.SiteConfig;
|
||||
import com.akaxin.site.web.admin.service.IConfigService;
|
||||
import com.akaxin.site.web.utils.ArraysUtils;
|
||||
import com.windchat.im.web.utils.ArraysUtils;
|
||||
|
||||
@Service
|
||||
public class ConfigManageService implements IConfigService {
|
@ -13,11 +13,12 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.service.impl;
|
||||
package com.windchat.im.web.admin.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import com.windchat.im.web.admin.service.IGroupService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.akaxin.site.business.dao.UserGroupDao;
|
||||
@ -25,7 +26,6 @@ import com.akaxin.site.business.impl.site.SiteConfig;
|
||||
import com.windchat.im.storage.bean.GroupMemberBean;
|
||||
import com.windchat.im.storage.bean.GroupProfileBean;
|
||||
import com.windchat.im.storage.bean.SimpleGroupBean;
|
||||
import com.akaxin.site.web.admin.service.IGroupService;
|
||||
|
||||
/**
|
||||
* @author Sam{@link an.guoyue254@gmail.com}
|
@ -1,5 +1,7 @@
|
||||
package com.akaxin.site.web.admin.service.impl;
|
||||
package com.windchat.im.web.admin.service.impl;
|
||||
|
||||
import com.windchat.im.web.admin.bean.WebMessageBean;
|
||||
import com.windchat.im.web.admin.service.IMessageManageService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
@ -11,8 +13,6 @@ import com.akaxin.proto.core.CoreProto.MsgType;
|
||||
import com.akaxin.proto.site.ImCtsMessageProto;
|
||||
import com.akaxin.site.message.api.IMessageService;
|
||||
import com.akaxin.site.message.service.ImMessageService;
|
||||
import com.akaxin.site.web.admin.bean.WebMessageBean;
|
||||
import com.akaxin.site.web.admin.service.IMessageManageService;
|
||||
|
||||
/**
|
||||
* 后台管理发送消息实现
|
@ -1,7 +1,7 @@
|
||||
package com.akaxin.site.web.admin.service.impl;
|
||||
package com.windchat.im.web.admin.service.impl;
|
||||
|
||||
import com.akaxin.site.business.dao.MonitorDao;
|
||||
import com.akaxin.site.web.admin.service.IMonitorService;
|
||||
import com.windchat.im.web.admin.service.IMonitorService;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
@ -13,15 +13,15 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.service.impl;
|
||||
package com.windchat.im.web.admin.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.web.admin.service.IPluginService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.akaxin.site.business.dao.SitePluginDao;
|
||||
import com.windchat.im.storage.bean.PluginBean;
|
||||
import com.akaxin.site.web.admin.service.IPluginService;
|
||||
|
||||
/**
|
||||
* 扩展管理Service
|
@ -13,10 +13,11 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.service.impl;
|
||||
package com.windchat.im.web.admin.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.web.admin.service.IUICService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
@ -24,7 +25,6 @@ import org.springframework.stereotype.Service;
|
||||
import com.akaxin.proto.core.UicProto.UicStatus;
|
||||
import com.akaxin.site.business.dao.SiteUicDao;
|
||||
import com.windchat.im.storage.bean.UicBean;
|
||||
import com.akaxin.site.web.admin.service.IUICService;
|
||||
|
||||
@Service
|
||||
public class UICManageService implements IUICService {
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.web.admin.service.impl;
|
||||
package com.windchat.im.web.admin.service.impl;
|
||||
|
||||
import java.io.File;
|
||||
import java.sql.SQLException;
|
||||
@ -21,6 +21,7 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import com.windchat.im.web.admin.service.IUserService;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@ -46,7 +47,6 @@ import com.windchat.im.storage.service.MessageDaoService;
|
||||
import com.windchat.im.storage.service.UserFriendDaoService;
|
||||
import com.windchat.im.storage.service.UserProfileDaoService;
|
||||
import com.windchat.im.storage.service.UserSessionDaoService;
|
||||
import com.akaxin.site.web.admin.service.IUserService;
|
||||
|
||||
@Service("userManageService")
|
||||
public class UserManageService implements IUserService {
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.web.utils;
|
||||
package com.windchat.im.web.utils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -6,7 +6,7 @@
|
||||
<artifactId>windchat</artifactId>
|
||||
<version>0.0.1</version>
|
||||
</parent>
|
||||
<groupId>com.akaxin.site</groupId>
|
||||
<groupId>com.windchat.im</groupId>
|
||||
<artifactId>windchat-boot</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
<version>2.0.2.RELEASE</version>
|
||||
<configuration>
|
||||
<!-- 指定该Main Class为全局的唯一入口 -->
|
||||
<mainClass>com.akaxin.site.boot.main.Bootstrap</mainClass>
|
||||
<mainClass>com.windchat.im.boot.main.Bootstrap</mainClass>
|
||||
<layout>ZIP</layout>
|
||||
<!-- 热部署生效必须加 -->
|
||||
<fork>true</fork>
|
||||
@ -46,7 +46,7 @@
|
||||
<manifest>
|
||||
<addClasspath>true</addClasspath>
|
||||
<classpathPrefix>lib/</classpathPrefix>
|
||||
<mainClass>com.akaxin.site.boot.main.Bootstrap</mainClass>
|
||||
<mainClass>Bootstrap</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
<descriptorRefs>
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.config;
|
||||
package com.windchat.im.boot.config;
|
||||
|
||||
/**
|
||||
*
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.boot.config;
|
||||
package com.windchat.im.boot.config;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
@ -22,7 +22,7 @@ import java.util.Properties;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import com.akaxin.proto.core.ConfigProto;
|
||||
import com.akaxin.site.boot.utils.PropertiesUtils;
|
||||
import com.windchat.im.boot.utils.PropertiesUtils;
|
||||
|
||||
/**
|
||||
*
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.boot.config;
|
||||
package com.windchat.im.boot.config;
|
||||
|
||||
/**
|
||||
* 站点服务,相关配置字段
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.config;
|
||||
package com.windchat.im.boot.config;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.Executors;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.boot.config;
|
||||
package com.windchat.im.boot.config;
|
||||
|
||||
/**
|
||||
* 站点相关的需要设置的默认图片
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.boot.main;
|
||||
package com.windchat.im.boot.main;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
@ -21,6 +21,9 @@ import java.io.PrintWriter;
|
||||
import java.util.Base64;
|
||||
import java.util.Map;
|
||||
|
||||
import com.windchat.im.boot.spring.OpenzalySpringBoot;
|
||||
import com.windchat.im.boot.utils.BootLog;
|
||||
import com.windchat.im.boot.utils.Helper;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.log4j.Level;
|
||||
|
||||
@ -32,26 +35,23 @@ import com.akaxin.common.executor.AbstracteExecutor;
|
||||
import com.akaxin.common.logs.AkxLog4jManager;
|
||||
import com.akaxin.common.utils.StringHelper;
|
||||
import com.akaxin.proto.core.FileProto.FileType;
|
||||
import com.akaxin.site.boot.config.AkxProject;
|
||||
import com.akaxin.site.boot.config.ConfigHelper;
|
||||
import com.akaxin.site.boot.config.ConfigKey;
|
||||
import com.akaxin.site.boot.config.ConfigListener;
|
||||
import com.akaxin.site.boot.config.SiteDefaultIcon;
|
||||
import com.akaxin.site.boot.spring.OpenzalySpringBoot;
|
||||
import com.akaxin.site.boot.utils.BootLog;
|
||||
import com.akaxin.site.boot.utils.Helper;
|
||||
import com.windchat.im.boot.config.AkxProject;
|
||||
import com.windchat.im.boot.config.ConfigHelper;
|
||||
import com.windchat.im.boot.config.ConfigKey;
|
||||
import com.windchat.im.boot.config.ConfigListener;
|
||||
import com.windchat.im.boot.config.SiteDefaultIcon;
|
||||
import com.akaxin.site.business.utils.FilePathUtils;
|
||||
import com.akaxin.site.business.utils.FileServerUtils;
|
||||
import com.akaxin.site.connector.exception.HttpServerException;
|
||||
import com.akaxin.site.connector.exception.TcpServerException;
|
||||
import com.akaxin.site.connector.handler.ApiRequestHandler;
|
||||
import com.akaxin.site.connector.handler.HttpRequestHandler;
|
||||
import com.akaxin.site.connector.handler.ImMessageHandler;
|
||||
import com.akaxin.site.connector.handler.ImSiteAuthHandler;
|
||||
import com.akaxin.site.connector.handler.WSRequestHandler;
|
||||
import com.akaxin.site.connector.http.HttpServer;
|
||||
import com.akaxin.site.connector.netty.NettyServer;
|
||||
import com.akaxin.site.connector.ws.WsServer;
|
||||
import com.windchat.im.connector.exception.HttpServerException;
|
||||
import com.windchat.im.connector.exception.TcpServerException;
|
||||
import com.windchat.im.connector.handler.ApiRequestHandler;
|
||||
import com.windchat.im.connector.handler.HttpRequestHandler;
|
||||
import com.windchat.im.connector.handler.ImMessageHandler;
|
||||
import com.windchat.im.connector.handler.ImSiteAuthHandler;
|
||||
import com.windchat.im.connector.handler.WSRequestHandler;
|
||||
import com.windchat.im.connector.http.HttpServer;
|
||||
import com.windchat.im.connector.netty.NettyServer;
|
||||
import com.windchat.im.connector.ws.WsServer;
|
||||
import com.windchat.im.storage.DataSourceManager;
|
||||
import com.windchat.im.storage.dao.config.DBConfig;
|
||||
import com.windchat.im.storage.dao.sqlite.manager.PluginArgs;
|
@ -1,8 +1,10 @@
|
||||
package com.akaxin.site.boot.spring;
|
||||
package com.windchat.im.boot.spring;
|
||||
|
||||
import java.net.InetAddress;
|
||||
import java.net.UnknownHostException;
|
||||
|
||||
import com.windchat.im.boot.config.ConfigHelper;
|
||||
import com.windchat.im.boot.config.ConfigKey;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@ -10,9 +12,6 @@ import org.springframework.boot.web.server.WebServerFactoryCustomizer;
|
||||
import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import com.akaxin.site.boot.config.ConfigHelper;
|
||||
import com.akaxin.site.boot.config.ConfigKey;
|
||||
|
||||
@Component
|
||||
public class CustomizationWebServerBean implements WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> {
|
||||
private static Logger logger = LoggerFactory.getLogger(CustomizationWebServerBean.class);
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.spring;
|
||||
package com.windchat.im.boot.spring;
|
||||
|
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.boot.spring;
|
||||
package com.windchat.im.boot.spring;
|
||||
|
||||
import org.springframework.boot.Banner;
|
||||
import org.springframework.boot.SpringApplication;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.utils;
|
||||
package com.windchat.im.boot.utils;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.utils;
|
||||
package com.windchat.im.boot.utils;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileNotFoundException;
|
||||
@ -7,6 +7,8 @@ import java.io.InputStream;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.PrintWriter;
|
||||
|
||||
import com.windchat.im.boot.config.ConfigHelper;
|
||||
import com.windchat.im.boot.config.ConfigKey;
|
||||
import org.apache.commons.cli.CommandLine;
|
||||
import org.apache.commons.cli.DefaultParser;
|
||||
import org.apache.commons.cli.HelpFormatter;
|
||||
@ -17,8 +19,6 @@ import org.slf4j.LoggerFactory;
|
||||
|
||||
import com.akaxin.common.utils.PrintUtils;
|
||||
import com.akaxin.common.utils.StringHelper;
|
||||
import com.akaxin.site.boot.config.ConfigHelper;
|
||||
import com.akaxin.site.boot.config.ConfigKey;
|
||||
import com.windchat.im.storage.DataSourceManager;
|
||||
import com.windchat.im.storage.dao.config.DBConfig;
|
||||
import com.windchat.im.storage.dao.config.DBType;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.boot.utils;
|
||||
package com.windchat.im.boot.utils;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.test;
|
||||
package com.windchat.im.boot.test;
|
||||
|
||||
import java.util.Base64;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.test;
|
||||
package com.windchat.im.boot.test;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.test;
|
||||
package com.windchat.im.boot.test;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.boot.test;
|
||||
package com.windchat.im.boot.test;
|
||||
|
||||
public class TestSystemPro {
|
||||
public static void main(String[] args) {
|
@ -1,5 +0,0 @@
|
||||
package com.akaxin.site.business.bean;
|
||||
|
||||
public class MsgNoticeBean {
|
||||
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.api;
|
||||
package com.windchat.im.business.api;
|
||||
|
||||
import com.akaxin.common.command.Command;
|
||||
import com.akaxin.common.command.CommandResponse;
|
@ -0,0 +1,5 @@
|
||||
package com.windchat.im.business.bean;
|
||||
|
||||
public class MsgNoticeBean {
|
||||
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.bean;
|
||||
package com.windchat.im.business.bean;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.cache;
|
||||
package com.windchat.im.business.cache;
|
||||
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.constant;
|
||||
package com.windchat.im.business.constant;
|
||||
|
||||
public interface AkxProject {
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.constant;
|
||||
package com.windchat.im.business.constant;
|
||||
|
||||
public interface GroupConfig {
|
||||
int GROUP_MAX_MEMBER_COUNT = 200;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.constant;
|
||||
package com.windchat.im.business.constant;
|
||||
|
||||
/**
|
||||
* 通知相关的默认配置文案,{*}表示支持事件点击的位置
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import com.windchat.im.storage.api.*;
|
||||
import com.windchat.im.storage.service.*;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.Map;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.List;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.List;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.List;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.dao;
|
||||
package com.windchat.im.business.dao;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
@ -13,12 +13,14 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl;
|
||||
package com.windchat.im.business.impl;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
import com.akaxin.site.business.dao.UserGroupDao;
|
||||
import com.akaxin.site.business.dao.UserProfileDao;
|
||||
import com.windchat.im.business.dao.UserGroupDao;
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import com.windchat.im.storage.bean.GroupProfileBean;
|
||||
import com.windchat.im.storage.bean.SimpleUserBean;
|
||||
import org.apache.commons.lang3.StringUtils;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.impl;
|
||||
package com.windchat.im.business.impl;
|
||||
|
||||
import com.akaxin.common.command.Command;
|
||||
import com.akaxin.common.command.CommandResponse;
|
@ -13,10 +13,13 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.hai;
|
||||
package com.windchat.im.business.impl.hai;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.business.dao.UserFriendDao;
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,10 +13,13 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.hai;
|
||||
package com.windchat.im.business.impl.hai;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.business.constant.GroupConfig;
|
||||
import com.windchat.im.business.dao.UserGroupDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,8 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.hai;
|
||||
package com.windchat.im.business.impl.hai;
|
||||
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -13,10 +13,12 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.hai;
|
||||
package com.windchat.im.business.impl.hai;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.business.dao.SiteUserDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -13,10 +13,12 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.hai;
|
||||
package com.windchat.im.business.impl.hai;
|
||||
|
||||
import java.util.Base64;
|
||||
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,10 +13,11 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.hai;
|
||||
package com.windchat.im.business.impl.hai;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -13,10 +13,15 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.hai;
|
||||
package com.windchat.im.business.impl.hai;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.business.dao.UserFriendDao;
|
||||
import com.windchat.im.business.dao.UserGroupDao;
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import com.windchat.im.business.utils.FilePathUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,10 +13,12 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.notice;
|
||||
package com.windchat.im.business.impl.notice;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.business.constant.NoticeText;
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,8 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.notice;
|
||||
package com.windchat.im.business.impl.notice;
|
||||
|
||||
import com.windchat.im.business.constant.NoticeText;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,8 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.site;
|
||||
package com.windchat.im.business.impl.site;
|
||||
|
||||
import com.windchat.im.business.bean.PlatformPhoneBean;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.site;
|
||||
package com.windchat.im.business.impl.site;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.HashSet;
|
||||
@ -21,6 +21,8 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import com.windchat.im.business.constant.GroupConfig;
|
||||
import com.windchat.im.business.dao.SiteConfigDao;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.lang3.math.NumberUtils;
|
||||
import org.slf4j.Logger;
|
@ -13,8 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.site;
|
||||
package com.windchat.im.business.impl.site;
|
||||
|
||||
import com.windchat.im.business.dao.SiteUicDao;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,10 +13,12 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.business.dao.UserDeviceDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,8 +13,10 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import com.windchat.im.business.utils.FilePathUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,10 +13,13 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.windchat.im.business.dao.UserFriendDao;
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,11 +13,16 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import com.windchat.im.business.constant.GroupConfig;
|
||||
import com.windchat.im.business.dao.ExpireTokenDao;
|
||||
import com.windchat.im.business.dao.UserGroupDao;
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,13 +13,16 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import java.util.Base64;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
//import org.apache.commons.codec.binary.Base64;
|
||||
import com.windchat.im.business.dao.SitePluginDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import com.windchat.im.business.impl.site.SiteConfig;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,8 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import java.security.PublicKey;
|
||||
import java.security.Signature;
|
||||
@ -22,6 +22,9 @@ import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
import com.windchat.im.business.bean.PlatformPhoneBean;
|
||||
import com.windchat.im.business.dao.*;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,11 +13,14 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import com.windchat.im.business.dao.UserFriendDao;
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,8 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.impl.tai;
|
||||
package com.windchat.im.business.impl.tai;
|
||||
|
||||
import com.windchat.im.business.impl.AbstractRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.push;
|
||||
package com.windchat.im.business.push;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -1,5 +1,7 @@
|
||||
package com.akaxin.site.business.push;
|
||||
package com.windchat.im.business.push;
|
||||
|
||||
import com.windchat.im.business.dao.UserProfileDao;
|
||||
import com.windchat.im.business.impl.site.SiteConfig;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import com.akaxin.common.utils.StringHelper;
|
@ -13,8 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.service;
|
||||
package com.windchat.im.business.service;
|
||||
|
||||
import com.windchat.im.business.api.IRequest;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.service;
|
||||
package com.windchat.im.business.service;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
@ -13,8 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.service;
|
||||
package com.windchat.im.business.service;
|
||||
|
||||
import com.windchat.im.business.api.IRequest;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.utils;
|
||||
package com.windchat.im.business.utils;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.utils;
|
||||
package com.windchat.im.business.utils;
|
||||
|
||||
import java.io.BufferedInputStream;
|
||||
import java.io.BufferedOutputStream;
|
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.akaxin.site.business.utils;
|
||||
package com.windchat.im.business.utils;
|
||||
|
||||
/**
|
||||
* byte数组与字符串之间转换
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.utils;
|
||||
package com.windchat.im.business.utils;
|
||||
|
||||
import java.security.NoSuchAlgorithmException;
|
||||
import java.security.SecureRandom;
|
@ -1,4 +1,4 @@
|
||||
package com.akaxin.site.business.test;
|
||||
package com.windchat.im.business.test;
|
||||
|
||||
import java.io.IOException;
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user