Ver código fonte

add copyright/license comments

tags/v0.9.0
Jonathan Cobb 4 anos atrás
pai
commit
560150abea
100 arquivos alterados com 400 adições e 0 exclusões
  1. +4
    -0
      bubble-server/src/main/java/bubble/ApiConstants.java
  2. +4
    -0
      bubble-server/src/main/java/bubble/BubbleHandlebars.java
  3. +4
    -0
      bubble-server/src/main/java/bubble/app/analytics/TrafficAnalyticsAppDataDriver.java
  4. +4
    -0
      bubble-server/src/main/java/bubble/app/analytics/TrafficAnalyticsData.java
  5. +4
    -0
      bubble-server/src/main/java/bubble/app/bblock/BlockListEntry.java
  6. +4
    -0
      bubble-server/src/main/java/bubble/app/bblock/BlockListEntryType.java
  7. +4
    -0
      bubble-server/src/main/java/bubble/app/bblock/BubbleBlockAppConfigDriver.java
  8. +4
    -0
      bubble-server/src/main/java/bubble/app/bblock/BubbleBlockAppDataDriver.java
  9. +4
    -0
      bubble-server/src/main/java/bubble/app/social/block/UserBlockerAppDataDriver.java
  10. +4
    -0
      bubble-server/src/main/java/bubble/auth/BubbleAuthFilter.java
  11. +4
    -0
      bubble-server/src/main/java/bubble/auth/BubbleAuthProvider.java
  12. +4
    -0
      bubble-server/src/main/java/bubble/auth/PromoCodePolicy.java
  13. +4
    -0
      bubble-server/src/main/java/bubble/client/BubbleApiClient.java
  14. +4
    -0
      bubble-server/src/main/java/bubble/client/BubbleNodeClient.java
  15. +4
    -0
      bubble-server/src/main/java/bubble/client/BubbleNodeDownloadClient.java
  16. +4
    -0
      bubble-server/src/main/java/bubble/client/BubbleNodeQuickClient.java
  17. +4
    -0
      bubble-server/src/main/java/bubble/cloud/CloudAndRegion.java
  18. +4
    -0
      bubble-server/src/main/java/bubble/cloud/CloudRegion.java
  19. +4
    -0
      bubble-server/src/main/java/bubble/cloud/CloudRegionRelative.java
  20. +4
    -0
      bubble-server/src/main/java/bubble/cloud/CloudServiceDriver.java
  21. +4
    -0
      bubble-server/src/main/java/bubble/cloud/CloudServiceDriverBase.java
  22. +4
    -0
      bubble-server/src/main/java/bubble/cloud/CloudServiceType.java
  23. +4
    -0
      bubble-server/src/main/java/bubble/cloud/DelegatedCloudServiceDriverBase.java
  24. +4
    -0
      bubble-server/src/main/java/bubble/cloud/DelegatedStorageDriverBase.java
  25. +4
    -0
      bubble-server/src/main/java/bubble/cloud/NoopCloud.java
  26. +4
    -0
      bubble-server/src/main/java/bubble/cloud/RegionalConfig.java
  27. +4
    -0
      bubble-server/src/main/java/bubble/cloud/auth/AuthFieldHandler.java
  28. +4
    -0
      bubble-server/src/main/java/bubble/cloud/auth/AuthenticationDriver.java
  29. +4
    -0
      bubble-server/src/main/java/bubble/cloud/auth/AuthenticatorAuthFieldHandler.java
  30. +4
    -0
      bubble-server/src/main/java/bubble/cloud/auth/DelegatedAuthDriverBase.java
  31. +4
    -0
      bubble-server/src/main/java/bubble/cloud/auth/EmailAuthFieldHandler.java
  32. +4
    -0
      bubble-server/src/main/java/bubble/cloud/auth/RenderedMessage.java
  33. +4
    -0
      bubble-server/src/main/java/bubble/cloud/auth/SmsAuthFieldHandler.java
  34. +4
    -0
      bubble-server/src/main/java/bubble/cloud/authenticator/AuthenticatorServiceDriver.java
  35. +4
    -0
      bubble-server/src/main/java/bubble/cloud/authenticator/TOTPAuthenticatorDriver.java
  36. +4
    -0
      bubble-server/src/main/java/bubble/cloud/authenticator/delegate/DelegatedAuthenticatorDriver.java
  37. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/ComputeConfig.java
  38. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/ComputeNodeSize.java
  39. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/ComputeNodeSizeType.java
  40. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/ComputeServiceDriver.java
  41. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/ComputeServiceDriverBase.java
  42. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/NodeReaper.java
  43. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/delegate/DelegatedComputeDriver.java
  44. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/digitalocean/CreateDropletRequest.java
  45. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/digitalocean/CreateDropletResponse.java
  46. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/digitalocean/DigitalOceanDriver.java
  47. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/digitalocean/Droplet.java
  48. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/digitalocean/DropletIp.java
  49. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/digitalocean/DropletNetInfo.java
  50. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/digitalocean/ListDropletsResponse.java
  51. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/local/LocalComputeDriver.java
  52. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/mock/MockComputeDriver.java
  53. +4
    -0
      bubble-server/src/main/java/bubble/cloud/compute/vultr/VultrDriver.java
  54. +4
    -0
      bubble-server/src/main/java/bubble/cloud/config/CloudApiConfig.java
  55. +4
    -0
      bubble-server/src/main/java/bubble/cloud/config/CloudApiUrlConfig.java
  56. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/DnsConfig.java
  57. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/DnsDriverBase.java
  58. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/DnsServiceDriver.java
  59. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/delegate/DelegatedDnsDriver.java
  60. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/godaddy/GoDaddyDnsConfig.java
  61. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/godaddy/GoDaddyDnsDriver.java
  62. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/godaddy/GoDaddyDnsRecord.java
  63. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/godaddy/GoDaddyDomain.java
  64. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/mock/MockDnsDriver.java
  65. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/route53/Route53DnsConfig.java
  66. +4
    -0
      bubble-server/src/main/java/bubble/cloud/dns/route53/Route53DnsDriver.java
  67. +4
    -0
      bubble-server/src/main/java/bubble/cloud/email/EmailDriverConfig.java
  68. +4
    -0
      bubble-server/src/main/java/bubble/cloud/email/EmailServiceDriver.java
  69. +4
    -0
      bubble-server/src/main/java/bubble/cloud/email/RenderedEmail.java
  70. +4
    -0
      bubble-server/src/main/java/bubble/cloud/email/SmtpEmailDriver.java
  71. +4
    -0
      bubble-server/src/main/java/bubble/cloud/email/delegate/DelegatedEmailDriver.java
  72. +4
    -0
      bubble-server/src/main/java/bubble/cloud/email/mock/MockEmailDriver.java
  73. +4
    -0
      bubble-server/src/main/java/bubble/cloud/email/mock/MockMailSender.java
  74. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoCode/GeoCodeDriverBase.java
  75. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoCode/GeoCodeResult.java
  76. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoCode/GeoCodeServiceDriver.java
  77. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoCode/delegate/DelegatedGeoCodeDriver.java
  78. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoCode/google/GoogleGeoCodeDriver.java
  79. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocateServiceDriver.java
  80. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocateServiceDriverBase.java
  81. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocation.java
  82. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoLocation/delegate/DelegatedGeoLocationDriver.java
  83. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoLocation/maxmind/MaxMindDriver.java
  84. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoLocation/mock/MockGeoLocationDriver.java
  85. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoTime/GeoTimeServiceDriver.java
  86. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoTime/GeoTimeServiceDriverBase.java
  87. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoTime/GeoTimeZone.java
  88. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoTime/askgeo/AskGeoTimeServiceDriver.java
  89. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoTime/delegate/DelegatedGeoTimeDriver.java
  90. +4
    -0
      bubble-server/src/main/java/bubble/cloud/geoTime/google/GoogleGeoTimeDriver.java
  91. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/ChargeResult.java
  92. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/DefaultPaymentDriverConfig.java
  93. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/PaymentDriverBase.java
  94. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/PaymentServiceDriver.java
  95. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/code/CodePaymentDriver.java
  96. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/code/CodePaymentToken.java
  97. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/delegate/DelegatedPaymentDriver.java
  98. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/free/FreePaymentDriver.java
  99. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/promo/PromotionPaymentConfig.java
  100. +4
    -0
      bubble-server/src/main/java/bubble/cloud/payment/promo/PromotionalPaymentDriverBase.java

+ 4
- 0
bubble-server/src/main/java/bubble/ApiConstants.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble;

import bubble.model.cloud.BubbleNode;


+ 4
- 0
bubble-server/src/main/java/bubble/BubbleHandlebars.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble;

import com.github.jknack.handlebars.Handlebars;


+ 4
- 0
bubble-server/src/main/java/bubble/app/analytics/TrafficAnalyticsAppDataDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.app.analytics;

import bubble.model.account.Account;


+ 4
- 0
bubble-server/src/main/java/bubble/app/analytics/TrafficAnalyticsData.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.app.analytics;

import bubble.model.app.AppData;


+ 4
- 0
bubble-server/src/main/java/bubble/app/bblock/BlockListEntry.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.app.bblock;

import lombok.*;


+ 4
- 0
bubble-server/src/main/java/bubble/app/bblock/BlockListEntryType.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.app.bblock;

import com.fasterxml.jackson.annotation.JsonCreator;


+ 4
- 0
bubble-server/src/main/java/bubble/app/bblock/BubbleBlockAppConfigDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.app.bblock;

import bubble.abp.BlockDecision;


+ 4
- 0
bubble-server/src/main/java/bubble/app/bblock/BubbleBlockAppDataDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.app.bblock;

import bubble.app.analytics.TrafficAnalyticsAppDataDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/app/social/block/UserBlockerAppDataDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.app.social.block;

import bubble.model.app.config.AppDataDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/auth/BubbleAuthFilter.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.auth;

import bubble.dao.account.AccountDAO;


+ 4
- 0
bubble-server/src/main/java/bubble/auth/BubbleAuthProvider.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.auth;

import bubble.dao.SessionDAO;


+ 4
- 0
bubble-server/src/main/java/bubble/auth/PromoCodePolicy.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.auth;

import com.fasterxml.jackson.annotation.JsonCreator;


+ 4
- 0
bubble-server/src/main/java/bubble/client/BubbleApiClient.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.client;

import org.apache.http.impl.client.HttpClientBuilder;


+ 4
- 0
bubble-server/src/main/java/bubble/client/BubbleNodeClient.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.client;

import bubble.dao.cloud.BubbleNodeKeyDAO;


+ 4
- 0
bubble-server/src/main/java/bubble/client/BubbleNodeDownloadClient.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.client;

import bubble.model.cloud.BubbleNode;


+ 4
- 0
bubble-server/src/main/java/bubble/client/BubbleNodeQuickClient.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.client;

import bubble.model.cloud.BubbleNode;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/CloudAndRegion.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import bubble.model.cloud.CloudService;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/CloudRegion.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import bubble.cloud.geoLocation.GeoLocation;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/CloudRegionRelative.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/CloudServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import bubble.BubbleHandlebars;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/CloudServiceDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import bubble.model.cloud.CloudCredentials;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/CloudServiceType.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import bubble.cloud.auth.AuthFieldHandler;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/DelegatedCloudServiceDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import bubble.dao.cloud.BubbleNodeDAO;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/DelegatedStorageDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import bubble.cloud.storage.StorageServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/NoopCloud.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import bubble.cloud.auth.AuthenticationDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/RegionalConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/auth/AuthFieldHandler.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.auth;

import org.cobbzilla.util.collection.SingletonList;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/auth/AuthenticationDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.auth;

import bubble.cloud.CloudServiceDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/auth/AuthenticatorAuthFieldHandler.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.auth;

import bubble.model.account.TotpBean;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/auth/DelegatedAuthDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.auth;

import bubble.cloud.DelegatedCloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/auth/EmailAuthFieldHandler.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.auth;

import org.cobbzilla.util.string.ValidationRegexes;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/auth/RenderedMessage.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.auth;

import bubble.model.account.message.AccountAction;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/auth/SmsAuthFieldHandler.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.auth;

import org.cobbzilla.util.string.ValidationRegexes;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/authenticator/AuthenticatorServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.authenticator;

import bubble.cloud.CloudServiceType;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/authenticator/TOTPAuthenticatorDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.authenticator;

import bubble.dao.account.AccountPolicyDAO;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/authenticator/delegate/DelegatedAuthenticatorDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.authenticator.delegate;

import bubble.cloud.auth.DelegatedAuthDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/ComputeConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute;

import bubble.cloud.CloudRegion;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/ComputeNodeSize.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/ComputeNodeSizeType.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute;

import com.fasterxml.jackson.annotation.JsonCreator;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/ComputeServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute;

import bubble.cloud.CloudServiceDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/ComputeServiceDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute;

import bubble.cloud.CloudRegion;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/NodeReaper.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute;

import bubble.dao.cloud.BubbleDomainDAO;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/delegate/DelegatedComputeDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.delegate;

import bubble.cloud.CloudRegion;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/digitalocean/CreateDropletRequest.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.digitalocean;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/digitalocean/CreateDropletResponse.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.digitalocean;

import com.fasterxml.jackson.databind.JsonNode;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/digitalocean/DigitalOceanDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.digitalocean;

import bubble.cloud.CloudRegion;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/digitalocean/Droplet.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.digitalocean;

import com.fasterxml.jackson.annotation.JsonIgnore;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/digitalocean/DropletIp.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.digitalocean;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/digitalocean/DropletNetInfo.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.digitalocean;

import com.fasterxml.jackson.annotation.JsonIgnore;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/digitalocean/ListDropletsResponse.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.digitalocean;

import com.fasterxml.jackson.databind.JsonNode;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/local/LocalComputeDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.local;

import bubble.cloud.CloudRegion;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/mock/MockComputeDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.mock;

import bubble.cloud.CloudRegion;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/compute/vultr/VultrDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.compute.vultr;

import bubble.cloud.CloudRegion;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/config/CloudApiConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.config;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/config/CloudApiUrlConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.config;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/DnsConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns;

import lombok.NoArgsConstructor;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/DnsDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns;

import bubble.cloud.CloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/DnsServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns;

import bubble.cloud.CloudServiceDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/delegate/DelegatedDnsDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns.delegate;

import bubble.cloud.DelegatedCloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/godaddy/GoDaddyDnsConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns.godaddy;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/godaddy/GoDaddyDnsDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns.godaddy;

import bubble.cloud.dns.DnsDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/godaddy/GoDaddyDnsRecord.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns.godaddy;

import bubble.model.cloud.BubbleDomain;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/godaddy/GoDaddyDomain.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns.godaddy;

import bubble.model.cloud.BubbleDomain;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/mock/MockDnsDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns.mock;

import bubble.cloud.config.CloudApiConfig;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/route53/Route53DnsConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns.route53;

import com.amazonaws.regions.Regions;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/dns/route53/Route53DnsDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.dns.route53;

import bubble.cloud.dns.DnsDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/email/EmailDriverConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.email;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/email/EmailServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.email;

import bubble.cloud.CloudServiceType;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/email/RenderedEmail.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.email;

import bubble.cloud.auth.RenderedMessage;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/email/SmtpEmailDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.email;

import bubble.cloud.CloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/email/delegate/DelegatedEmailDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.email.delegate;

import bubble.cloud.auth.DelegatedAuthDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/email/mock/MockEmailDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.email.mock;

import bubble.cloud.email.SmtpEmailDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/email/mock/MockMailSender.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.email.mock;

import bubble.cloud.auth.RenderedMessage;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoCode/GeoCodeDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoCode;

import bubble.cloud.CloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoCode/GeoCodeResult.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoCode;

import com.fasterxml.jackson.annotation.JsonIgnore;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoCode/GeoCodeServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoCode;

import bubble.cloud.CloudServiceDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoCode/delegate/DelegatedGeoCodeDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoCode.delegate;

import bubble.cloud.DelegatedCloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoCode/google/GoogleGeoCodeDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoCode.google;

import bubble.cloud.config.CloudApiConfig;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocateServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoLocation;

import bubble.cloud.CloudServiceDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocateServiceDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoLocation;

import bubble.cloud.CloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocation.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoLocation;

import bubble.model.cloud.CloudService;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoLocation/delegate/DelegatedGeoLocationDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoLocation.delegate;

import bubble.cloud.DelegatedCloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoLocation/maxmind/MaxMindDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoLocation.maxmind;

import bubble.cloud.config.CloudApiUrlConfig;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoLocation/mock/MockGeoLocationDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoLocation.mock;

import bubble.cloud.config.CloudApiUrlConfig;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoTime/GeoTimeServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoTime;

import bubble.cloud.CloudServiceDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoTime/GeoTimeServiceDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoTime;

import bubble.cloud.CloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoTime/GeoTimeZone.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoTime;

import lombok.AllArgsConstructor;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoTime/askgeo/AskGeoTimeServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoTime.askgeo;

import bubble.cloud.config.CloudApiConfig;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoTime/delegate/DelegatedGeoTimeDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoTime.delegate;

import bubble.cloud.DelegatedCloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/geoTime/google/GoogleGeoTimeDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.geoTime.google;

import bubble.cloud.config.CloudApiConfig;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/ChargeResult.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/DefaultPaymentDriverConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment;

public class DefaultPaymentDriverConfig {}

+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/PaymentDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment;

import bubble.cloud.CloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/PaymentServiceDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment;

import bubble.cloud.CloudServiceDriver;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/code/CodePaymentDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment.code;

import bubble.cloud.payment.ChargeResult;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/code/CodePaymentToken.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment.code;

import bubble.model.cloud.CloudServiceData;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/delegate/DelegatedPaymentDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment.delegate;

import bubble.cloud.DelegatedCloudServiceDriverBase;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/free/FreePaymentDriver.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment.free;

import bubble.cloud.payment.ChargeResult;


+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/promo/PromotionPaymentConfig.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment.promo;

public class PromotionPaymentConfig {}

+ 4
- 0
bubble-server/src/main/java/bubble/cloud/payment/promo/PromotionalPaymentDriverBase.java Ver arquivo

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
package bubble.cloud.payment.promo;

import bubble.cloud.payment.ChargeResult;


Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff

Carregando…
Cancelar
Salvar