-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #880 from lashinijay/feature-remove-spring-api-gov…
…ernance [Spring Cleanup] Remove spring dependency from governance API user endpoint
- Loading branch information
Showing
10 changed files
with
152 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 19 additions & 2 deletions
21
...ava/org/wso2/carbon/identity/user/endpoint/factories/IntrospectCodeApiServiceFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
/* | ||
* Copyright (c) 2020-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.wso2.carbon.identity.user.endpoint.factories; | ||
|
||
import org.wso2.carbon.identity.user.endpoint.IntrospectCodeApiService; | ||
import org.wso2.carbon.identity.user.endpoint.impl.IntrospectCodeApiServiceImpl; | ||
|
||
public class IntrospectCodeApiServiceFactory { | ||
|
||
private final static IntrospectCodeApiService service = new IntrospectCodeApiServiceImpl(); | ||
private static final IntrospectCodeApiService SERVICE = new IntrospectCodeApiServiceImpl(); | ||
|
||
public static IntrospectCodeApiService getIntrospectCodeApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
21 changes: 19 additions & 2 deletions
21
.../src/gen/java/org/wso2/carbon/identity/user/endpoint/factories/LiteApiServiceFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
/* | ||
* Copyright (c) 2020-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.wso2.carbon.identity.user.endpoint.factories; | ||
|
||
import org.wso2.carbon.identity.user.endpoint.LiteApiService; | ||
import org.wso2.carbon.identity.user.endpoint.impl.LiteApiServiceImpl; | ||
|
||
public class LiteApiServiceFactory { | ||
|
||
private final static LiteApiService service = new LiteApiServiceImpl(); | ||
private static final LiteApiService SERVICE = new LiteApiServiceImpl(); | ||
|
||
public static LiteApiService getLiteApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
21 changes: 19 additions & 2 deletions
21
...ce/src/gen/java/org/wso2/carbon/identity/user/endpoint/factories/MeApiServiceFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
/* | ||
* Copyright (c) 2016-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.wso2.carbon.identity.user.endpoint.factories; | ||
|
||
import org.wso2.carbon.identity.user.endpoint.MeApiService; | ||
import org.wso2.carbon.identity.user.endpoint.impl.MeApiServiceImpl; | ||
|
||
public class MeApiServiceFactory { | ||
|
||
private final static MeApiService service = new MeApiServiceImpl(); | ||
private static final MeApiService SERVICE = new MeApiServiceImpl(); | ||
|
||
public static MeApiService getMeApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
21 changes: 19 additions & 2 deletions
21
...rc/gen/java/org/wso2/carbon/identity/user/endpoint/factories/PiInfoApiServiceFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
/* | ||
* Copyright (c) 2018-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.wso2.carbon.identity.user.endpoint.factories; | ||
|
||
import org.wso2.carbon.identity.user.endpoint.PiInfoApiService; | ||
import org.wso2.carbon.identity.user.endpoint.impl.PiInfoApiServiceImpl; | ||
|
||
public class PiInfoApiServiceFactory { | ||
|
||
private final static PiInfoApiService service = new PiInfoApiServiceImpl(); | ||
private static final PiInfoApiService SERVICE = new PiInfoApiServiceImpl(); | ||
|
||
public static PiInfoApiService getPiInfoApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
21 changes: 19 additions & 2 deletions
21
...en/java/org/wso2/carbon/identity/user/endpoint/factories/ResendCodeApiServiceFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
/* | ||
* Copyright (c) 2016-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.wso2.carbon.identity.user.endpoint.factories; | ||
|
||
import org.wso2.carbon.identity.user.endpoint.ResendCodeApiService; | ||
import org.wso2.carbon.identity.user.endpoint.impl.ResendCodeApiServiceImpl; | ||
|
||
public class ResendCodeApiServiceFactory { | ||
|
||
private final static ResendCodeApiService service = new ResendCodeApiServiceImpl(); | ||
private static final ResendCodeApiService SERVICE = new ResendCodeApiServiceImpl(); | ||
|
||
public static ResendCodeApiService getResendCodeApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
21 changes: 19 additions & 2 deletions
21
...ava/org/wso2/carbon/identity/user/endpoint/factories/UpdateUsernameApiServiceFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
/* | ||
* Copyright (c) 2018-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.wso2.carbon.identity.user.endpoint.factories; | ||
|
||
import org.wso2.carbon.identity.user.endpoint.UpdateUsernameApiService; | ||
import org.wso2.carbon.identity.user.endpoint.impl.UpdateUsernameApiServiceImpl; | ||
|
||
public class UpdateUsernameApiServiceFactory { | ||
|
||
private final static UpdateUsernameApiService service = new UpdateUsernameApiServiceImpl(); | ||
private static final UpdateUsernameApiService SERVICE = new UpdateUsernameApiServiceImpl(); | ||
|
||
public static UpdateUsernameApiService getUpdateUsernameApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
21 changes: 19 additions & 2 deletions
21
.../java/org/wso2/carbon/identity/user/endpoint/factories/ValidateCodeApiServiceFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
/* | ||
* Copyright (c) 2016-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.wso2.carbon.identity.user.endpoint.factories; | ||
|
||
import org.wso2.carbon.identity.user.endpoint.ValidateCodeApiService; | ||
import org.wso2.carbon.identity.user.endpoint.impl.ValidateCodeApiServiceImpl; | ||
|
||
public class ValidateCodeApiServiceFactory { | ||
|
||
private final static ValidateCodeApiService service = new ValidateCodeApiServiceImpl(); | ||
private static final ValidateCodeApiService SERVICE = new ValidateCodeApiServiceImpl(); | ||
|
||
public static ValidateCodeApiService getValidateCodeApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
21 changes: 19 additions & 2 deletions
21
...a/org/wso2/carbon/identity/user/endpoint/factories/ValidateUsernameApiServiceFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
/* | ||
* Copyright (c) 2018-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.wso2.carbon.identity.user.endpoint.factories; | ||
|
||
import org.wso2.carbon.identity.user.endpoint.ValidateUsernameApiService; | ||
import org.wso2.carbon.identity.user.endpoint.impl.ValidateUsernameApiServiceImpl; | ||
|
||
public class ValidateUsernameApiServiceFactory { | ||
|
||
private final static ValidateUsernameApiService service = new ValidateUsernameApiServiceImpl(); | ||
private static final ValidateUsernameApiService SERVICE = new ValidateUsernameApiServiceImpl(); | ||
|
||
public static ValidateUsernameApiService getValidateUsernameApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
31 changes: 0 additions & 31 deletions
31
...n.identity.api.user.governance/src/main/resources/META-INF/cxf/user-governance-v1-cxf.xml
This file was deleted.
Oops, something went wrong.