EhrUrlConfiguration.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.yihu.hos.rest.common.configuration;
  2. import com.yihu.hos.rest.common.http.EHRHttpHelper;
  3. import org.springframework.beans.factory.annotation.Value;
  4. import org.springframework.context.annotation.Configuration;
  5. import javax.annotation.PostConstruct;
  6. /**
  7. * EHR连接地址配置
  8. * @author HZY
  9. * @vsrsion 1.0
  10. * Created at 2017/7/31.
  11. */
  12. @Configuration
  13. public class EhrUrlConfiguration {
  14. @Value("${service-gateway.ehrMgrUrl}")
  15. private String ehrMgrUrl;
  16. @Value("${service-gateway.ehrCouldUrl}")
  17. private String ehrCouldUrl;
  18. @Value("${service-gateway.ehrAdminUrl}")
  19. private String ehrAdminUrl;
  20. @Value("${service-gateway.sslKeystore}")
  21. private String sslKeystore;
  22. @Value("${service-gateway.sslPassword}")
  23. private String sslPassword;
  24. @Value("${service-gateway.clientId}")
  25. private String clientId;
  26. @Value("${service-gateway.clientKey}")
  27. private String clientKey;
  28. private static EhrUrlConfiguration configuration;
  29. @PostConstruct
  30. public void initValue(){
  31. configuration = this;
  32. EHRHttpHelper.initConfig(configuration);
  33. }
  34. public String getEhrMgrUrl() {
  35. return ehrMgrUrl;
  36. }
  37. public String getEhrCouldUrl() {
  38. return ehrCouldUrl;
  39. }
  40. public String getEhrAdminUrl() {
  41. return ehrAdminUrl;
  42. }
  43. public String getSslKeystore() {
  44. return sslKeystore;
  45. }
  46. public String getSslPassword() {
  47. return sslPassword;
  48. }
  49. public String getClientId() {
  50. return clientId;
  51. }
  52. public String getClientKey() {
  53. return clientKey;
  54. }
  55. }