rename maxkey-webapis to maxkey-web-apis

This commit is contained in:
MaxKey 2023-02-02 16:02:51 +08:00
parent ac61b133c5
commit f01ce91ece
40 changed files with 75 additions and 75 deletions

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim;
package org.maxkey.web.apis.identity.scim;
import java.io.IOException;
import java.util.ArrayList;
@ -30,11 +30,11 @@ 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.webapi.identity.scim.resources.ScimGroup;
import org.maxkey.webapi.identity.scim.resources.ScimMemberRef;
import org.maxkey.webapi.identity.scim.resources.ScimMeta;
import org.maxkey.webapi.identity.scim.resources.ScimParameters;
import org.maxkey.webapi.identity.scim.resources.ScimSearchResult;
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.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim;
package org.maxkey.web.apis.identity.scim;
import java.io.IOException;
import java.util.ArrayList;
@ -26,10 +26,10 @@ import org.maxkey.entity.Organizations;
import org.maxkey.persistence.service.OrganizationsService;
import org.maxkey.util.DateUtils;
import org.maxkey.util.StringUtils;
import org.maxkey.webapi.identity.scim.resources.ScimMeta;
import org.maxkey.webapi.identity.scim.resources.ScimOrganization;
import org.maxkey.webapi.identity.scim.resources.ScimParameters;
import org.maxkey.webapi.identity.scim.resources.ScimSearchResult;
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.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim;
package org.maxkey.web.apis.identity.scim;
import com.fasterxml.jackson.annotation.JsonInclude;
import org.springframework.web.bind.annotation.RequestMapping;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim;
package org.maxkey.web.apis.identity.scim;
import java.io.IOException;
import java.util.ArrayList;
@ -28,18 +28,18 @@ 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.webapi.identity.scim.resources.ScimEnterprise;
import org.maxkey.webapi.identity.scim.resources.ScimFormattedName;
import org.maxkey.webapi.identity.scim.resources.ScimGroupRef;
import org.maxkey.webapi.identity.scim.resources.ScimManager;
import org.maxkey.webapi.identity.scim.resources.ScimMeta;
import org.maxkey.webapi.identity.scim.resources.ScimParameters;
import org.maxkey.webapi.identity.scim.resources.ScimSearchResult;
import org.maxkey.webapi.identity.scim.resources.ScimUser;
import org.maxkey.webapi.identity.scim.resources.ScimUserEmail;
import org.maxkey.webapi.identity.scim.resources.ScimUserPhoneNumber;
import org.maxkey.webapi.identity.scim.resources.ScimOrganizationEmail.UserEmailType;
import org.maxkey.webapi.identity.scim.resources.ScimOrganizationPhoneNumber.UserPhoneNumberType;
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.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.util.HashSet;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.util.HashSet;
import java.util.Set;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
public class ScimGroupRef extends ScimMultiValuedAttribute{

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
public class ScimManager {

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
public class ScimMemberRef extends ScimMultiValuedAttribute{

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;
import java.util.Date;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.util.HashSet;
import java.util.List;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,9 +15,9 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import org.maxkey.webapi.identity.scim.ScimServiceProviderConfigController;
import org.maxkey.web.apis.identity.scim.ScimServiceProviderConfigController;
public class ScimParameters {
int startIndex = 1;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;
import java.util.Set;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.util.ArrayList;
import java.util.Collections;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.util.HashSet;
import java.util.List;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -15,7 +15,7 @@
*/
package org.maxkey.webapi.identity.scim.resources;
package org.maxkey.web.apis.identity.scim.resources;
import java.io.Serializable;

View File

@ -19,7 +19,7 @@ package org.maxkey.identity.scim.resources;
import org.maxkey.pretty.impl.JsonPretty;
import org.maxkey.util.JsonUtils;
import org.maxkey.webapi.identity.scim.resources.ScimEnterpriseUser;
import org.maxkey.web.apis.identity.scim.resources.ScimEnterpriseUser;
public class ScimEnterpriseUserJsonString2ObjectTest {

View File

@ -23,12 +23,12 @@ import java.util.List;
import org.maxkey.pretty.impl.JsonPretty;
import org.maxkey.util.JsonUtils;
import org.maxkey.webapi.identity.scim.resources.ScimEnterprise;
import org.maxkey.webapi.identity.scim.resources.ScimEnterpriseUser;
import org.maxkey.webapi.identity.scim.resources.ScimFormattedName;
import org.maxkey.webapi.identity.scim.resources.ScimMeta;
import org.maxkey.webapi.identity.scim.resources.ScimUserEmail;
import org.maxkey.webapi.identity.scim.resources.ScimUserPhoneNumber;
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;
public class ScimEnterpriseUserJsonTest {

View File

@ -19,7 +19,7 @@ package org.maxkey.identity.scim.resources;
import org.maxkey.pretty.impl.JsonPretty;
import org.maxkey.util.JsonUtils;
import org.maxkey.webapi.identity.scim.resources.ScimGroup;
import org.maxkey.web.apis.identity.scim.resources.ScimGroup;
public class ScimGroupJsonString2ObjectTest {
public static void main(String[] args) {

View File

@ -23,9 +23,9 @@ import java.util.Set;
import org.maxkey.pretty.impl.JsonPretty;
import org.maxkey.util.JsonUtils;
import org.maxkey.webapi.identity.scim.resources.ScimGroup;
import org.maxkey.webapi.identity.scim.resources.ScimMemberRef;
import org.maxkey.webapi.identity.scim.resources.ScimMeta;
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;
public class ScimGroupJsonTest {
public static void main(String[] args) {

View File

@ -19,7 +19,7 @@ package org.maxkey.identity.scim.resources;
import org.maxkey.pretty.impl.JsonPretty;
import org.maxkey.util.JsonUtils;
import org.maxkey.webapi.identity.scim.resources.ScimUser;
import org.maxkey.web.apis.identity.scim.resources.ScimUser;
public class ScimUserJsonString2ObjectTest {

View File

@ -23,11 +23,11 @@ import java.util.List;
import org.maxkey.pretty.impl.JsonPretty;
import org.maxkey.util.JsonUtils;
import org.maxkey.webapi.identity.scim.resources.ScimFormattedName;
import org.maxkey.webapi.identity.scim.resources.ScimMeta;
import org.maxkey.webapi.identity.scim.resources.ScimUser;
import org.maxkey.webapi.identity.scim.resources.ScimUserEmail;
import org.maxkey.webapi.identity.scim.resources.ScimUserPhoneNumber;
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;
public class ScimUserJsonTest {

View File

@ -39,9 +39,9 @@ import org.springframework.context.annotation.ComponentScan;
"org.maxkey.entity",
"org.maxkey.entity.apps",
"org.maxkey.entity.userinfo",
"org.maxkey.webapi.identity.kafka",
"org.maxkey.webapi.identity.rest",
"org.maxkey.webapi.identity.scim",
"org.maxkey.web.apis.identity.kafka",
"org.maxkey.web.apis.identity.rest",
"org.maxkey.web.apis.identity.scim",
"org.maxkey.persistence",
"org.maxkey.provision",
"org.maxkey.synchronizer",