Merging airavata php clients from github
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/7034f503 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/7034f503 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/7034f503 Branch: refs/heads/master Commit: 7034f503fafd864e516cd090ee48ae1f882a5b31 Parents: 76607a2 9800cd3 Author: Suresh Marru <[email protected]> Authored: Mon Jun 30 18:54:40 2014 -0400 Committer: Suresh Marru <[email protected]> Committed: Mon Jun 30 18:54:40 2014 -0400 ---------------------------------------------------------------------- .gitignore | 30 + Airavata-PHP-Client-Samples/README.md | 10 + .../client-samples/GetAPIVersion.php | 58 + .../client-samples/README-PHP-CLI-Examples.txt | 20 + .../client-samples/add-compute-resources.php | 78 + .../airavata-client-api-tester.php | 233 + .../airavata-client-properties.ini | 17 + .../client-samples/cloneExperiment.php | 156 + .../client-samples/createExperiment.php | 162 + .../client-samples/createProject.php | 93 + .../getAllExperimentsInProject.php | 82 + .../client-samples/getAllUserExperiments.php | 89 + .../client-samples/getAllUserProjects.php | 83 + .../client-samples/getExperiment.php | 110 + .../client-samples/getExperimentOutputs.php | 116 + .../client-samples/getExperimentStatus.php | 100 + .../client-samples/launchExperiment.php | 86 + .../list-application-interfaces.php | 76 + .../client-samples/list-compute-resources.php | 101 + .../search_experiments_by_application.php | 82 + .../search_experiments_by_description.php | 82 + .../search_experiments_by_name.php | 82 + .../client-samples/terminateExperiment.php | 104 + .../client-samples/updateExperiment.php | 158 + .../client-samples/updateProject.php | 78 + .../lib/Airavata/API/Airavata.php | 6840 ++++++++++++++++++ .../API/AppCatalog/ApplicationCatalogAPI.php | 6165 ++++++++++++++++ .../lib/Airavata/API/AppCatalog/Types.php | 22 + .../lib/Airavata/API/Error/Types.php | 872 +++ .../lib/Airavata/API/Types.php | 22 + .../lib/Airavata/Model/AppCatalog/Types.php | 1636 +++++ .../lib/Airavata/Model/Types.php | 20 + .../Model/Workspace/Experiment/Types.php | 4172 +++++++++++ .../lib/Airavata/Model/Workspace/Types.php | 568 ++ .../lib/AiravataClientFactory.php | 45 + .../lib/Thrift/Base/TBase.php | 367 + .../Thrift/ClassLoader/ThriftClassLoader.php | 223 + .../Thrift/Exception/TApplicationException.php | 72 + .../lib/Thrift/Exception/TException.php | 369 + .../lib/Thrift/Exception/TProtocolException.php | 48 + .../Thrift/Exception/TTransportException.php | 41 + .../Thrift/Factory/TBinaryProtocolFactory.php | 43 + .../Thrift/Factory/TCompactProtocolFactory.php | 39 + .../lib/Thrift/Factory/TJSONProtocolFactory.php | 41 + .../lib/Thrift/Factory/TProtocolFactory.php | 35 + .../lib/Thrift/Factory/TStringFuncFactory.php | 63 + .../lib/Thrift/Factory/TTransportFactory.php | 16 + .../lib/Thrift/Protocol/JSON/BaseContext.php | 39 + .../lib/Thrift/Protocol/JSON/ListContext.php | 52 + .../Thrift/Protocol/JSON/LookaheadReader.php | 54 + .../lib/Thrift/Protocol/JSON/PairContext.php | 60 + .../lib/Thrift/Protocol/TBinaryProtocol.php | 396 + .../Protocol/TBinaryProtocolAccelerated.php | 47 + .../lib/Thrift/Protocol/TCompactProtocol.php | 669 ++ .../lib/Thrift/Protocol/TJSONProtocol.php | 694 ++ .../lib/Thrift/Protocol/TProtocol.php | 340 + .../lib/Thrift/Serializer/TBinarySerializer.php | 73 + .../lib/Thrift/Server/TForkingServer.php | 119 + .../lib/Thrift/Server/TServer.php | 101 + .../lib/Thrift/Server/TServerSocket.php | 98 + .../lib/Thrift/Server/TServerTransport.php | 54 + .../lib/Thrift/Server/TSimpleServer.php | 57 + .../lib/Thrift/StringFunc/Core.php | 38 + .../lib/Thrift/StringFunc/Mbstring.php | 45 + .../lib/Thrift/StringFunc/TStringFunc.php | 27 + .../lib/Thrift/Thrift.php | 789 ++ .../lib/Thrift/Transport/TBufferedTransport.php | 165 + .../lib/Thrift/Transport/TFramedTransport.php | 183 + .../lib/Thrift/Transport/THttpClient.php | 221 + .../lib/Thrift/Transport/TMemoryBuffer.php | 89 + .../lib/Thrift/Transport/TNullTransport.php | 50 + .../lib/Thrift/Transport/TPhpStream.php | 114 + .../lib/Thrift/Transport/TSocket.php | 326 + .../lib/Thrift/Transport/TSocketPool.php | 295 + .../lib/Thrift/Transport/TTransport.php | 93 + .../lib/Thrift/Type/TMessageType.php | 33 + .../lib/Thrift/Type/TType.php | 46 + .../lib/Thrift/autoload.php | 51 + 78 files changed, 29423 insertions(+) ----------------------------------------------------------------------
