This is an automated email from the ASF dual-hosted git repository. yasith pushed a commit to branch worktree-cleanup+lean-core in repository https://gitbox.apache.org/repos/asf/airavata.git
commit a4f13b5d34d571e4e4d743ef57c0f0a8c3188cd2 Author: yasithdev <[email protected]> AuthorDate: Mon Mar 30 07:41:06 2026 -0400 refactor: un-deprecate getAppModuleDeployedResources and getAvailableAppInterfaceComputeResources Both methods are required by the Thrift-generated Airavata interface and cannot be removed. Dropped @Deprecated from AiravataServerHandler and removed the stale FIXME comments from the Thrift IDL. Co-Authored-By: Claude Sonnet 4.6 <[email protected]> --- .../apache/airavata/server/thrift/handler/AiravataServerHandler.java | 2 -- .../thrift/src/main/thrift/airavata-apis/airavata_api.thrift | 2 -- 2 files changed, 4 deletions(-) diff --git a/airavata-server/thrift/src/main/java/org/apache/airavata/server/thrift/handler/AiravataServerHandler.java b/airavata-server/thrift/src/main/java/org/apache/airavata/server/thrift/handler/AiravataServerHandler.java index 81127eb0f4..02a7b3bb55 100644 --- a/airavata-server/thrift/src/main/java/org/apache/airavata/server/thrift/handler/AiravataServerHandler.java +++ b/airavata-server/thrift/src/main/java/org/apache/airavata/server/thrift/handler/AiravataServerHandler.java @@ -1359,7 +1359,6 @@ public class AiravataServerHandler implements Airavata.Iface { */ @Override @SecurityCheck - @Deprecated public List<String> getAppModuleDeployedResources(AuthzToken authzToken, String appModuleId) throws InvalidRequestException, AiravataClientException, AiravataSystemException, AuthorizationException, TException { @@ -1558,7 +1557,6 @@ public class AiravataServerHandler implements Airavata.Iface { */ @Override @SecurityCheck - @Deprecated public Map<String, String> getAvailableAppInterfaceComputeResources(AuthzToken authzToken, String appInterfaceId) throws InvalidRequestException, AiravataClientException, AiravataSystemException, AuthorizationException, TException { diff --git a/airavata-server/thrift/src/main/thrift/airavata-apis/airavata_api.thrift b/airavata-server/thrift/src/main/thrift/airavata-apis/airavata_api.thrift index 964a55ceb5..9b39b6b176 100644 --- a/airavata-server/thrift/src/main/thrift/airavata-apis/airavata_api.thrift +++ b/airavata-server/thrift/src/main/thrift/airavata-apis/airavata_api.thrift @@ -1496,7 +1496,6 @@ service Airavata extends base_api.BaseAPI { * Returns a list of Deployed Resources. * */ - // FIXME: Deprecated, use getApplicationDeploymentsForAppModuleAndGroupResourceProfile instead list<string> getAppModuleDeployedResources(1: required security_model.AuthzToken authzToken, 2: required string appModuleId) throws (1: airavata_errors.InvalidRequestException ire, 2: airavata_errors.AiravataClientException ace, @@ -1709,7 +1708,6 @@ service Airavata extends base_api.BaseAPI { * Deployments of each modules listed within the interfaces will be listed. * */ - // FIXME: Deprecated, use getApplicationDeploymentsForAppModuleAndGroupResourceProfile instead map<string, string> getAvailableAppInterfaceComputeResources(1: required security_model.AuthzToken authzToken, 2: required string appInterfaceId) throws (1: airavata_errors.InvalidRequestException ire, 2: airavata_errors.AiravataClientException ace,
