http://git-wip-us.apache.org/repos/asf/airavata/blob/c9ddaeb3/airavata-api/airavata-client-sdks/airavata-cpp-sdk/src/main/resources/lib/airavata/Airavata_server.skeleton.cpp
----------------------------------------------------------------------
diff --git
a/airavata-api/airavata-client-sdks/airavata-cpp-sdk/src/main/resources/lib/airavata/Airavata_server.skeleton.cpp
b/airavata-api/airavata-client-sdks/airavata-cpp-sdk/src/main/resources/lib/airavata/Airavata_server.skeleton.cpp
index 9e5be2e..864d0e3 100644
---
a/airavata-api/airavata-client-sdks/airavata-cpp-sdk/src/main/resources/lib/airavata/Airavata_server.skeleton.cpp
+++
b/airavata-api/airavata-client-sdks/airavata-cpp-sdk/src/main/resources/lib/airavata/Airavata_server.skeleton.cpp
@@ -551,183 +551,6 @@ class AiravataHandler : virtual public AiravataIf {
}
/**
- *
- * Search User Experiments by Name
- * Search user Experiments using experiment name with pagination. Results
will be sorted based on creation time DESC.
- *
- * @param gatewayId
- * Unique identifier of the requested gateway.
- *
- * @param userName
- * Username of the user who created the experiments.
- *
- * @param expName
- * Experiment name to be matched.
- *
- * @param limit
- * Amount of results to be fetched.
- *
- * @param offset
- * The starting point of the results to be fetched.
- *
- *
- *
- * @param authzToken
- * @param gatewayId
- * @param userName
- * @param expName
- * @param limit
- * @param offset
- */
- void searchExperimentsByName(std::vector<
::apache::airavata::model::experiment::ExperimentSummaryModel> & _return, const
::apache::airavata::model::security::AuthzToken& authzToken, const
std::string& gatewayId, const std::string& userName, const std::string&
expName, const int32_t limit, const int32_t offset) {
- // Your implementation goes here
- printf("searchExperimentsByName\n");
- }
-
- /**
- *
- * Search By Experiment Description
- * Search Experiments by experiment description with pagination. Results
will be sorted based on creation time DESC.
- *
- * @param gatewayId
- * Unique identifier of the requested gateway.
- *
- * @param userName
- * Username of the requested user.
- *
- * @param description
- * Experiment description to be matched.
- *
- * @param limit
- * Amount of results to be fetched.
- *
- * @param offset
- * The starting point of the results to be fetched.
- *
- *
- *
- * @param authzToken
- * @param gatewayId
- * @param userName
- * @param description
- * @param limit
- * @param offset
- */
- void searchExperimentsByDesc(std::vector<
::apache::airavata::model::experiment::ExperimentSummaryModel> & _return, const
::apache::airavata::model::security::AuthzToken& authzToken, const
std::string& gatewayId, const std::string& userName, const std::string&
description, const int32_t limit, const int32_t offset) {
- // Your implementation goes here
- printf("searchExperimentsByDesc\n");
- }
-
- /**
- *
- * Search Experiment By the Application
- * Search Experiments of a particular application id with pagination.
Results will be sorted based on creation time DESC
- *
- * @param gatewayId
- * Unique identifier of the requested gateway.
- *
- * @param userName
- * Username of the requested user.
- *
- * @param applicationId
- * Application id to be matched.
- *
- * @param limit
- * Amount of results to be fetched.
- *
- * @param offset
- * The starting point of the results to be fetched.
- *
- *
- *
- * @param authzToken
- * @param gatewayId
- * @param userName
- * @param applicationId
- * @param limit
- * @param offset
- */
- void searchExperimentsByApplication(std::vector<
::apache::airavata::model::experiment::ExperimentSummaryModel> & _return, const
::apache::airavata::model::security::AuthzToken& authzToken, const
std::string& gatewayId, const std::string& userName, const std::string&
applicationId, const int32_t limit, const int32_t offset) {
- // Your implementation goes here
- printf("searchExperimentsByApplication\n");
- }
-
- /**
- *
- * Search User Experiments by Status
- * Search all the Experiments of the given user by experiment status with
pagination. Results will be sorted based on creation time DESC
- *
- * @param gatewayId
- * Unique identifier of the requested gateway.
- *
- * @param userName
- * Username of the user making the request.
- *
- * @param experimentState
- * Experiement state to be matched.
- *
- * @param limit
- * Amount of results to be fetched.
- *
- * @param offset
- * The starting point of the results to be fetched.
- *
- *
- *
- * @param authzToken
- * @param gatewayId
- * @param userName
- * @param experimentState
- * @param limit
- * @param offset
- */
- void searchExperimentsByStatus(std::vector<
::apache::airavata::model::experiment::ExperimentSummaryModel> & _return, const
::apache::airavata::model::security::AuthzToken& authzToken, const
std::string& gatewayId, const std::string& userName, const
::apache::airavata::model::status::ExperimentState::type experimentState, const
int32_t limit, const int32_t offset) {
- // Your implementation goes here
- printf("searchExperimentsByStatus\n");
- }
-
- /**
- *
- * Search User Experiments by the Creation Time
- * This will search all the experiments of the given user by experiment
creation time with pagination. Results will be sorted based on creation time
DESC.
- *
- * @param gatewayId
- * Unique identifier of the requested gateway.
- *
- * @param userName
- * Username of the requested user.
- *
- * @param fromTime
- * Start time of the experiments creation time.
- *
- * @param toTime
- * End time of the experiement creation time.
- *
- * @param limit
- * Amount of results to be fetched.
- *
- * @param offset
- * The starting point of the results to be fetched.
- *
- * @return ExperimentSummaryModel
- * List of experiments for the given search filter. Here only the
Experiment summary will be returned.
- *
- *
- *
- * @param authzToken
- * @param gatewayId
- * @param userName
- * @param fromTime
- * @param toTime
- * @param limit
- * @param offset
- */
- void searchExperimentsByCreationTime(std::vector<
::apache::airavata::model::experiment::ExperimentSummaryModel> & _return, const
::apache::airavata::model::security::AuthzToken& authzToken, const
std::string& gatewayId, const std::string& userName, const int64_t fromTime,
const int64_t toTime, const int32_t limit, const int32_t offset) {
- // Your implementation goes here
- printf("searchExperimentsByCreationTime\n");
- }
-
- /**
* Search Experiments.
* Search Experiments by using multiple filter criteria with pagination.
Results will be sorted based on creation time DESC.
*