org.maxkey -> org.dromara.maxkey
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim;
|
||||
package org.dromara.maxkey.web.apis.identity.scim;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
@@ -24,17 +24,17 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import org.apache.mybatis.jpa.persistence.JpaPageResults;
|
||||
import org.maxkey.entity.Roles;
|
||||
import org.maxkey.entity.UserInfo;
|
||||
import org.maxkey.persistence.service.RoleMemberService;
|
||||
import org.maxkey.persistence.service.RolesService;
|
||||
import org.maxkey.util.DateUtils;
|
||||
import org.maxkey.util.StringUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimGroup;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimMemberRef;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimParameters;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimSearchResult;
|
||||
import org.dromara.maxkey.entity.Roles;
|
||||
import org.dromara.maxkey.entity.UserInfo;
|
||||
import org.dromara.maxkey.persistence.service.RoleMemberService;
|
||||
import org.dromara.maxkey.persistence.service.RolesService;
|
||||
import org.dromara.maxkey.util.DateUtils;
|
||||
import org.dromara.maxkey.util.StringUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimGroup;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimMemberRef;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimParameters;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimSearchResult;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@@ -15,21 +15,21 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim;
|
||||
package org.dromara.maxkey.web.apis.identity.scim;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.mybatis.jpa.persistence.JpaPageResults;
|
||||
import org.maxkey.entity.Organizations;
|
||||
import org.maxkey.persistence.service.OrganizationsService;
|
||||
import org.maxkey.util.DateUtils;
|
||||
import org.maxkey.util.StringUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimOrganization;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimParameters;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimSearchResult;
|
||||
import org.dromara.maxkey.entity.Organizations;
|
||||
import org.dromara.maxkey.persistence.service.OrganizationsService;
|
||||
import org.dromara.maxkey.util.DateUtils;
|
||||
import org.dromara.maxkey.util.StringUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimOrganization;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimParameters;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimSearchResult;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim;
|
||||
package org.dromara.maxkey.web.apis.identity.scim;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
@@ -15,31 +15,31 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim;
|
||||
package org.dromara.maxkey.web.apis.identity.scim;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import org.apache.mybatis.jpa.persistence.JpaPageResults;
|
||||
import org.maxkey.constants.ConstsStatus;
|
||||
import org.maxkey.entity.Roles;
|
||||
import org.maxkey.entity.UserInfo;
|
||||
import org.maxkey.persistence.service.RolesService;
|
||||
import org.maxkey.persistence.service.UserInfoService;
|
||||
import org.maxkey.util.DateUtils;
|
||||
import org.maxkey.util.StringUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimEnterprise;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimFormattedName;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimGroupRef;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimManager;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimParameters;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimSearchResult;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUser;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUserEmail;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUserPhoneNumber;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimOrganizationEmail.UserEmailType;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimOrganizationPhoneNumber.UserPhoneNumberType;
|
||||
import org.dromara.maxkey.constants.ConstsStatus;
|
||||
import org.dromara.maxkey.entity.Roles;
|
||||
import org.dromara.maxkey.entity.UserInfo;
|
||||
import org.dromara.maxkey.persistence.service.RolesService;
|
||||
import org.dromara.maxkey.persistence.service.UserInfoService;
|
||||
import org.dromara.maxkey.util.DateUtils;
|
||||
import org.dromara.maxkey.util.StringUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimEnterprise;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimFormattedName;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimGroupRef;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimManager;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimParameters;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimSearchResult;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUser;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUserEmail;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUserPhoneNumber;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimOrganizationEmail.UserEmailType;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimOrganizationPhoneNumber.UserPhoneNumberType;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.util.HashSet;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
public class ScimGroupRef extends ScimMultiValuedAttribute{
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
public class ScimManager {
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
public class ScimMemberRef extends ScimMultiValuedAttribute{
|
||||
|
||||
@@ -15,13 +15,13 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.Set;
|
||||
|
||||
import org.maxkey.json.*;
|
||||
import org.dromara.maxkey.json.*;
|
||||
|
||||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,9 +15,9 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import org.maxkey.web.apis.identity.scim.ScimServiceProviderConfigController;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.ScimServiceProviderConfigController;
|
||||
|
||||
public class ScimParameters {
|
||||
int startIndex = 1;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Set;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
|
||||
package org.maxkey.web.apis.identity.scim.resources;
|
||||
package org.dromara.maxkey.web.apis.identity.scim.resources;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
|
||||
package org.maxkey.identity.scim.resources;
|
||||
|
||||
import org.maxkey.pretty.impl.JsonPretty;
|
||||
import org.maxkey.util.JsonUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimEnterpriseUser;
|
||||
import org.dromara.maxkey.pretty.impl.JsonPretty;
|
||||
import org.dromara.maxkey.util.JsonUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimEnterpriseUser;
|
||||
|
||||
public class ScimEnterpriseUserJsonString2ObjectTest {
|
||||
|
||||
|
||||
@@ -21,14 +21,14 @@ import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import org.maxkey.pretty.impl.JsonPretty;
|
||||
import org.maxkey.util.JsonUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimEnterprise;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimEnterpriseUser;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimFormattedName;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUserEmail;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUserPhoneNumber;
|
||||
import org.dromara.maxkey.pretty.impl.JsonPretty;
|
||||
import org.dromara.maxkey.util.JsonUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimEnterprise;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimEnterpriseUser;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimFormattedName;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUserEmail;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUserPhoneNumber;
|
||||
|
||||
public class ScimEnterpriseUserJsonTest {
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
|
||||
package org.maxkey.identity.scim.resources;
|
||||
|
||||
import org.maxkey.pretty.impl.JsonPretty;
|
||||
import org.maxkey.util.JsonUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimGroup;
|
||||
import org.dromara.maxkey.pretty.impl.JsonPretty;
|
||||
import org.dromara.maxkey.util.JsonUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimGroup;
|
||||
|
||||
public class ScimGroupJsonString2ObjectTest {
|
||||
public static void main(String[] args) {
|
||||
|
||||
@@ -21,11 +21,11 @@ import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import org.maxkey.pretty.impl.JsonPretty;
|
||||
import org.maxkey.util.JsonUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimGroup;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimMemberRef;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.dromara.maxkey.pretty.impl.JsonPretty;
|
||||
import org.dromara.maxkey.util.JsonUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimGroup;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimMemberRef;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
|
||||
public class ScimGroupJsonTest {
|
||||
public static void main(String[] args) {
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
|
||||
package org.maxkey.identity.scim.resources;
|
||||
|
||||
import org.maxkey.pretty.impl.JsonPretty;
|
||||
import org.maxkey.util.JsonUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUser;
|
||||
import org.dromara.maxkey.pretty.impl.JsonPretty;
|
||||
import org.dromara.maxkey.util.JsonUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUser;
|
||||
|
||||
public class ScimUserJsonString2ObjectTest {
|
||||
|
||||
|
||||
@@ -21,13 +21,13 @@ import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import org.maxkey.pretty.impl.JsonPretty;
|
||||
import org.maxkey.util.JsonUtils;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimFormattedName;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUser;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUserEmail;
|
||||
import org.maxkey.web.apis.identity.scim.resources.ScimUserPhoneNumber;
|
||||
import org.dromara.maxkey.pretty.impl.JsonPretty;
|
||||
import org.dromara.maxkey.util.JsonUtils;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimFormattedName;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimMeta;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUser;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUserEmail;
|
||||
import org.dromara.maxkey.web.apis.identity.scim.resources.ScimUserPhoneNumber;
|
||||
|
||||
public class ScimUserJsonTest {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user