Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OB3] Remove identity.application.mgt.stub dependency from OB key manager #41

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@
<groupId>org.wso2.carbon.apimgt</groupId>
<artifactId>org.wso2.carbon.apimgt.impl</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.framework</groupId>
<artifactId>org.wso2.carbon.identity.application.mgt.stub</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
Expand Down Expand Up @@ -204,8 +200,6 @@
org.wso2.carbon.apimgt.impl;version="${org.wso2.carbon.apimgt.version.range}",
org.wso2.carbon.apimgt.impl.jwt;version="${org.wso2.carbon.apimgt.version.range}",
org.wso2.carbon.authenticator.stub;version="${carbon.kernel.version.range}",
org.wso2.carbon.identity.application.common.model.xsd;version="${carbon.identity.framework.version.range}",
org.wso2.carbon.identity.application.mgt.stub;version="${carbon.identity.framework.version.range}",
org.wso2.carbon.user.mgt.stub;version="${carbon.identity.framework.version.range}",
org.wso2.carbon.identity.oauth.stub;version="${org.wso2.carbon.identity.oauth.stub.version.range}",
org.wso2.carbon.identity.oauth.stub.dto;version="${org.wso2.carbon.identity.oauth.stub.version.range}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ public class KeyManagerUtil {
*
* @return Session cookie as a String
* @throws APIManagementException When failed to obtain the session cookie
* @deprecated ApplicationManagementService is used instead of SOAP API calls.
*/
@Deprecated
@Generated(message = "Excluding from unit test coverage")
public static String getSessionCookie() throws APIManagementException {

String sessionCookie = "";
Expand Down Expand Up @@ -90,7 +93,10 @@ public static String getSessionCookie() throws APIManagementException {
*
* @param serviceClient Admin service client
* @param sessionCookie session cookie as a string
* @deprecated ApplicationManagementService is used instead of SOAP API calls.
*/
@Deprecated
@Generated(message = "Excluding from unit test coverage")
public static void setAdminServiceSession(ServiceClient serviceClient, String sessionCookie) {

Options userAdminOption = serviceClient.getOptions();
Expand Down
Loading
Loading