Browse Source

add copyright headers

tags/v0.12.7
Jonathan Cobb 4 years ago
parent
commit
24466fc11a
27 changed files with 90 additions and 15 deletions
  1. +3
    -1
      bin/aws/aws_delete_image.sh
  2. +3
    -1
      bin/aws/aws_delete_images.sh
  3. +3
    -1
      bin/do/do_delete_image.sh
  4. +3
    -1
      bin/do/do_delete_instance.sh
  5. +3
    -1
      bin/do/do_list_images.sh
  6. +3
    -1
      bin/do/do_list_instances.sh
  7. +3
    -1
      bin/do/docurl
  8. +3
    -1
      bin/godaddy/gd_list_records.sh
  9. +3
    -0
      bin/godaddy/gd_update_records.sh
  10. +3
    -1
      bin/godaddy/gdcurl
  11. +3
    -0
      bin/rdelkeys
  12. +3
    -0
      bin/rkeys
  13. +3
    -1
      bin/vultr/vcurl
  14. +3
    -1
      bin/vultr/vultr_delete_instance.sh
  15. +3
    -1
      bin/vultr/vultr_delete_snapshot.sh
  16. +3
    -1
      bin/vultr/vultr_delete_snapshots.sh
  17. +3
    -1
      bin/vultr/vultr_list_instances.sh
  18. +3
    -1
      bin/vultr/vultr_list_snapshots.sh
  19. +4
    -0
      bubble-server/src/main/java/bubble/model/device/DeviceSecurityLevel.java
  20. +4
    -0
      bubble-server/src/main/java/bubble/server/AppLinks.java
  21. +4
    -0
      bubble-server/src/main/java/bubble/server/BasicAppLinks.java
  22. +4
    -0
      bubble-server/src/main/java/bubble/service/cloud/DeviceIdService.java
  23. +4
    -0
      bubble-server/src/main/java/bubble/service/stream/AppPrimerService.java
  24. +4
    -0
      bubble-server/src/main/java/bubble/service/stream/ConnectionCheckResponse.java
  25. +4
    -0
      bubble-server/src/main/java/bubble/service/stream/StandardAppPrimerService.java
  26. +4
    -0
      bubble-server/src/main/java/bubble/service_dbfilter/DbFilterAppPrimerService.java
  27. +4
    -0
      bubble-server/src/main/java/bubble/service_dbfilter/DbFilterDeviceIdService.java

+ 3
- 1
bin/aws/aws_delete_image.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
function die {
echo 1>&2 "${1}"
exit 1


+ 3
- 1
bin/aws/aws_delete_images.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
function die {
echo 1>&2 "${1}"
exit 1


+ 3
- 1
bin/do/do_delete_image.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
IMAGEID=${1:?no IMAGEID provided}
THISDIR=$(cd $(dirname ${0}) && pwd)
DOCURL=${THISDIR}/docurl


+ 3
- 1
bin/do/do_delete_instance.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
DROPLETID=${1:?no DROPLETID provided}
THISDIR=$(cd $(dirname ${0}) && pwd)
DOCURL=${THISDIR}/docurl


+ 3
- 1
bin/do/do_list_images.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
THISDIR=$(cd $(dirname ${0}) && pwd)
DOCURL=${THISDIR}/docurl



+ 3
- 1
bin/do/do_list_instances.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
THISDIR=$(cd $(dirname ${0}) && pwd)
DOCURL=${THISDIR}/docurl



+ 3
- 1
bin/do/docurl View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
if [[ -z "${DIGITALOCEAN_API_KEY}" ]] ; then
echo "DIGITALOCEAN_API_KEY not defined in environment"
exit 1


+ 3
- 1
bin/godaddy/gd_list_records.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
DOMAIN=${1:?no domain provided}

THISDIR=$(cd $(dirname ${0}) && pwd)


+ 3
- 0
bin/godaddy/gd_update_records.sh View File

@@ -1,4 +1,7 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
DOMAIN=${1:?no domain provided}
RECORDS_JSON="${2:?no JSON DNS records file provided}"



+ 3
- 1
bin/godaddy/gdcurl View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
if [[ -z "${GODADDY_API_KEY}" ]] ; then
echo "GODADDY_API_KEY not defined in environment"
exit 1


+ 3
- 0
bin/rdelkeys View File

@@ -1,4 +1,7 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
KEY_MATCH="${1:?no key match}"
for k in $(echo 'keys *'"""${KEY_MATCH}"""'*' | redis-cli ) ; do
echo "del ${k} => $(echo "del ${k}" | redis-cli)"


+ 3
- 0
bin/rkeys View File

@@ -1,4 +1,7 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
KEY_MATCH="${1}"
for k in $(echo 'keys *'"""${KEY_MATCH}"""'*' | redis-cli ) ; do
echo "$k => $(echo "get $k" | redis-cli)"


+ 3
- 1
bin/vultr/vcurl View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
if [[ -z "${VULTR_API_KEY}" ]] ; then
echo "VULTR_API_KEY not defined in environment"
exit 1


+ 3
- 1
bin/vultr/vultr_delete_instance.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
SUBID=${1:?no SUBID provided}
THISDIR=$(cd $(dirname ${0}) && pwd)
VCURL=${THISDIR}/vcurl


+ 3
- 1
bin/vultr/vultr_delete_snapshot.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
SNAPSHOTID=${1:?no snapshot provided}
THISDIR=$(cd $(dirname ${0}) && pwd)
VCURL=${THISDIR}/vcurl


+ 3
- 1
bin/vultr/vultr_delete_snapshots.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
THISDIR=$(cd $(dirname ${0}) && pwd)
VCURL=${THISDIR}/vcurl



+ 3
- 1
bin/vultr/vultr_list_instances.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
THISDIR=$(cd $(dirname ${0}) && pwd)
VCURL=${THISDIR}/vcurl



+ 3
- 1
bin/vultr/vultr_list_snapshots.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
#
THISDIR=$(cd $(dirname ${0}) && pwd)
VCURL=${THISDIR}/vcurl



+ 4
- 0
bubble-server/src/main/java/bubble/model/device/DeviceSecurityLevel.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.model.device;

import com.fasterxml.jackson.annotation.JsonCreator;


+ 4
- 0
bubble-server/src/main/java/bubble/server/AppLinks.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.server;

import com.fasterxml.jackson.annotation.JsonIgnore;


+ 4
- 0
bubble-server/src/main/java/bubble/server/BasicAppLinks.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.server;

import lombok.Getter;


+ 4
- 0
bubble-server/src/main/java/bubble/service/cloud/DeviceIdService.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.service.cloud;

import bubble.model.device.Device;


+ 4
- 0
bubble-server/src/main/java/bubble/service/stream/AppPrimerService.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.service.stream;

import bubble.model.account.Account;


+ 4
- 0
bubble-server/src/main/java/bubble/service/stream/ConnectionCheckResponse.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.service.stream;

import com.fasterxml.jackson.annotation.JsonCreator;


+ 4
- 0
bubble-server/src/main/java/bubble/service/stream/StandardAppPrimerService.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.service.stream;

import bubble.dao.account.AccountDAO;


+ 4
- 0
bubble-server/src/main/java/bubble/service_dbfilter/DbFilterAppPrimerService.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.service_dbfilter;

import bubble.model.account.Account;


+ 4
- 0
bubble-server/src/main/java/bubble/service_dbfilter/DbFilterDeviceIdService.java View File

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
package bubble.service_dbfilter;

import bubble.model.device.Device;


Loading…
Cancel
Save