You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sc...@apache.org on 2017/04/05 19:11:09 UTC

[45/50] [abbrv] airavata git commit: Merge pull request #2 from apache/user-profile

Merge pull request #2 from apache/user-profile

Merge airavata/user-profile into gouravshenoy/user-profile

Project: http://git-wip-us.apache.org/repos/asf/airavata/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/b156320b
Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/b156320b
Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/b156320b

Branch: refs/heads/develop
Commit: b156320b3d22c1f6fb9f6303e740796d437612a2
Parents: d1ae264 fa0c57b
Author: Gourav Shenoy <sh...@gmail.com>
Authored: Wed Apr 5 12:24:47 2017 -0400
Committer: GitHub <no...@github.com>
Committed: Wed Apr 5 12:24:47 2017 -0400

----------------------------------------------------------------------
 airavata-api/airavata-api-server/pom.xml        |    5 +
 .../server/handler/AiravataServerHandler.java   |   12 +-
 airavata-services/pom.xml                       |   55 +
 airavata-services/profile-service/pom.xml       |   28 +
 .../profile-service-commons/pom.xml             |  114 +
 .../repositories/AbstractRepository.java        |  106 +
 .../commons/tenant/entities/GatewayEntity.java  |  254 +
 .../user/entities/NSFDemographicsEntity.java    |   94 +
 .../user/entities/UserProfileEntity.java        |  285 +
 .../profile/commons/utils/Committer.java        |   27 +
 .../profile/commons/utils/JPAConstants.java     |   34 +
 .../service/profile/commons/utils/JPAUtils.java |   79 +
 .../commons/utils/ObjectMapperSingleton.java    |   39 +
 .../profile/commons/utils/QueryConstants.java   |   27 +
 .../service/profile/commons/utils/Utils.java    |  147 +
 .../src/main/resources/META-INF/persistence.xml |   35 +
 .../profile-service-server/pom.xml              |   35 +
 .../handlers/TenantProfileServiceHandler.java   |  148 +
 .../handlers/UserProfileServiceHandler.java     |  141 +
 .../profile/server/ProfileServiceServer.java    |  176 +
 .../profile-service-stubs/pom.xml               |   28 +
 .../client/ProfileServiceClientFactory.java     |   63 +
 .../tenant/cpi/TenantProfileService.java        | 6760 ++++++++++++++++
 .../TenantProfileServiceException.java          |  407 +
 .../tenant/cpi/profile_tenant_cpiConstants.java |   59 +
 .../profile/user/cpi/UserProfileService.java    | 7504 ++++++++++++++++++
 .../exception/UserProfileServiceException.java  |  407 +
 .../user/cpi/profile_user_cpiConstants.java     |   59 +
 .../profile-service/profile-tenant-core/pom.xml |   31 +
 .../repositories/TenantProfileRepository.java   |   71 +
 .../profile-service/profile-user-core/pom.xml   |   85 +
 .../UserProfileRegistryException.java           |   28 +
 .../repositories/UserProfileRepository.java     |  109 +
 .../src/main/resources/user_profile_catalog.sql |   84 +
 .../repositories/WorkspaceRepositoryTest.java   |  176 +
 .../common/utils/ApplicationSettings.java       |    8 +
 .../airavata/common/utils/ServerSettings.java   |    4 +
 .../main/resources/airavata-server.properties   |   12 +
 .../org/apache/airavata/server/ServerMain.java  |    2 +
 .../registry/db/entities/EntityEntity.java      |   11 +
 .../db/repositories/EntityRepository.java       |    5 +-
 .../db/repositories/UserGroupRepository.java    |   14 +
 .../server/SharingRegistryServerHandler.java    |   47 +-
 .../main/resources/sharing-registry-derby.sql   |    1 +
 .../main/resources/sharing-registry-mysql.sql   |    1 +
 .../SharingRegistryServerHandlerTest.java       |    6 +
 .../registry/SharingRegistryServiceTest.java    |    8 +
 .../sharing/registry/models/Entity.java         |  112 +-
 .../service/cpi/SharingRegistryService.java     |    1 -
 .../api-docs/sharing_models.html                |   10 +-
 .../thrift_models/sharing_models.thrift         |    3 +-
 pom.xml                                         |    1 +
 .../service-cpis/generate-service-cpi-stubs.sh  |  181 +
 .../profile-service/profile-service-cpi.thrift  |   33 +
 .../profile-tenant/profile-tenant-cpi.thrift    |   56 +
 .../profile_tenant_cpi_errors.thrift            |   32 +
 .../profile-user/profile-user-cpi.thrift        |   58 +
 .../profile-user/profile_user_cpi_errors.thrift |   32 +
 58 files changed, 18327 insertions(+), 23 deletions(-)
----------------------------------------------------------------------