update com.windchat.im package name

This commit is contained in:
SAM2O2O 2019-11-27 23:33:33 +08:00
parent 1b15c7fd29
commit e9656176ba
254 changed files with 547 additions and 473 deletions

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.web; package com.windchat.im.web;
import org.springframework.boot.Banner; import org.springframework.boot.Banner;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;

View File

@ -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 { public class WebMessageBean {
private String siteUserId; private String siteUserId;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.web.admin.common; package com.windchat.im.web.admin.common;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.web.admin.common; package com.windchat.im.web.admin.common;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.Date; import java.util.Date;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.web.admin.controller; package com.windchat.im.web.admin.controller;
import java.util.Map; import java.util.Map;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.HashMap;
import java.util.Map; import java.util.Map;
@ -21,6 +21,7 @@ import java.util.Set;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import com.windchat.im.web.admin.service.IConfigService;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.log4j.Level; import org.apache.log4j.Level;
import org.slf4j.Logger; 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.ConfigProto.ConfigKey;
import com.akaxin.proto.core.PluginProto; import com.akaxin.proto.core.PluginProto;
import com.akaxin.site.business.impl.site.SiteConfig; import com.akaxin.site.business.impl.site.SiteConfig;
import com.akaxin.site.web.admin.exception.UserPermissionException; import com.windchat.im.web.admin.exception.UserPermissionException;
import com.akaxin.site.web.admin.service.IConfigService;
import com.google.protobuf.InvalidProtocolBufferException; import com.google.protobuf.InvalidProtocolBufferException;
/** /**

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -23,6 +23,9 @@ import java.util.Map;
import javax.annotation.Resource; import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest; 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.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; 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.GroupProfileBean;
import com.windchat.im.storage.bean.SimpleGroupBean; import com.windchat.im.storage.bean.SimpleGroupBean;
import com.windchat.im.storage.bean.UserProfileBean; 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; import com.google.protobuf.InvalidProtocolBufferException;
/** /**

View File

@ -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.common.utils.GsonUtils;
import com.akaxin.proto.core.PluginProto; import com.akaxin.proto.core.PluginProto;
import com.windchat.im.storage.bean.MonitorBean; import com.windchat.im.storage.bean.MonitorBean;
import com.akaxin.site.web.admin.common.Timeutils; import com.windchat.im.web.admin.common.Timeutils;
import com.akaxin.site.web.admin.exception.UserPermissionException; import com.windchat.im.web.admin.exception.UserPermissionException;
import com.akaxin.site.web.admin.service.IMonitorService; import com.windchat.im.web.admin.service.IMonitorService;
import com.google.protobuf.InvalidProtocolBufferException; import com.google.protobuf.InvalidProtocolBufferException;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -22,6 +22,8 @@ import java.util.Map;
import javax.servlet.http.HttpServletRequest; 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.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; 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.common.utils.StringHelper;
import com.akaxin.proto.core.PluginProto; import com.akaxin.proto.core.PluginProto;
import com.windchat.im.storage.bean.PluginBean; 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; import com.google.protobuf.InvalidProtocolBufferException;
//插件扩展管理 //插件扩展管理

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -22,8 +22,9 @@ import java.util.Map;
import javax.servlet.http.HttpServletRequest; 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.google.protobuf.InvalidProtocolBufferException;
import com.windchat.im.web.admin.service.IUICService;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; 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.proto.core.PluginProto;
import com.akaxin.site.business.impl.site.SiteConfig; import com.akaxin.site.business.impl.site.SiteConfig;
import com.windchat.im.storage.bean.UicBean; import com.windchat.im.storage.bean.UicBean;
import com.akaxin.site.web.admin.service.IUICService;
//邀请码管理 //邀请码管理
@Controller @Controller

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -25,6 +25,10 @@ import java.util.regex.Pattern;
import javax.annotation.Resource; import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
@ -41,10 +45,6 @@ import com.akaxin.proto.core.PluginProto;
import com.akaxin.proto.core.UserProto.UserStatus; import com.akaxin.proto.core.UserProto.UserStatus;
import com.windchat.im.storage.bean.SimpleUserBean; import com.windchat.im.storage.bean.SimpleUserBean;
import com.windchat.im.storage.bean.UserProfileBean; 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; import com.google.protobuf.InvalidProtocolBufferException;
/** /**

View File

@ -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.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -8,6 +8,7 @@ import java.util.Map;
import javax.annotation.Resource; import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import com.windchat.im.web.admin.service.IUserService;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; 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.akaxin.site.business.push.PushNotification;
import com.windchat.im.storage.bean.SimpleUserBean; import com.windchat.im.storage.bean.SimpleUserBean;
import com.windchat.im.storage.bean.UserProfileBean; import com.windchat.im.storage.bean.UserProfileBean;
import com.akaxin.site.web.admin.service.IUserService;
import com.google.protobuf.InvalidProtocolBufferException; import com.google.protobuf.InvalidProtocolBufferException;
/** /**

View File

@ -1,4 +1,4 @@
package com.akaxin.site.web.admin.exception; package com.windchat.im.web.admin.exception;
import com.akaxin.common.utils.StringHelper; import com.akaxin.common.utils.StringHelper;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.web.admin.exception; package com.windchat.im.web.admin.exception;
public class UserPermissionException extends Exception { public class UserPermissionException extends Exception {
/** /**

View File

@ -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.List;
import java.util.Map; import java.util.Map;

View File

@ -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.List;

View File

@ -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;
/** /**
* 后台管理发送消息接口 * 后台管理发送消息接口

View File

@ -1,4 +1,4 @@
package com.akaxin.site.web.admin.service; package com.windchat.im.web.admin.service;
public interface IMonitorService { public interface IMonitorService {
int queryNumRegisterPerDay(long now, int day); int queryNumRegisterPerDay(long now, int day);

View File

@ -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.List;

View File

@ -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.List;

View File

@ -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.List;

View File

@ -13,12 +13,13 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Collection;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.windchat.im.web.admin.service.IConfigService;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; 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.dao.SiteConfigDao;
import com.akaxin.site.business.impl.site.SiteConfig; import com.akaxin.site.business.impl.site.SiteConfig;
import com.akaxin.site.web.admin.service.IConfigService; import com.windchat.im.web.utils.ArraysUtils;
import com.akaxin.site.web.utils.ArraysUtils;
@Service @Service
public class ConfigManageService implements IConfigService { public class ConfigManageService implements IConfigService {

View File

@ -13,11 +13,12 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.List;
import java.util.Set; import java.util.Set;
import com.windchat.im.web.admin.service.IGroupService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.akaxin.site.business.dao.UserGroupDao; 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.GroupMemberBean;
import com.windchat.im.storage.bean.GroupProfileBean; import com.windchat.im.storage.bean.GroupProfileBean;
import com.windchat.im.storage.bean.SimpleGroupBean; import com.windchat.im.storage.bean.SimpleGroupBean;
import com.akaxin.site.web.admin.service.IGroupService;
/** /**
* @author Sam{@link an.guoyue254@gmail.com} * @author Sam{@link an.guoyue254@gmail.com}

View File

@ -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.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service; 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.proto.site.ImCtsMessageProto;
import com.akaxin.site.message.api.IMessageService; import com.akaxin.site.message.api.IMessageService;
import com.akaxin.site.message.service.ImMessageService; import com.akaxin.site.message.service.ImMessageService;
import com.akaxin.site.web.admin.bean.WebMessageBean;
import com.akaxin.site.web.admin.service.IMessageManageService;
/** /**
* 后台管理发送消息实现 * 后台管理发送消息实现

View File

@ -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.business.dao.MonitorDao;
import com.akaxin.site.web.admin.service.IMonitorService; import com.windchat.im.web.admin.service.IMonitorService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@ -13,15 +13,15 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.List;
import com.windchat.im.web.admin.service.IPluginService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.akaxin.site.business.dao.SitePluginDao; import com.akaxin.site.business.dao.SitePluginDao;
import com.windchat.im.storage.bean.PluginBean; import com.windchat.im.storage.bean.PluginBean;
import com.akaxin.site.web.admin.service.IPluginService;
/** /**
* 扩展管理Service * 扩展管理Service

View File

@ -13,10 +13,11 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.List;
import com.windchat.im.web.admin.service.IUICService;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -24,7 +25,6 @@ import org.springframework.stereotype.Service;
import com.akaxin.proto.core.UicProto.UicStatus; import com.akaxin.proto.core.UicProto.UicStatus;
import com.akaxin.site.business.dao.SiteUicDao; import com.akaxin.site.business.dao.SiteUicDao;
import com.windchat.im.storage.bean.UicBean; import com.windchat.im.storage.bean.UicBean;
import com.akaxin.site.web.admin.service.IUICService;
@Service @Service
public class UICManageService implements IUICService { public class UICManageService implements IUICService {

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.io.File;
import java.sql.SQLException; import java.sql.SQLException;
@ -21,6 +21,7 @@ import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Set; import java.util.Set;
import com.windchat.im.web.admin.service.IUserService;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; 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.UserFriendDaoService;
import com.windchat.im.storage.service.UserProfileDaoService; import com.windchat.im.storage.service.UserProfileDaoService;
import com.windchat.im.storage.service.UserSessionDaoService; import com.windchat.im.storage.service.UserSessionDaoService;
import com.akaxin.site.web.admin.service.IUserService;
@Service("userManageService") @Service("userManageService")
public class UserManageService implements IUserService { public class UserManageService implements IUserService {

View File

@ -1,4 +1,4 @@
package com.akaxin.site.web.utils; package com.windchat.im.web.utils;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@ -6,7 +6,7 @@
<artifactId>windchat</artifactId> <artifactId>windchat</artifactId>
<version>0.0.1</version> <version>0.0.1</version>
</parent> </parent>
<groupId>com.akaxin.site</groupId> <groupId>com.windchat.im</groupId>
<artifactId>windchat-boot</artifactId> <artifactId>windchat-boot</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
@ -24,7 +24,7 @@
<version>2.0.2.RELEASE</version> <version>2.0.2.RELEASE</version>
<configuration> <configuration>
<!-- 指定该Main Class为全局的唯一入口 --> <!-- 指定该Main Class为全局的唯一入口 -->
<mainClass>com.akaxin.site.boot.main.Bootstrap</mainClass> <mainClass>com.windchat.im.boot.main.Bootstrap</mainClass>
<layout>ZIP</layout> <layout>ZIP</layout>
<!-- 热部署生效必须加 --> <!-- 热部署生效必须加 -->
<fork>true</fork> <fork>true</fork>
@ -46,7 +46,7 @@
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix> <classpathPrefix>lib/</classpathPrefix>
<mainClass>com.akaxin.site.boot.main.Bootstrap</mainClass> <mainClass>Bootstrap</mainClass>
</manifest> </manifest>
</archive> </archive>
<descriptorRefs> <descriptorRefs>

View File

@ -1,4 +1,4 @@
package com.akaxin.site.boot.config; package com.windchat.im.boot.config;
/** /**
* *

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.boot.config; package com.windchat.im.boot.config;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
@ -22,7 +22,7 @@ import java.util.Properties;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import com.akaxin.proto.core.ConfigProto; import com.akaxin.proto.core.ConfigProto;
import com.akaxin.site.boot.utils.PropertiesUtils; import com.windchat.im.boot.utils.PropertiesUtils;
/** /**
* *

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.boot.config; package com.windchat.im.boot.config;
/** /**
* 站点服务相关配置字段 * 站点服务相关配置字段

View File

@ -1,4 +1,4 @@
package com.akaxin.site.boot.config; package com.windchat.im.boot.config;
import java.util.Map; import java.util.Map;
import java.util.concurrent.Executors; import java.util.concurrent.Executors;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.boot.config; package com.windchat.im.boot.config;
/** /**
* 站点相关的需要设置的默认图片 * 站点相关的需要设置的默认图片

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.boot.main; package com.windchat.im.boot.main;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
@ -21,6 +21,9 @@ import java.io.PrintWriter;
import java.util.Base64; import java.util.Base64;
import java.util.Map; 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.commons.lang3.StringUtils;
import org.apache.log4j.Level; 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.logs.AkxLog4jManager;
import com.akaxin.common.utils.StringHelper; import com.akaxin.common.utils.StringHelper;
import com.akaxin.proto.core.FileProto.FileType; import com.akaxin.proto.core.FileProto.FileType;
import com.akaxin.site.boot.config.AkxProject; import com.windchat.im.boot.config.AkxProject;
import com.akaxin.site.boot.config.ConfigHelper; import com.windchat.im.boot.config.ConfigHelper;
import com.akaxin.site.boot.config.ConfigKey; import com.windchat.im.boot.config.ConfigKey;
import com.akaxin.site.boot.config.ConfigListener; import com.windchat.im.boot.config.ConfigListener;
import com.akaxin.site.boot.config.SiteDefaultIcon; import com.windchat.im.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.akaxin.site.business.utils.FilePathUtils; import com.akaxin.site.business.utils.FilePathUtils;
import com.akaxin.site.business.utils.FileServerUtils; import com.akaxin.site.business.utils.FileServerUtils;
import com.akaxin.site.connector.exception.HttpServerException; import com.windchat.im.connector.exception.HttpServerException;
import com.akaxin.site.connector.exception.TcpServerException; import com.windchat.im.connector.exception.TcpServerException;
import com.akaxin.site.connector.handler.ApiRequestHandler; import com.windchat.im.connector.handler.ApiRequestHandler;
import com.akaxin.site.connector.handler.HttpRequestHandler; import com.windchat.im.connector.handler.HttpRequestHandler;
import com.akaxin.site.connector.handler.ImMessageHandler; import com.windchat.im.connector.handler.ImMessageHandler;
import com.akaxin.site.connector.handler.ImSiteAuthHandler; import com.windchat.im.connector.handler.ImSiteAuthHandler;
import com.akaxin.site.connector.handler.WSRequestHandler; import com.windchat.im.connector.handler.WSRequestHandler;
import com.akaxin.site.connector.http.HttpServer; import com.windchat.im.connector.http.HttpServer;
import com.akaxin.site.connector.netty.NettyServer; import com.windchat.im.connector.netty.NettyServer;
import com.akaxin.site.connector.ws.WsServer; import com.windchat.im.connector.ws.WsServer;
import com.windchat.im.storage.DataSourceManager; import com.windchat.im.storage.DataSourceManager;
import com.windchat.im.storage.dao.config.DBConfig; import com.windchat.im.storage.dao.config.DBConfig;
import com.windchat.im.storage.dao.sqlite.manager.PluginArgs; import com.windchat.im.storage.dao.sqlite.manager.PluginArgs;

View File

@ -1,8 +1,10 @@
package com.akaxin.site.boot.spring; package com.windchat.im.boot.spring;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.UnknownHostException; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; 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.boot.web.servlet.server.ConfigurableServletWebServerFactory;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import com.akaxin.site.boot.config.ConfigHelper;
import com.akaxin.site.boot.config.ConfigKey;
@Component @Component
public class CustomizationWebServerBean implements WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> { public class CustomizationWebServerBean implements WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> {
private static Logger logger = LoggerFactory.getLogger(CustomizationWebServerBean.class); private static Logger logger = LoggerFactory.getLogger(CustomizationWebServerBean.class);

View File

@ -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.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory; import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Banner;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.boot.utils; package com.windchat.im.boot.utils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.boot.utils; package com.windchat.im.boot.utils;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
@ -7,6 +7,8 @@ import java.io.InputStream;
import java.io.InputStreamReader; import java.io.InputStreamReader;
import java.io.PrintWriter; 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.CommandLine;
import org.apache.commons.cli.DefaultParser; import org.apache.commons.cli.DefaultParser;
import org.apache.commons.cli.HelpFormatter; 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.PrintUtils;
import com.akaxin.common.utils.StringHelper; 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.DataSourceManager;
import com.windchat.im.storage.dao.config.DBConfig; import com.windchat.im.storage.dao.config.DBConfig;
import com.windchat.im.storage.dao.config.DBType; import com.windchat.im.storage.dao.config.DBType;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.boot.utils; package com.windchat.im.boot.utils;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.boot.test; package com.windchat.im.boot.test;
import java.util.Base64; import java.util.Base64;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.boot.test; package com.windchat.im.boot.test;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.boot.test; package com.windchat.im.boot.test;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.boot.test; package com.windchat.im.boot.test;
public class TestSystemPro { public class TestSystemPro {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -1,5 +0,0 @@
package com.akaxin.site.business.bean;
public class MsgNoticeBean {
}

View File

@ -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.Command;
import com.akaxin.common.command.CommandResponse; import com.akaxin.common.command.CommandResponse;

View File

@ -0,0 +1,5 @@
package com.windchat.im.business.bean;
public class MsgNoticeBean {
}

View File

@ -1,4 +1,4 @@
package com.akaxin.site.business.bean; package com.windchat.im.business.bean;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.business.cache; package com.windchat.im.business.cache;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.business.constant; package com.windchat.im.business.constant;
public interface AkxProject { public interface AkxProject {

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.constant; package com.windchat.im.business.constant;
public interface GroupConfig { public interface GroupConfig {
int GROUP_MAX_MEMBER_COUNT = 200; int GROUP_MAX_MEMBER_COUNT = 200;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.constant; package com.windchat.im.business.constant;
/** /**
* 通知相关的默认配置文案,{*}表示支持事件点击的位置 * 通知相关的默认配置文案,{*}表示支持事件点击的位置

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;

View File

@ -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.api.*;
import com.windchat.im.storage.service.*; import com.windchat.im.storage.service.*;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.Map; import java.util.Map;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.List; import java.util.List;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.List; import java.util.List;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.util.List; import java.util.List;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.List; import java.util.List;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.ArrayList; import java.util.ArrayList;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.ArrayList; import java.util.ArrayList;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.List; import java.util.List;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.dao; package com.windchat.im.business.dao;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.ArrayList; import java.util.ArrayList;

View File

@ -13,12 +13,14 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.impl; package com.windchat.im.business.impl;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import com.akaxin.site.business.dao.UserGroupDao; import com.akaxin.site.business.dao.UserGroupDao;
import com.akaxin.site.business.dao.UserProfileDao; 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.GroupProfileBean;
import com.windchat.im.storage.bean.SimpleUserBean; import com.windchat.im.storage.bean.SimpleUserBean;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;

View File

@ -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.Command;
import com.akaxin.common.command.CommandResponse; import com.akaxin.common.command.CommandResponse;

View File

@ -13,10 +13,13 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.impl.hai; package com.windchat.im.business.impl.hai;
import java.util.List; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,10 +13,13 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.impl.hai; package com.windchat.im.business.impl.hai;
import java.util.List; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,8 +13,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,10 +13,12 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.impl.hai; package com.windchat.im.business.impl.hai;
import java.util.List; 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.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,10 +13,12 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.impl.hai; package com.windchat.im.business.impl.hai;
import java.util.Base64; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,10 +13,11 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.impl.hai; package com.windchat.im.business.impl.hai;
import java.util.Map; import java.util.Map;
import com.windchat.im.business.impl.AbstractRequest;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,10 +13,15 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.impl.hai; package com.windchat.im.business.impl.hai;
import java.util.List; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,10 +13,12 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.impl.notice; package com.windchat.im.business.impl.notice;
import java.util.List; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,8 +13,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,8 +13,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Arrays;
import java.util.HashSet; import java.util.HashSet;
@ -21,6 +21,8 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Set; 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.StringUtils;
import org.apache.commons.lang3.math.NumberUtils; import org.apache.commons.lang3.math.NumberUtils;
import org.slf4j.Logger; import org.slf4j.Logger;

View File

@ -13,8 +13,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,10 +13,12 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.List;
import com.windchat.im.business.dao.UserDeviceDao;
import com.windchat.im.business.impl.AbstractRequest;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,8 +13,10 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,10 +13,13 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,11 +13,16 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.List;
import java.util.UUID; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,13 +13,16 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Base64;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
//import org.apache.commons.codec.binary.Base64; //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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,8 +13,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.PublicKey;
import java.security.Signature; import java.security.Signature;
@ -22,6 +22,9 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.UUID; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,11 +13,14 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Matcher;
import java.util.regex.Pattern; 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,8 +13,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.business.push; package com.windchat.im.business.push;
import java.util.List; import java.util.List;

View File

@ -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 org.apache.commons.lang3.StringUtils;
import com.akaxin.common.utils.StringHelper; import com.akaxin.common.utils.StringHelper;

View File

@ -13,8 +13,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.service; package com.windchat.im.business.service;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,8 +13,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * 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.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.utils; package com.windchat.im.business.utils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.utils; package com.windchat.im.business.utils;
import java.io.BufferedInputStream; import java.io.BufferedInputStream;
import java.io.BufferedOutputStream; import java.io.BufferedOutputStream;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.akaxin.site.business.utils; package com.windchat.im.business.utils;
/** /**
* byte数组与字符串之间转换 * byte数组与字符串之间转换

View File

@ -1,4 +1,4 @@
package com.akaxin.site.business.utils; package com.windchat.im.business.utils;
import java.security.NoSuchAlgorithmException; import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom; import java.security.SecureRandom;

View File

@ -1,4 +1,4 @@
package com.akaxin.site.business.test; package com.windchat.im.business.test;
import java.io.IOException; import java.io.IOException;

Some files were not shown because too many files have changed in this diff Show More