-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Spring dependencies in claim management API
- Loading branch information
1 parent
a76694f
commit e8f0e5a
Showing
11 changed files
with
196 additions
and
261 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
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
53 changes: 0 additions & 53 deletions
53
...g/wso2/carbon/identity/api/server/claim/management/common/factory/OSGIServiceFactory.java
This file was deleted.
Oops, something went wrong.
54 changes: 0 additions & 54 deletions
54
.../api/server/claim/management/common/factory/OrganizationManagementOSGIServiceFactory.java
This file was deleted.
Oops, something went wrong.
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
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
30 changes: 20 additions & 10 deletions
30
...ntity/rest/api/server/claim/management/v1/factories/ClaimManagementApiServiceFactory.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,30 +1,40 @@ | ||
/* | ||
* Copyright (c) 2019, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. | ||
* Copyright (c) 2019-2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* 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. | ||
* 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.rest.api.server.claim.management.v1.factories; | ||
|
||
import org.wso2.carbon.identity.rest.api.server.claim.management.v1.ClaimManagementApiService; | ||
import org.wso2.carbon.identity.rest.api.server.claim.management.v1.impl.ClaimManagementApiServiceImpl; | ||
|
||
/** | ||
* Factory class for ClaimManagementApiService. | ||
*/ | ||
public class ClaimManagementApiServiceFactory { | ||
|
||
private final static ClaimManagementApiService service = new ClaimManagementApiServiceImpl(); | ||
private final static ClaimManagementApiService SERVICE = new ClaimManagementApiServiceImpl(); | ||
|
||
/** | ||
* Get ClaimManagementApiService. | ||
* | ||
* @return ClaimManagementApiService. | ||
*/ | ||
public static ClaimManagementApiService getClaimManagementApi() | ||
{ | ||
return service; | ||
return SERVICE; | ||
} | ||
} |
Oops, something went wrong.