├── .gitignore ├── LICENSE ├── README.md ├── demo ├── billingdal_demo │ ├── .jdk8 │ ├── .mvn │ │ └── wrapper │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── build.gradle │ ├── build_image.sh │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── billingdal │ │ │ ├── Application.java │ │ │ └── Order.java │ │ └── com │ │ │ └── onestrategy │ │ │ ├── AwsDynamodbKmsEncryptionProvider.java │ │ │ ├── Crypto.java │ │ │ ├── EncryptionInfo.java │ │ │ └── TokenProvider.java │ │ └── resources │ │ └── application.yml └── billingweb_demo │ ├── .jdk8 │ ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── build.gradle │ ├── build_image.sh │ ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── billingweb │ │ ├── Application.java │ │ ├── controller │ │ └── OrderController.java │ │ └── model │ │ └── Order.java │ └── resources │ └── templates │ ├── error.html │ ├── fragments.html │ ├── index.html │ ├── myorders.html │ ├── neworder.html │ └── orderdetail.html └── images ├── Encrypted-Signed-Item.png ├── myorderdemo.png ├── myorders.png └── neworder.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | 25 | *.sw? 26 | .#* 27 | *# 28 | *~ 29 | .classpath 30 | .project 31 | .settings/ 32 | bin 33 | build 34 | target 35 | dependency-reduced-pom.xml 36 | *.sublime-* 37 | /scratch 38 | .gradle 39 | Guardfile 40 | README.html 41 | *.iml 42 | .idea 43 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # How to protect Primary Account Number (PAN) data in AWS 2 | 3 | ## Overview 4 | Customers frequently ask about how to securely store the credit card data in AWS which meets PCI compliance. They want end-to-end encryption of Primary Account Number (PAN) data and security management of the encryption keys. This post provides a solution to secure PAN data using [Amazon DynamoDB Encryption Client](https://docs.aws.amazon.com/dynamodb-encryption-client/latest/devguide/what-is-ddb-encrypt.html) and [Amazon Key Management Service (AWS KMS)](https://docs.aws.amazon.com/kms/latest/developerguide/overview.html). DynamoDB client-side encryption helps you to protect your data before you send it to DynamoDB, so your PAN data is encrypted in transit and at rest, and KMS makes it easy for you to create and manage encryption keys, and also tracks the usage of the encryption keys in AWS CloudTrail to meet your regulatory and compliance needs. 5 | 6 | ## System Design 7 | 8 | Here is a typical three-tier billing system design to demonstrate how the tokenization solution works in an end-to-end scenario. 9 | 10 | 11 | 12 | * DynamoDB - store encrypted PAN and its token. 13 | * RDS MySQL DB - store transaction data, no PAN related cypher stored in transaction DB here, only the PAN token with other billing information. 14 | * KMS CMK - encryption provider, use Key Policy to secure the key access and also manage key rotation. 15 | * ECS Fargate - host the web tier and data access tier applications. 16 | * Route 53 - internal and external service discovery 17 | 18 | ## Encryption + Tokenization, layers of protection 19 | 20 | 1. With [DynamoDB client encryption library](https://docs.aws.amazon.com/dynamodb-encryption-client/latest/devguide/what-is-ddb-encrypt.html), each item is encrypted and signed on client side before sending to AWS, You can specify which attribute values to encrypt and which to include in the signature. 21 | * Encryption - protects the confidentiality of the attribute value (not the names) 22 | * Signing - protects the integrity of the data, detect unauthorized changes to the item as a whole 23 | 24 | 25 | 26 | 1. A random token (UUID) is generated for each PAN (Primary/Personal Account Number). The token is being used to represent the PAN in transaction DB and logs. 27 | 28 | 1. Plain text PAN only exists in memory on client, it'll never show up in any AWS services and logs. 29 | 30 | 1. Use KMS as Cryptographic Materials Provider. 31 | 32 | 1. You can use DynamoDB encryption at rest option (Server-Side Encryption) to add another layer of security. 33 | 34 | ## Deploy and test the solution locally 35 | 36 | ### Prerequisites 37 | 38 | If you want to deploy and run the solution locally, be sure you have the following prerequisites. 39 | 40 | 1. [AWS credentials is configured locally](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html) 41 | 42 | 1. Java 8 or later is installed 43 | 44 | 1. Apache Maven is installed, latest version if possible 45 | 46 | 1. Log in AWS Console: 47 | * Go to IAM > Encryption keys, click [Create key], follow the wizard to create a KMS CMK with proper key policy, and take a note of the arn of the key you created 48 | * Go to DynamoDB > click [Create table], and take a note of the table name and primary key attribute name 49 | * Go to RDS, create an MySQL db instance. 50 | 51 | 1. Create a table in the RDS MySQL DB you created in previous step with following SQL statement: 52 | 53 | ```SQL 54 | CREATE TABLE OrderHistory ( 55 | UserPaymentAccountID INT NOT NULL AUTO_INCREMENT, 56 | OrderName TINYTEXT, 57 | Description TINYTEXT, 58 | AWS_PA_Token TINYTEXT, 59 | PRIMARY KEY (UserPaymentAccountID) 60 | ); 61 | ``` 62 | 63 | 1. Set your credentials by either of below approaches: 64 | 65 | * Add access_key and secret_access_key info into AWS credentials profile file on your local system (~/.aws/credentials): 66 | 67 | ```ini 68 | [default] 69 | aws_access_key_id = your_access_key_id 70 | aws_secret_access_key = your_secret_access_key 71 | ``` 72 | * Set the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables. 73 | 74 | ```bash 75 | export AWS_ACCESS_KEY_ID=your_access_key_id 76 | export AWS_SECRET_ACCESS_KEY=your_secret_access_key 77 | ``` 78 | 79 | ### Deploy the Solution Locally 80 | 81 | * Clone the repository to your local directory, and navigate to the project directory, e.g. User/tokenization-demo/ 82 | 83 | * Update constants in ./demo/billingdal_demo/src/main/java/com/onestrategy/EncryptionInfo.Java with proper info from your env, here are example inputs: 84 | 85 | ```java 86 | public static final String TABLE_NAME = "dynamodb-table-name"; 87 | public static final String REGION = "us-west-2"; 88 | public static final String CMK_ARN = "Change this to your CMK-ARN"; 89 | public static final String KEY_Attr_NAME = "Change this to your Key attr name"; 90 | public static final String PANUMBER_ATTR_NAME = "Change this to your PAN field name"; 91 | ``` 92 | 93 | Note: KMS CMK and DynamoDB table must in the same AWS Region. 94 | 95 | * Update constants in ./demo/billingdal_demo/src/main/java/billingdal/Application.java with your own setup: 96 | 97 | ```java 98 | public static final String MYSQL_DB_URL = "jdbc:mysql://your_rds_mysql_DB_URL.rds.amazonaws.com/yourmysqldbname"; 99 | public static final String MYSQL_DB_USER = "username"; 100 | public static final String MYSQL_DB_PASSWORD = "password"; 101 | ``` 102 | 103 | * Build both billingdal_demo and billingweb_demo projects 104 | 105 | ```bash 106 | cd ./demo/billingdal_demo 107 | ./mvnw package 108 | ``` 109 | 110 | * Run billingdal_demo by following command: 111 | 112 | ``` bash 113 | java -jar ./target/billingdal_demo-0.1.0.jar 114 | ``` 115 | 116 | It's a Spring Boot based REST API application and can be accessed through http://localhost:8081/ 117 | 118 | * Run billingweb_demo by following command: 119 | 120 | ``` bash 121 | java -jar ./target/billingweb_demo-0.1.0.jar 122 | ``` 123 | 124 | It's a Spring Boot MVC web app and can be accessed through http://localhost:8080/ 125 | 126 | * Navigate to http://localhost:8080/, click New Order in navigation bar, add an order. 127 | 128 | 129 | 130 | * Check orders: 131 | 132 | 133 | 134 | ## Deploy the Solution to AWS 135 | 136 | After you get the solution working locally, you may choose to deploy it to AWS. We choose ECS to host the two applications. 137 | 138 | We created a script "build_image.sh" under each application's folder so you can easily create image locally and push them to ECR: 139 | 140 | ```bash 141 | ./build_image.sh "the image name" 142 | # e.g. ./build_image.sh billingdal 143 | ``` 144 | 145 | NOTE: please setup your AWS profile properly before you run this script so it can access the right AWS account. 146 | 147 | After the images are pushed to ECR you can start services as suggested in the System Design section above. 148 | 149 | ## Conclusion 150 | 151 | In this blog post, we showed a secure data store solution using AWS DynamoDB client encryption and KMS to protect sensitive info like PAN data. 152 | The source code of the solution can be found [here](https://github.com/1Strategy/credit-card-tokenization-using-ddb). 153 | -------------------------------------------------------------------------------- /demo/billingdal_demo/.jdk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Strategy/credit-card-tokenization-using-ddb/2e305a3cf6b6b757640b2fd16cbd6809db0e8ac2/demo/billingdal_demo/.jdk8 -------------------------------------------------------------------------------- /demo/billingdal_demo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.9/apache-maven-3.3.9-bin.zip 2 | -------------------------------------------------------------------------------- /demo/billingdal_demo/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM openjdk:8-jdk-alpine 2 | VOLUME /tmp 3 | ARG DEPENDENCY=target/dependency 4 | COPY ${DEPENDENCY}/BOOT-INF/lib /app/lib 5 | COPY ${DEPENDENCY}/META-INF /app/META-INF 6 | COPY ${DEPENDENCY}/BOOT-INF/classes /app 7 | ENTRYPOINT ["java","-cp","app:app/lib/*","billingdal.Application"] -------------------------------------------------------------------------------- /demo/billingdal_demo/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | maven { 4 | url "https://plugins.gradle.org/m2/" 5 | } 6 | mavenCentral() 7 | } 8 | dependencies { 9 | classpath('org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE') 10 | // tag::build[] 11 | classpath('gradle.plugin.com.palantir.gradle.docker:gradle-docker:0.13.0') 12 | // end::build[] 13 | } 14 | } 15 | 16 | apply plugin: 'java' 17 | apply plugin: 'eclipse' 18 | apply plugin: 'idea' 19 | apply plugin: 'org.springframework.boot' 20 | apply plugin: 'io.spring.dependency-management' 21 | // tag::plugin[] 22 | apply plugin: 'com.palantir.docker' 23 | // end::plugin[] 24 | 25 | // This is used as the docker image prefix (org) 26 | group = 'springio' 27 | 28 | bootJar { 29 | baseName = 'gs-spring-boot-docker' 30 | version = '0.1.0' 31 | } 32 | 33 | // tag::task[] 34 | task unpack(type: Copy) { 35 | dependsOn bootJar 36 | from(zipTree(tasks.bootJar.outputs.files.singleFile)) 37 | into("build/dependency") 38 | } 39 | docker { 40 | name "${project.group}/${bootJar.baseName}" 41 | copySpec.from(tasks.unpack.outputs).into("dependency") 42 | buildArgs(['DEPENDENCY': "dependency"]) 43 | } 44 | // end::task[] 45 | 46 | repositories { 47 | mavenCentral() 48 | } 49 | 50 | sourceCompatibility = 1.8 51 | targetCompatibility = 1.8 52 | 53 | dependencies { 54 | compile("org.springframework.boot:spring-boot-starter-web") 55 | testCompile("org.springframework.boot:spring-boot-starter-test") 56 | } 57 | 58 | -------------------------------------------------------------------------------- /demo/billingdal_demo/build_image.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # This script shows how to build the Docker image and push it to ECR to be ready for use 4 | # by SageMaker. 5 | 6 | # The argument to this script is the image name. This will be used as the image on the local 7 | # machine and combined with the account and region to form the repository name for ECR. 8 | image=$1 9 | 10 | if [ "$image" == "" ] 11 | then 12 | echo "Usage: $0 " 13 | exit 1 14 | fi 15 | 16 | # Get the account number associated with the current IAM credentials 17 | account=$(aws sts get-caller-identity --query Account --output text) 18 | 19 | if [ $? -ne 0 ] 20 | then 21 | exit 255 22 | fi 23 | 24 | # Get the region defined in the current configuration (default to us-west-2 if none defined) 25 | # region=$(aws configure get region) 26 | region=us-west-2 27 | 28 | fullname="${account}.dkr.ecr.${region}.amazonaws.com/${image}:latest" 29 | 30 | # If the repository doesn't exist in ECR, create it. 31 | 32 | aws ecr describe-repositories --repository-names "${image}" --region $region > /dev/null 2>&1 33 | 34 | if [ $? -ne 0 ] 35 | then 36 | aws ecr create-repository --repository-name "${image}" --region $region > /dev/null 37 | fi 38 | 39 | # Get the login command from ECR and execute it directly 40 | $(aws ecr get-login --region ${region} --no-include-email) 41 | 42 | # Build the docker image locally with the image name and then push it to ECR 43 | # with the full name. 44 | 45 | docker build -t ${image} . 46 | docker tag ${image} ${fullname} 47 | 48 | docker push ${fullname} 49 | -------------------------------------------------------------------------------- /demo/billingdal_demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Mar 01 09:08:59 CST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip 7 | -------------------------------------------------------------------------------- /demo/billingdal_demo/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn ( ) { 37 | echo "$*" 38 | } 39 | 40 | die ( ) { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save ( ) { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /demo/billingdal_demo/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /demo/billingdal_demo/mvnw: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # ---------------------------------------------------------------------------- 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | # ---------------------------------------------------------------------------- 20 | 21 | # ---------------------------------------------------------------------------- 22 | # Maven2 Start Up Batch script 23 | # 24 | # Required ENV vars: 25 | # ------------------ 26 | # JAVA_HOME - location of a JDK home dir 27 | # 28 | # Optional ENV vars 29 | # ----------------- 30 | # M2_HOME - location of maven2's installed home dir 31 | # MAVEN_OPTS - parameters passed to the Java VM when running Maven 32 | # e.g. to debug Maven itself, use 33 | # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 34 | # MAVEN_SKIP_RC - flag to disable loading of mavenrc files 35 | # ---------------------------------------------------------------------------- 36 | 37 | if [ -z "$MAVEN_SKIP_RC" ] ; then 38 | 39 | if [ -f /etc/mavenrc ] ; then 40 | . /etc/mavenrc 41 | fi 42 | 43 | if [ -f "$HOME/.mavenrc" ] ; then 44 | . "$HOME/.mavenrc" 45 | fi 46 | 47 | fi 48 | 49 | # OS specific support. $var _must_ be set to either true or false. 50 | cygwin=false; 51 | darwin=false; 52 | mingw=false 53 | case "`uname`" in 54 | CYGWIN*) cygwin=true ;; 55 | MINGW*) mingw=true;; 56 | Darwin*) darwin=true 57 | # 58 | # Look for the Apple JDKs first to preserve the existing behaviour, and then look 59 | # for the new JDKs provided by Oracle. 60 | # 61 | if [ -z "$JAVA_HOME" ] && [ -L /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK ] ; then 62 | # 63 | # Apple JDKs 64 | # 65 | export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home 66 | fi 67 | 68 | if [ -z "$JAVA_HOME" ] && [ -L /System/Library/Java/JavaVirtualMachines/CurrentJDK ] ; then 69 | # 70 | # Apple JDKs 71 | # 72 | export JAVA_HOME=/System/Library/Java/JavaVirtualMachines/CurrentJDK/Contents/Home 73 | fi 74 | 75 | if [ -z "$JAVA_HOME" ] && [ -L "/Library/Java/JavaVirtualMachines/CurrentJDK" ] ; then 76 | # 77 | # Oracle JDKs 78 | # 79 | export JAVA_HOME=/Library/Java/JavaVirtualMachines/CurrentJDK/Contents/Home 80 | fi 81 | 82 | if [ -z "$JAVA_HOME" ] && [ -x "/usr/libexec/java_home" ]; then 83 | # 84 | # Apple JDKs 85 | # 86 | export JAVA_HOME=`/usr/libexec/java_home` 87 | fi 88 | ;; 89 | esac 90 | 91 | if [ -z "$JAVA_HOME" ] ; then 92 | if [ -r /etc/gentoo-release ] ; then 93 | JAVA_HOME=`java-config --jre-home` 94 | fi 95 | fi 96 | 97 | if [ -z "$M2_HOME" ] ; then 98 | ## resolve links - $0 may be a link to maven's home 99 | PRG="$0" 100 | 101 | # need this for relative symlinks 102 | while [ -h "$PRG" ] ; do 103 | ls=`ls -ld "$PRG"` 104 | link=`expr "$ls" : '.*-> \(.*\)$'` 105 | if expr "$link" : '/.*' > /dev/null; then 106 | PRG="$link" 107 | else 108 | PRG="`dirname "$PRG"`/$link" 109 | fi 110 | done 111 | 112 | saveddir=`pwd` 113 | 114 | M2_HOME=`dirname "$PRG"`/.. 115 | 116 | # make it fully qualified 117 | M2_HOME=`cd "$M2_HOME" && pwd` 118 | 119 | cd "$saveddir" 120 | # echo Using m2 at $M2_HOME 121 | fi 122 | 123 | # For Cygwin, ensure paths are in UNIX format before anything is touched 124 | if $cygwin ; then 125 | [ -n "$M2_HOME" ] && 126 | M2_HOME=`cygpath --unix "$M2_HOME"` 127 | [ -n "$JAVA_HOME" ] && 128 | JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 129 | [ -n "$CLASSPATH" ] && 130 | CLASSPATH=`cygpath --path --unix "$CLASSPATH"` 131 | fi 132 | 133 | # For Migwn, ensure paths are in UNIX format before anything is touched 134 | if $mingw ; then 135 | [ -n "$M2_HOME" ] && 136 | M2_HOME="`(cd "$M2_HOME"; pwd)`" 137 | [ -n "$JAVA_HOME" ] && 138 | JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" 139 | # TODO classpath? 140 | fi 141 | 142 | if [ -z "$JAVA_HOME" ]; then 143 | javaExecutable="`which javac`" 144 | if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then 145 | # readlink(1) is not available as standard on Solaris 10. 146 | readLink=`which readlink` 147 | if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then 148 | if $darwin ; then 149 | javaHome="`dirname \"$javaExecutable\"`" 150 | javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" 151 | else 152 | javaExecutable="`readlink -f \"$javaExecutable\"`" 153 | fi 154 | javaHome="`dirname \"$javaExecutable\"`" 155 | javaHome=`expr "$javaHome" : '\(.*\)/bin'` 156 | JAVA_HOME="$javaHome" 157 | export JAVA_HOME 158 | fi 159 | fi 160 | fi 161 | 162 | if [ -z "$JAVACMD" ] ; then 163 | if [ -n "$JAVA_HOME" ] ; then 164 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 165 | # IBM's JDK on AIX uses strange locations for the executables 166 | JAVACMD="$JAVA_HOME/jre/sh/java" 167 | else 168 | JAVACMD="$JAVA_HOME/bin/java" 169 | fi 170 | else 171 | JAVACMD="`which java`" 172 | fi 173 | fi 174 | 175 | if [ ! -x "$JAVACMD" ] ; then 176 | echo "Error: JAVA_HOME is not defined correctly." >&2 177 | echo " We cannot execute $JAVACMD" >&2 178 | exit 1 179 | fi 180 | 181 | if [ -z "$JAVA_HOME" ] ; then 182 | echo "Warning: JAVA_HOME environment variable is not set." 183 | fi 184 | 185 | CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher 186 | 187 | # For Cygwin, switch paths to Windows format before running java 188 | if $cygwin; then 189 | [ -n "$M2_HOME" ] && 190 | M2_HOME=`cygpath --path --windows "$M2_HOME"` 191 | [ -n "$JAVA_HOME" ] && 192 | JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` 193 | [ -n "$CLASSPATH" ] && 194 | CLASSPATH=`cygpath --path --windows "$CLASSPATH"` 195 | fi 196 | 197 | # traverses directory structure from process work directory to filesystem root 198 | # first directory with .mvn subdirectory is considered project base directory 199 | find_maven_basedir() { 200 | local basedir=$(pwd) 201 | local wdir=$(pwd) 202 | while [ "$wdir" != '/' ] ; do 203 | if [ -d "$wdir"/.mvn ] ; then 204 | basedir=$wdir 205 | break 206 | fi 207 | wdir=$(cd "$wdir/.."; pwd) 208 | done 209 | echo "${basedir}" 210 | } 211 | 212 | # concatenates all lines of a file 213 | concat_lines() { 214 | if [ -f "$1" ]; then 215 | echo "$(tr -s '\n' ' ' < "$1")" 216 | fi 217 | } 218 | 219 | export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-$(find_maven_basedir)} 220 | MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" 221 | 222 | # Provide a "standardized" way to retrieve the CLI args that will 223 | # work with both Windows and non-Windows executions. 224 | MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" 225 | export MAVEN_CMD_LINE_ARGS 226 | 227 | WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 228 | 229 | exec "$JAVACMD" \ 230 | $MAVEN_OPTS \ 231 | -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ 232 | "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ 233 | ${WRAPPER_LAUNCHER} "$@" 234 | -------------------------------------------------------------------------------- /demo/billingdal_demo/mvnw.cmd: -------------------------------------------------------------------------------- 1 | @REM ---------------------------------------------------------------------------- 2 | @REM Licensed to the Apache Software Foundation (ASF) under one 3 | @REM or more contributor license agreements. See the NOTICE file 4 | @REM distributed with this work for additional information 5 | @REM regarding copyright ownership. The ASF licenses this file 6 | @REM to you under the Apache License, Version 2.0 (the 7 | @REM "License"); you may not use this file except in compliance 8 | @REM with the License. You may obtain a copy of the License at 9 | @REM 10 | @REM http://www.apache.org/licenses/LICENSE-2.0 11 | @REM 12 | @REM Unless required by applicable law or agreed to in writing, 13 | @REM software distributed under the License is distributed on an 14 | @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | @REM KIND, either express or implied. See the License for the 16 | @REM specific language governing permissions and limitations 17 | @REM under the License. 18 | @REM ---------------------------------------------------------------------------- 19 | 20 | @REM ---------------------------------------------------------------------------- 21 | @REM Maven2 Start Up Batch script 22 | @REM 23 | @REM Required ENV vars: 24 | @REM JAVA_HOME - location of a JDK home dir 25 | @REM 26 | @REM Optional ENV vars 27 | @REM M2_HOME - location of maven2's installed home dir 28 | @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands 29 | @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending 30 | @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven 31 | @REM e.g. to debug Maven itself, use 32 | @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 33 | @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files 34 | @REM ---------------------------------------------------------------------------- 35 | 36 | @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' 37 | @echo off 38 | @REM enable echoing my setting MAVEN_BATCH_ECHO to 'on' 39 | @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% 40 | 41 | @REM set %HOME% to equivalent of $HOME 42 | if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") 43 | 44 | @REM Execute a user defined script before this one 45 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre 46 | @REM check for pre script, once with legacy .bat ending and once with .cmd ending 47 | if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" 48 | if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" 49 | :skipRcPre 50 | 51 | @setlocal 52 | 53 | set ERROR_CODE=0 54 | 55 | @REM To isolate internal variables from possible post scripts, we use another setlocal 56 | @setlocal 57 | 58 | @REM ==== START VALIDATION ==== 59 | if not "%JAVA_HOME%" == "" goto OkJHome 60 | 61 | echo. 62 | echo Error: JAVA_HOME not found in your environment. >&2 63 | echo Please set the JAVA_HOME variable in your environment to match the >&2 64 | echo location of your Java installation. >&2 65 | echo. 66 | goto error 67 | 68 | :OkJHome 69 | if exist "%JAVA_HOME%\bin\java.exe" goto init 70 | 71 | echo. 72 | echo Error: JAVA_HOME is set to an invalid directory. >&2 73 | echo JAVA_HOME = "%JAVA_HOME%" >&2 74 | echo Please set the JAVA_HOME variable in your environment to match the >&2 75 | echo location of your Java installation. >&2 76 | echo. 77 | goto error 78 | 79 | @REM ==== END VALIDATION ==== 80 | 81 | :init 82 | 83 | set MAVEN_CMD_LINE_ARGS=%* 84 | 85 | @REM Find the project base dir, i.e. the directory that contains the folder ".mvn". 86 | @REM Fallback to current working directory if not found. 87 | 88 | set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% 89 | IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir 90 | 91 | set EXEC_DIR=%CD% 92 | set WDIR=%EXEC_DIR% 93 | :findBaseDir 94 | IF EXIST "%WDIR%"\.mvn goto baseDirFound 95 | cd .. 96 | IF "%WDIR%"=="%CD%" goto baseDirNotFound 97 | set WDIR=%CD% 98 | goto findBaseDir 99 | 100 | :baseDirFound 101 | set MAVEN_PROJECTBASEDIR=%WDIR% 102 | cd "%EXEC_DIR%" 103 | goto endDetectBaseDir 104 | 105 | :baseDirNotFound 106 | set MAVEN_PROJECTBASEDIR=%EXEC_DIR% 107 | cd "%EXEC_DIR%" 108 | 109 | :endDetectBaseDir 110 | 111 | IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig 112 | 113 | @setlocal EnableExtensions EnableDelayedExpansion 114 | for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a 115 | @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% 116 | 117 | :endReadAdditionalConfig 118 | 119 | SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" 120 | 121 | set WRAPPER_JAR="".\.mvn\wrapper\maven-wrapper.jar"" 122 | set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 123 | 124 | %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CMD_LINE_ARGS% 125 | if ERRORLEVEL 1 goto error 126 | goto end 127 | 128 | :error 129 | set ERROR_CODE=1 130 | 131 | :end 132 | @endlocal & set ERROR_CODE=%ERROR_CODE% 133 | 134 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost 135 | @REM check for post script, once with legacy .bat ending and once with .cmd ending 136 | if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" 137 | if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" 138 | :skipRcPost 139 | 140 | @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' 141 | if "%MAVEN_BATCH_PAUSE%" == "on" pause 142 | 143 | if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% 144 | 145 | exit /B %ERROR_CODE% -------------------------------------------------------------------------------- /demo/billingdal_demo/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | main.java.billingdal 7 | billingdal_demo 8 | 0.1.0 9 | jar 10 | billingdal Docker 11 | demo billingdal rest api 12 | 13 | 14 | org.springframework.boot 15 | spring-boot-starter-parent 16 | 2.0.5.RELEASE 17 | 18 | 19 | 20 | 21 | springio 22 | 1.8 23 | 24 | 25 | 26 | 27 | 28 | org.springframework.boot 29 | spring-boot-maven-plugin 30 | 31 | 32 | 33 | com.spotify 34 | dockerfile-maven-plugin 35 | 1.3.6 36 | 37 | ${docker.image.prefix}/${project.artifactId} 38 | 39 | 40 | 41 | 42 | 43 | 44 | org.apache.maven.plugins 45 | maven-dependency-plugin 46 | 47 | 48 | unpack 49 | package 50 | 51 | unpack 52 | 53 | 54 | 55 | 56 | ${project.groupId} 57 | ${project.artifactId} 58 | ${project.version} 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | org.springframework.boot 72 | spring-boot-starter-web 73 | 74 | 75 | org.springframework.boot 76 | spring-boot-starter-test 77 | test 78 | 79 | 80 | com.amazonaws 81 | aws-dynamodb-encryption-java 82 | 1.12.0 83 | compile 84 | 85 | 86 | mysql 87 | mysql-connector-java 88 | 5.1.6 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /demo/billingdal_demo/src/main/java/billingdal/Application.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package billingdal; 16 | 17 | import org.springframework.boot.SpringApplication; 18 | import org.springframework.boot.autoconfigure.SpringBootApplication; 19 | import org.springframework.http.HttpStatus; 20 | import org.springframework.http.ResponseEntity; 21 | import org.springframework.web.bind.annotation.*; 22 | import com.onestrategy.Crypto; 23 | import com.onestrategy.AwsDynamodbKmsEncryptionProvider; 24 | import java.io.FileWriter; 25 | import java.io.IOException; 26 | import java.io.Writer; 27 | import java.sql.*; 28 | import java.util.*; 29 | @SpringBootApplication 30 | @RestController 31 | public class Application { 32 | public static final String MYSQL_DB_URL = "jdbc:mysql://your_rds_mysql_DB_URL.rds.amazonaws.com/yourmysqldbname"; 33 | public static final String MYSQL_DB_USER = "username"; 34 | public static final String MYSQL_DB_PASSWORD = "password"; 35 | 36 | @RequestMapping("/") 37 | public String home() { 38 | return "Billingdal Demo"; 39 | } 40 | 41 | @RequestMapping("/add") 42 | public String addPANumber(@RequestParam(value="number") String number) { 43 | Crypto encryptor = new AwsDynamodbKmsEncryptionProvider(); 44 | return encryptor.encrypt(number); 45 | } 46 | 47 | @RequestMapping("/get") 48 | public String getPANumber(@RequestParam(value="token") String token) { 49 | Crypto encryptor = new AwsDynamodbKmsEncryptionProvider(); 50 | return encryptor.decrypt(token); 51 | } 52 | 53 | @GetMapping("/orders") 54 | public List getAllOrders() throws SQLException, Exception { 55 | List result = new ArrayList(); 56 | Crypto encryptor = new AwsDynamodbKmsEncryptionProvider(); 57 | 58 | Connection conn; 59 | Class.forName("com.mysql.jdbc.Driver").newInstance(); 60 | conn = DriverManager.getConnection(MYSQL_DB_URL, MYSQL_DB_USER, MYSQL_DB_PASSWORD); 61 | String selectQuery = "SELECT UserPaymentAccountID, OrderName, Description, AWS_PA_Token from OrderHistory"; 62 | PreparedStatement select = conn.prepareStatement(selectQuery); 63 | 64 | ResultSet rs = select.executeQuery(); 65 | while (rs.next()) { 66 | String name = rs.getString("OrderName"); 67 | String description = rs.getString("Description"); 68 | String token = rs.getString("AWS_PA_Token"); 69 | int userPaymentAccountID = rs.getInt("UserPaymentAccountID"); 70 | String paNumber = encryptor.decrypt(token); 71 | Order o = new Order(); 72 | o.setId(userPaymentAccountID); 73 | o.setName(name); 74 | o.setDetail(description); 75 | String last4 = ""; 76 | if (paNumber.length() <= 4) { 77 | last4 = paNumber; 78 | } else { 79 | last4 = paNumber.substring(paNumber.length() - 4); 80 | } 81 | o.setPaymentMethod("Credit Card .... " + last4); 82 | 83 | result.add(o); 84 | } 85 | 86 | rs.close(); 87 | 88 | return result; 89 | } 90 | 91 | @GetMapping("/order") 92 | public List getOrder(@RequestParam(value="id") int id) throws SQLException, Exception { 93 | List result = new ArrayList(); 94 | Crypto encryptor = new AwsDynamodbKmsEncryptionProvider(); 95 | 96 | Connection conn; 97 | Class.forName("com.mysql.jdbc.Driver").newInstance(); 98 | conn = DriverManager.getConnection(MYSQL_DB_URL, MYSQL_DB_USER, MYSQL_DB_PASSWORD); 99 | String selectQuery = "SELECT UserPaymentAccountID, OrderName, Description, AWS_PA_Token from OrderHistory WHERE UserPaymentAccountID = ?"; 100 | PreparedStatement select = conn.prepareStatement(selectQuery); 101 | select.setInt(1, id); 102 | ResultSet rs = select.executeQuery(); 103 | while (rs.next()) { 104 | String name = rs.getString("OrderName"); 105 | String description = rs.getString("Description"); 106 | String token = rs.getString("AWS_PA_Token"); 107 | int userPaymentAccountID = rs.getInt("UserPaymentAccountID"); 108 | String paNumber = encryptor.decrypt(token); 109 | Order o = new Order(); 110 | o.setId(userPaymentAccountID); 111 | o.setName(name); 112 | o.setDetail(description); 113 | String last4 = ""; 114 | if (paNumber.length() <= 4) { 115 | last4 = paNumber; 116 | } else { 117 | last4 = paNumber.substring(paNumber.length() - 4); 118 | } 119 | o.setPaymentMethod("Credit Card .... " + last4); 120 | 121 | result.add(o); 122 | } 123 | 124 | rs.close(); 125 | 126 | return result; 127 | } 128 | 129 | @PostMapping("/order") 130 | public ResponseEntity newOrder(@ModelAttribute Order order) throws SQLException, Exception { 131 | List result = new ArrayList(); 132 | Crypto encryptor = new AwsDynamodbKmsEncryptionProvider(); 133 | 134 | Connection conn; 135 | Class.forName("com.mysql.jdbc.Driver").newInstance(); 136 | conn = DriverManager.getConnection(MYSQL_DB_URL, MYSQL_DB_USER, MYSQL_DB_PASSWORD); 137 | String insertQuery = "INSERT INTO OrderHistory (OrderName, Description, AWS_PA_Token) VALUES (?, ?, ?)"; 138 | PreparedStatement insert = conn.prepareStatement(insertQuery); 139 | insert.setString(1, order.getName()); 140 | insert.setString(2, order.getDetail()); 141 | String token = encryptor.encrypt(order.getPaymentMethod()); 142 | insert.setString(3, token); 143 | insert.executeUpdate(); 144 | return new ResponseEntity(HttpStatus.CREATED); 145 | } 146 | 147 | public static void main(String[] args) { 148 | SpringApplication.run(Application.class, args); 149 | } 150 | } 151 | -------------------------------------------------------------------------------- /demo/billingdal_demo/src/main/java/billingdal/Order.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package billingdal; 16 | 17 | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; 18 | 19 | @JsonIgnoreProperties(ignoreUnknown = true) 20 | public class Order { 21 | 22 | private Integer id; 23 | private String name; 24 | private String detail; 25 | private String paymentMethod; 26 | 27 | public Order() { 28 | } 29 | 30 | /** 31 | * @return the id 32 | */ 33 | public Integer getId() { 34 | return id; 35 | } 36 | /** 37 | * @param id the id to set 38 | */ 39 | public void setId(Integer id) { 40 | this.id = id; 41 | } 42 | 43 | /** 44 | * @return the name 45 | */ 46 | public String getName() { 47 | return name; 48 | } 49 | 50 | /** 51 | * @param name the name to set 52 | */ 53 | public void setName(String name) { 54 | this.name = name; 55 | } 56 | 57 | /** 58 | * @return the detail 59 | */ 60 | public String getDetail() { 61 | return detail; 62 | } 63 | /** 64 | * @param detail the detail to set 65 | */ 66 | public void setDetail(String detail) { 67 | this.detail = detail; 68 | } 69 | /** 70 | * @return the paymentMethod 71 | */ 72 | public String getPaymentMethod() { 73 | return paymentMethod; 74 | } 75 | /** 76 | * @param paymentMethod the paymentMethod to set 77 | */ 78 | public void setPaymentMethod(String paymentMethod) { 79 | this.paymentMethod = paymentMethod; 80 | } 81 | @Override 82 | public String toString() { 83 | return "Order{" + 84 | "id='" + id + '\'' + 85 | ", name=" + name + 86 | ", detail=" + detail + 87 | ", paymentMethod=" + paymentMethod + 88 | '}'; 89 | } 90 | } -------------------------------------------------------------------------------- /demo/billingdal_demo/src/main/java/com/onestrategy/AwsDynamodbKmsEncryptionProvider.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package com.onestrategy; 16 | 17 | 18 | import java.util.HashMap; 19 | import java.util.Map; 20 | 21 | import com.amazonaws.services.dynamodbv2.AmazonDynamoDB; 22 | import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClientBuilder; 23 | import com.amazonaws.services.dynamodbv2.datamodeling.AttributeEncryptor; 24 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBAttribute; 25 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey; 26 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapper; 27 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapperConfig; 28 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapperConfig.SaveBehavior; 29 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTable; 30 | import com.amazonaws.services.dynamodbv2.datamodeling.encryption.DynamoDBEncryptor; 31 | import com.amazonaws.services.dynamodbv2.datamodeling.encryption.providers.DirectKmsMaterialProvider; 32 | import com.amazonaws.services.dynamodbv2.model.AttributeValue; 33 | import com.amazonaws.services.kms.AWSKMS; 34 | import com.amazonaws.services.kms.AWSKMSClientBuilder; 35 | 36 | public class AwsDynamodbKmsEncryptionProvider implements com.onestrategy.Crypto { 37 | 38 | private DynamoDBMapper _mapper; 39 | private AmazonDynamoDB _ddb; 40 | 41 | public AwsDynamodbKmsEncryptionProvider() { 42 | // Set up our configuration and clients 43 | _ddb = AmazonDynamoDBClientBuilder.standard().withRegion(EncryptionInfo.REGION).build(); 44 | final AWSKMS kms = AWSKMSClientBuilder.standard().withRegion(EncryptionInfo.REGION).build(); 45 | final DirectKmsMaterialProvider cmp = new DirectKmsMaterialProvider(kms, EncryptionInfo.CMK_ARN); 46 | // Encryptor creation 47 | final DynamoDBEncryptor encryptor = DynamoDBEncryptor.getInstance(cmp); 48 | // Mapper Creation 49 | // Please note the use of SaveBehavior.CLOBBER. Omitting this can result in data-corruption. 50 | DynamoDBMapperConfig mapperConfig = DynamoDBMapperConfig.builder().withSaveBehavior(SaveBehavior.CLOBBER).build(); 51 | _mapper = new DynamoDBMapper(_ddb, mapperConfig, new AttributeEncryptor(encryptor)); 52 | } 53 | 54 | public String encrypt(String unencryptedString) { 55 | PaymentTransaction record = new PaymentTransaction(); 56 | record.setPartitionAttribute(TokenProvider.getGlobalUniqueKey()); 57 | record.setPANumber(unencryptedString); 58 | try { 59 | // Save it to DynamoDB 60 | _mapper.save(record); 61 | return record.getPartitionAttribute(); 62 | } catch (Exception e) { 63 | e.printStackTrace(); 64 | throw new RuntimeException(e); 65 | } 66 | } 67 | 68 | public String decrypt(String token) { 69 | try { 70 | PaymentTransaction pt = _mapper.load(PaymentTransaction.class, token); 71 | return pt.getPANumber(); 72 | } catch (Exception e) { 73 | e.printStackTrace(); 74 | throw new RuntimeException(e); 75 | } 76 | } 77 | 78 | public Boolean delete(String token) { 79 | final Map record = new HashMap<>(); 80 | record.put(EncryptionInfo.KEY_Attr_NAME, new AttributeValue().withS(token)); 81 | try{ 82 | _ddb.deleteItem(EncryptionInfo.TABLE_NAME, record); 83 | return true; 84 | } catch (Exception e) { 85 | e.printStackTrace(); 86 | throw new RuntimeException(e); 87 | } 88 | } 89 | 90 | @DynamoDBTable(tableName = EncryptionInfo.TABLE_NAME) 91 | public static final class PaymentTransaction { 92 | private String partitionAttribute; 93 | private String pANumber; 94 | 95 | @DynamoDBHashKey(attributeName = EncryptionInfo.KEY_Attr_NAME) 96 | public String getPartitionAttribute() { 97 | return partitionAttribute; 98 | } 99 | 100 | public void setPartitionAttribute(String partitionAttribute) { 101 | this.partitionAttribute = partitionAttribute; 102 | } 103 | 104 | @DynamoDBAttribute(attributeName = EncryptionInfo.PANUMBER_ATTR_NAME) 105 | public String getPANumber() { 106 | return pANumber; 107 | } 108 | 109 | public void setPANumber(String number) { 110 | this.pANumber = number; 111 | } 112 | } 113 | } 114 | -------------------------------------------------------------------------------- /demo/billingdal_demo/src/main/java/com/onestrategy/Crypto.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package com.onestrategy; 16 | 17 | public interface Crypto { 18 | 19 | public String encrypt(String unencryptedString); 20 | 21 | public String decrypt(String encryptedString); 22 | 23 | public Boolean delete(String encryptedString); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /demo/billingdal_demo/src/main/java/com/onestrategy/EncryptionInfo.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package com.onestrategy; 16 | 17 | public class EncryptionInfo { 18 | public static final String TABLE_NAME = "dynamodb-table-name"; 19 | public static final String REGION = "us-west-2"; 20 | public static final String CMK_ARN = "Change this to your CMK-ARN"; 21 | public static final String KEY_Attr_NAME = "Change this to your Primary Key attr name"; 22 | public static final String PANUMBER_ATTR_NAME = "Change this to your PAN field name"; 23 | } -------------------------------------------------------------------------------- /demo/billingdal_demo/src/main/java/com/onestrategy/TokenProvider.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package com.onestrategy; 16 | 17 | import java.util.UUID; 18 | 19 | public class TokenProvider { 20 | public static String getGlobalUniqueKey(){ 21 | UUID uuid = UUID.randomUUID(); 22 | return uuid.toString(); 23 | } 24 | } -------------------------------------------------------------------------------- /demo/billingdal_demo/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8081 3 | 4 | #TODO: figure out why I need this here and in bootstrap.yml 5 | spring: 6 | application: 7 | name: testLatticeApp 8 | 9 | ribbon: 10 | ServerListRefreshInterval: 1000 11 | 12 | endpoints: 13 | health: 14 | sensitive: false 15 | restart: 16 | enabled: true 17 | shutdown: 18 | enabled: true -------------------------------------------------------------------------------- /demo/billingweb_demo/.jdk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Strategy/credit-card-tokenization-using-ddb/2e305a3cf6b6b757640b2fd16cbd6809db0e8ac2/demo/billingweb_demo/.jdk8 -------------------------------------------------------------------------------- /demo/billingweb_demo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.9/apache-maven-3.3.9-bin.zip 2 | -------------------------------------------------------------------------------- /demo/billingweb_demo/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM openjdk:8-jdk-alpine 2 | VOLUME /tmp 3 | ARG DEPENDENCY=target/dependency 4 | COPY ${DEPENDENCY}/BOOT-INF/lib /app/lib 5 | COPY ${DEPENDENCY}/META-INF /app/META-INF 6 | COPY ${DEPENDENCY}/BOOT-INF/classes /app 7 | ENTRYPOINT ["java","-cp","app:app/lib/*","billingweb.Application"] -------------------------------------------------------------------------------- /demo/billingweb_demo/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | maven { 4 | url "https://plugins.gradle.org/m2/" 5 | } 6 | mavenCentral() 7 | } 8 | dependencies { 9 | classpath('org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE') 10 | // tag::build[] 11 | classpath('gradle.plugin.com.palantir.gradle.docker:gradle-docker:0.13.0') 12 | // end::build[] 13 | } 14 | } 15 | 16 | apply plugin: 'java' 17 | apply plugin: 'eclipse' 18 | apply plugin: 'idea' 19 | apply plugin: 'org.springframework.boot' 20 | apply plugin: 'io.spring.dependency-management' 21 | // tag::plugin[] 22 | apply plugin: 'com.palantir.docker' 23 | // end::plugin[] 24 | 25 | // This is used as the docker image prefix (org) 26 | group = 'springio' 27 | 28 | bootJar { 29 | baseName = 'gs-spring-boot-docker' 30 | version = '0.1.0' 31 | } 32 | 33 | // tag::task[] 34 | task unpack(type: Copy) { 35 | dependsOn bootJar 36 | from(zipTree(tasks.bootJar.outputs.files.singleFile)) 37 | into("build/dependency") 38 | } 39 | docker { 40 | name "${project.group}/${bootJar.baseName}" 41 | copySpec.from(tasks.unpack.outputs).into("dependency") 42 | buildArgs(['DEPENDENCY': "dependency"]) 43 | } 44 | // end::task[] 45 | 46 | repositories { 47 | mavenCentral() 48 | } 49 | 50 | sourceCompatibility = 1.8 51 | targetCompatibility = 1.8 52 | 53 | dependencies { 54 | compile("org.springframework.boot:spring-boot-starter-web") 55 | testCompile("org.springframework.boot:spring-boot-starter-test") 56 | } 57 | 58 | -------------------------------------------------------------------------------- /demo/billingweb_demo/build_image.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # This script shows how to build the Docker image and push it to ECR to be ready for use 4 | # by SageMaker. 5 | 6 | # The argument to this script is the image name. This will be used as the image on the local 7 | # machine and combined with the account and region to form the repository name for ECR. 8 | image=$1 9 | 10 | if [ "$image" == "" ] 11 | then 12 | echo "Usage: $0 " 13 | exit 1 14 | fi 15 | 16 | # Get the account number associated with the current IAM credentials 17 | account=$(aws sts get-caller-identity --query Account --output text) 18 | 19 | if [ $? -ne 0 ] 20 | then 21 | exit 255 22 | fi 23 | 24 | # Get the region defined in the current configuration (default to us-west-2 if none defined) 25 | # region=$(aws configure get region) 26 | region=us-west-2 27 | 28 | fullname="${account}.dkr.ecr.${region}.amazonaws.com/${image}:latest" 29 | 30 | # If the repository doesn't exist in ECR, create it. 31 | 32 | aws ecr describe-repositories --repository-names "${image}" --region $region > /dev/null 2>&1 33 | 34 | if [ $? -ne 0 ] 35 | then 36 | aws ecr create-repository --repository-name "${image}" --region $region > /dev/null 37 | fi 38 | 39 | # Get the login command from ECR and execute it directly 40 | $(aws ecr get-login --region ${region} --no-include-email) 41 | 42 | # Build the docker image locally with the image name and then push it to ECR 43 | # with the full name. 44 | 45 | docker build -t ${image} . 46 | docker tag ${image} ${fullname} 47 | 48 | docker push ${fullname} 49 | -------------------------------------------------------------------------------- /demo/billingweb_demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Mar 01 09:08:59 CST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip 7 | -------------------------------------------------------------------------------- /demo/billingweb_demo/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn ( ) { 37 | echo "$*" 38 | } 39 | 40 | die ( ) { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save ( ) { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /demo/billingweb_demo/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /demo/billingweb_demo/mvnw: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # ---------------------------------------------------------------------------- 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | # ---------------------------------------------------------------------------- 20 | 21 | # ---------------------------------------------------------------------------- 22 | # Maven2 Start Up Batch script 23 | # 24 | # Required ENV vars: 25 | # ------------------ 26 | # JAVA_HOME - location of a JDK home dir 27 | # 28 | # Optional ENV vars 29 | # ----------------- 30 | # M2_HOME - location of maven2's installed home dir 31 | # MAVEN_OPTS - parameters passed to the Java VM when running Maven 32 | # e.g. to debug Maven itself, use 33 | # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 34 | # MAVEN_SKIP_RC - flag to disable loading of mavenrc files 35 | # ---------------------------------------------------------------------------- 36 | 37 | if [ -z "$MAVEN_SKIP_RC" ] ; then 38 | 39 | if [ -f /etc/mavenrc ] ; then 40 | . /etc/mavenrc 41 | fi 42 | 43 | if [ -f "$HOME/.mavenrc" ] ; then 44 | . "$HOME/.mavenrc" 45 | fi 46 | 47 | fi 48 | 49 | # OS specific support. $var _must_ be set to either true or false. 50 | cygwin=false; 51 | darwin=false; 52 | mingw=false 53 | case "`uname`" in 54 | CYGWIN*) cygwin=true ;; 55 | MINGW*) mingw=true;; 56 | Darwin*) darwin=true 57 | # 58 | # Look for the Apple JDKs first to preserve the existing behaviour, and then look 59 | # for the new JDKs provided by Oracle. 60 | # 61 | if [ -z "$JAVA_HOME" ] && [ -L /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK ] ; then 62 | # 63 | # Apple JDKs 64 | # 65 | export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home 66 | fi 67 | 68 | if [ -z "$JAVA_HOME" ] && [ -L /System/Library/Java/JavaVirtualMachines/CurrentJDK ] ; then 69 | # 70 | # Apple JDKs 71 | # 72 | export JAVA_HOME=/System/Library/Java/JavaVirtualMachines/CurrentJDK/Contents/Home 73 | fi 74 | 75 | if [ -z "$JAVA_HOME" ] && [ -L "/Library/Java/JavaVirtualMachines/CurrentJDK" ] ; then 76 | # 77 | # Oracle JDKs 78 | # 79 | export JAVA_HOME=/Library/Java/JavaVirtualMachines/CurrentJDK/Contents/Home 80 | fi 81 | 82 | if [ -z "$JAVA_HOME" ] && [ -x "/usr/libexec/java_home" ]; then 83 | # 84 | # Apple JDKs 85 | # 86 | export JAVA_HOME=`/usr/libexec/java_home` 87 | fi 88 | ;; 89 | esac 90 | 91 | if [ -z "$JAVA_HOME" ] ; then 92 | if [ -r /etc/gentoo-release ] ; then 93 | JAVA_HOME=`java-config --jre-home` 94 | fi 95 | fi 96 | 97 | if [ -z "$M2_HOME" ] ; then 98 | ## resolve links - $0 may be a link to maven's home 99 | PRG="$0" 100 | 101 | # need this for relative symlinks 102 | while [ -h "$PRG" ] ; do 103 | ls=`ls -ld "$PRG"` 104 | link=`expr "$ls" : '.*-> \(.*\)$'` 105 | if expr "$link" : '/.*' > /dev/null; then 106 | PRG="$link" 107 | else 108 | PRG="`dirname "$PRG"`/$link" 109 | fi 110 | done 111 | 112 | saveddir=`pwd` 113 | 114 | M2_HOME=`dirname "$PRG"`/.. 115 | 116 | # make it fully qualified 117 | M2_HOME=`cd "$M2_HOME" && pwd` 118 | 119 | cd "$saveddir" 120 | # echo Using m2 at $M2_HOME 121 | fi 122 | 123 | # For Cygwin, ensure paths are in UNIX format before anything is touched 124 | if $cygwin ; then 125 | [ -n "$M2_HOME" ] && 126 | M2_HOME=`cygpath --unix "$M2_HOME"` 127 | [ -n "$JAVA_HOME" ] && 128 | JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 129 | [ -n "$CLASSPATH" ] && 130 | CLASSPATH=`cygpath --path --unix "$CLASSPATH"` 131 | fi 132 | 133 | # For Migwn, ensure paths are in UNIX format before anything is touched 134 | if $mingw ; then 135 | [ -n "$M2_HOME" ] && 136 | M2_HOME="`(cd "$M2_HOME"; pwd)`" 137 | [ -n "$JAVA_HOME" ] && 138 | JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" 139 | # TODO classpath? 140 | fi 141 | 142 | if [ -z "$JAVA_HOME" ]; then 143 | javaExecutable="`which javac`" 144 | if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then 145 | # readlink(1) is not available as standard on Solaris 10. 146 | readLink=`which readlink` 147 | if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then 148 | if $darwin ; then 149 | javaHome="`dirname \"$javaExecutable\"`" 150 | javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" 151 | else 152 | javaExecutable="`readlink -f \"$javaExecutable\"`" 153 | fi 154 | javaHome="`dirname \"$javaExecutable\"`" 155 | javaHome=`expr "$javaHome" : '\(.*\)/bin'` 156 | JAVA_HOME="$javaHome" 157 | export JAVA_HOME 158 | fi 159 | fi 160 | fi 161 | 162 | if [ -z "$JAVACMD" ] ; then 163 | if [ -n "$JAVA_HOME" ] ; then 164 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 165 | # IBM's JDK on AIX uses strange locations for the executables 166 | JAVACMD="$JAVA_HOME/jre/sh/java" 167 | else 168 | JAVACMD="$JAVA_HOME/bin/java" 169 | fi 170 | else 171 | JAVACMD="`which java`" 172 | fi 173 | fi 174 | 175 | if [ ! -x "$JAVACMD" ] ; then 176 | echo "Error: JAVA_HOME is not defined correctly." >&2 177 | echo " We cannot execute $JAVACMD" >&2 178 | exit 1 179 | fi 180 | 181 | if [ -z "$JAVA_HOME" ] ; then 182 | echo "Warning: JAVA_HOME environment variable is not set." 183 | fi 184 | 185 | CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher 186 | 187 | # For Cygwin, switch paths to Windows format before running java 188 | if $cygwin; then 189 | [ -n "$M2_HOME" ] && 190 | M2_HOME=`cygpath --path --windows "$M2_HOME"` 191 | [ -n "$JAVA_HOME" ] && 192 | JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` 193 | [ -n "$CLASSPATH" ] && 194 | CLASSPATH=`cygpath --path --windows "$CLASSPATH"` 195 | fi 196 | 197 | # traverses directory structure from process work directory to filesystem root 198 | # first directory with .mvn subdirectory is considered project base directory 199 | find_maven_basedir() { 200 | local basedir=$(pwd) 201 | local wdir=$(pwd) 202 | while [ "$wdir" != '/' ] ; do 203 | if [ -d "$wdir"/.mvn ] ; then 204 | basedir=$wdir 205 | break 206 | fi 207 | wdir=$(cd "$wdir/.."; pwd) 208 | done 209 | echo "${basedir}" 210 | } 211 | 212 | # concatenates all lines of a file 213 | concat_lines() { 214 | if [ -f "$1" ]; then 215 | echo "$(tr -s '\n' ' ' < "$1")" 216 | fi 217 | } 218 | 219 | export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-$(find_maven_basedir)} 220 | MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" 221 | 222 | # Provide a "standardized" way to retrieve the CLI args that will 223 | # work with both Windows and non-Windows executions. 224 | MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" 225 | export MAVEN_CMD_LINE_ARGS 226 | 227 | WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 228 | 229 | exec "$JAVACMD" \ 230 | $MAVEN_OPTS \ 231 | -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ 232 | "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ 233 | ${WRAPPER_LAUNCHER} "$@" 234 | -------------------------------------------------------------------------------- /demo/billingweb_demo/mvnw.cmd: -------------------------------------------------------------------------------- 1 | @REM ---------------------------------------------------------------------------- 2 | @REM Licensed to the Apache Software Foundation (ASF) under one 3 | @REM or more contributor license agreements. See the NOTICE file 4 | @REM distributed with this work for additional information 5 | @REM regarding copyright ownership. The ASF licenses this file 6 | @REM to you under the Apache License, Version 2.0 (the 7 | @REM "License"); you may not use this file except in compliance 8 | @REM with the License. You may obtain a copy of the License at 9 | @REM 10 | @REM http://www.apache.org/licenses/LICENSE-2.0 11 | @REM 12 | @REM Unless required by applicable law or agreed to in writing, 13 | @REM software distributed under the License is distributed on an 14 | @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | @REM KIND, either express or implied. See the License for the 16 | @REM specific language governing permissions and limitations 17 | @REM under the License. 18 | @REM ---------------------------------------------------------------------------- 19 | 20 | @REM ---------------------------------------------------------------------------- 21 | @REM Maven2 Start Up Batch script 22 | @REM 23 | @REM Required ENV vars: 24 | @REM JAVA_HOME - location of a JDK home dir 25 | @REM 26 | @REM Optional ENV vars 27 | @REM M2_HOME - location of maven2's installed home dir 28 | @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands 29 | @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending 30 | @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven 31 | @REM e.g. to debug Maven itself, use 32 | @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 33 | @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files 34 | @REM ---------------------------------------------------------------------------- 35 | 36 | @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' 37 | @echo off 38 | @REM enable echoing my setting MAVEN_BATCH_ECHO to 'on' 39 | @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% 40 | 41 | @REM set %HOME% to equivalent of $HOME 42 | if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") 43 | 44 | @REM Execute a user defined script before this one 45 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre 46 | @REM check for pre script, once with legacy .bat ending and once with .cmd ending 47 | if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" 48 | if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" 49 | :skipRcPre 50 | 51 | @setlocal 52 | 53 | set ERROR_CODE=0 54 | 55 | @REM To isolate internal variables from possible post scripts, we use another setlocal 56 | @setlocal 57 | 58 | @REM ==== START VALIDATION ==== 59 | if not "%JAVA_HOME%" == "" goto OkJHome 60 | 61 | echo. 62 | echo Error: JAVA_HOME not found in your environment. >&2 63 | echo Please set the JAVA_HOME variable in your environment to match the >&2 64 | echo location of your Java installation. >&2 65 | echo. 66 | goto error 67 | 68 | :OkJHome 69 | if exist "%JAVA_HOME%\bin\java.exe" goto init 70 | 71 | echo. 72 | echo Error: JAVA_HOME is set to an invalid directory. >&2 73 | echo JAVA_HOME = "%JAVA_HOME%" >&2 74 | echo Please set the JAVA_HOME variable in your environment to match the >&2 75 | echo location of your Java installation. >&2 76 | echo. 77 | goto error 78 | 79 | @REM ==== END VALIDATION ==== 80 | 81 | :init 82 | 83 | set MAVEN_CMD_LINE_ARGS=%* 84 | 85 | @REM Find the project base dir, i.e. the directory that contains the folder ".mvn". 86 | @REM Fallback to current working directory if not found. 87 | 88 | set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% 89 | IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir 90 | 91 | set EXEC_DIR=%CD% 92 | set WDIR=%EXEC_DIR% 93 | :findBaseDir 94 | IF EXIST "%WDIR%"\.mvn goto baseDirFound 95 | cd .. 96 | IF "%WDIR%"=="%CD%" goto baseDirNotFound 97 | set WDIR=%CD% 98 | goto findBaseDir 99 | 100 | :baseDirFound 101 | set MAVEN_PROJECTBASEDIR=%WDIR% 102 | cd "%EXEC_DIR%" 103 | goto endDetectBaseDir 104 | 105 | :baseDirNotFound 106 | set MAVEN_PROJECTBASEDIR=%EXEC_DIR% 107 | cd "%EXEC_DIR%" 108 | 109 | :endDetectBaseDir 110 | 111 | IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig 112 | 113 | @setlocal EnableExtensions EnableDelayedExpansion 114 | for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a 115 | @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% 116 | 117 | :endReadAdditionalConfig 118 | 119 | SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" 120 | 121 | set WRAPPER_JAR="".\.mvn\wrapper\maven-wrapper.jar"" 122 | set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 123 | 124 | %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CMD_LINE_ARGS% 125 | if ERRORLEVEL 1 goto error 126 | goto end 127 | 128 | :error 129 | set ERROR_CODE=1 130 | 131 | :end 132 | @endlocal & set ERROR_CODE=%ERROR_CODE% 133 | 134 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost 135 | @REM check for post script, once with legacy .bat ending and once with .cmd ending 136 | if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" 137 | if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" 138 | :skipRcPost 139 | 140 | @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' 141 | if "%MAVEN_BATCH_PAUSE%" == "on" pause 142 | 143 | if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% 144 | 145 | exit /B %ERROR_CODE% -------------------------------------------------------------------------------- /demo/billingweb_demo/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | billingweb 7 | billingweb_demo 8 | 0.1.0 9 | jar 10 | billingweb Docker 11 | demo billingweb website 12 | 13 | 14 | org.springframework.boot 15 | spring-boot-starter-parent 16 | 2.0.5.RELEASE 17 | 18 | 19 | 20 | 21 | springio 22 | 1.8 23 | 24 | 25 | 26 | 27 | 28 | org.springframework.boot 29 | spring-boot-maven-plugin 30 | 31 | 32 | 33 | com.spotify 34 | dockerfile-maven-plugin 35 | 1.3.6 36 | 37 | ${docker.image.prefix}/${project.artifactId} 38 | 39 | 40 | 41 | 42 | 43 | 44 | org.apache.maven.plugins 45 | maven-dependency-plugin 46 | 47 | 48 | unpack 49 | package 50 | 51 | unpack 52 | 53 | 54 | 55 | 56 | ${project.groupId} 57 | ${project.artifactId} 58 | ${project.version} 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | org.springframework.boot 72 | spring-boot-starter-web 73 | 74 | 75 | org.springframework.boot 76 | spring-boot-starter-thymeleaf 77 | 78 | 79 | org.springframework.boot 80 | spring-boot-devtools 81 | true 82 | 83 | 84 | org.springframework.boot 85 | spring-boot-starter-test 86 | test 87 | 88 | 89 | com.fasterxml.jackson.core 90 | jackson-databind 91 | 92 | 93 | org.webjars 94 | jquery 95 | 3.3.1-1 96 | 97 | 98 | org.webjars 99 | bootstrap 100 | 4.1.3 101 | 102 | 103 | org.webjars 104 | font-awesome 105 | 5.5.0 106 | 107 | 108 | org.webjars 109 | webjars-locator 110 | 0.34 111 | 112 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/java/billingweb/Application.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package billingweb; 16 | 17 | import org.springframework.boot.SpringApplication; 18 | import org.springframework.boot.autoconfigure.SpringBootApplication; 19 | import org.springframework.web.bind.annotation.RequestMapping; 20 | import org.springframework.web.bind.annotation.RestController; 21 | 22 | @SpringBootApplication 23 | public class Application { 24 | 25 | public static void main(String[] args) { 26 | SpringApplication.run(Application.class, args); 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/java/billingweb/controller/OrderController.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package billingweb.controller; 16 | 17 | import org.springframework.stereotype.Controller; 18 | import org.springframework.ui.Model; 19 | import org.springframework.web.bind.annotation.*; 20 | import org.springframework.web.client.RestTemplate; 21 | import org.springframework.http.*; 22 | import org.springframework.core.ParameterizedTypeReference; 23 | import org.springframework.util.*; 24 | import org.springframework.web.servlet.view.RedirectView; 25 | import billingweb.model.Order; 26 | import java.util.*; 27 | 28 | @Controller 29 | public class OrderController { 30 | 31 | public static final String DAL_URL = "Change this to your billing DAL URL."; 32 | 33 | @GetMapping("/greeting") 34 | public String greeting(@RequestParam(name="name", required=false, defaultValue="World") String name, Model model) { 35 | model.addAttribute("name", name); 36 | return "myorder"; 37 | } 38 | 39 | @RequestMapping("/myorders") 40 | public String myorders(Model model) { 41 | RestTemplate restTemplate = new RestTemplate(); 42 | ResponseEntity> rateResponse = 43 | restTemplate.exchange(DAL_URL + "orders", 44 | HttpMethod.GET, null, new ParameterizedTypeReference>() { 45 | }); 46 | List orders = rateResponse.getBody(); 47 | 48 | model.addAttribute("orders", orders); 49 | return "myorders"; 50 | } 51 | 52 | @GetMapping("/neworder") 53 | public String neworder(Model model) { 54 | model.addAttribute("order", new Order()); 55 | return "neworder"; 56 | } 57 | 58 | @PostMapping("/neworder") 59 | public RedirectView neworder(@ModelAttribute Order order, Model model) { 60 | HttpHeaders headers = new HttpHeaders(); 61 | headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED); 62 | MultiValueMap map= new LinkedMultiValueMap<>(); 63 | map.add("name", order.getName()); 64 | map.add("detail", order.getDetail()); 65 | map.add("paymentMethod", order.getPaymentMethod()); 66 | HttpEntity> request = new HttpEntity<>(map, headers); 67 | RestTemplate restTemplate = new RestTemplate(); 68 | ResponseEntity response = restTemplate.postForEntity( 69 | DAL_URL + "order", request, String.class); 70 | if (response.getStatusCode() == HttpStatus.CREATED){ 71 | return new RedirectView("myorders"); 72 | } else { 73 | return new RedirectView("error"); 74 | } 75 | } 76 | } -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/java/billingweb/model/Order.java: -------------------------------------------------------------------------------- 1 | // Copyright 2018 1Strategy, LLC 2 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package billingweb.model; 16 | 17 | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; 18 | 19 | @JsonIgnoreProperties(ignoreUnknown = true) 20 | public class Order { 21 | 22 | private Integer id; 23 | private String name; 24 | private String detail; 25 | private String paymentMethod; 26 | 27 | public Order() { 28 | } 29 | 30 | /** 31 | * @return the id 32 | */ 33 | public Integer getId() { 34 | return id; 35 | } 36 | /** 37 | * @param id the id to set 38 | */ 39 | public void setId(Integer id) { 40 | this.id = id; 41 | } 42 | 43 | /** 44 | * @return the name 45 | */ 46 | public String getName() { 47 | return name; 48 | } 49 | 50 | /** 51 | * @param name the name to set 52 | */ 53 | public void setName(String name) { 54 | this.name = name; 55 | } 56 | 57 | /** 58 | * @return the detail 59 | */ 60 | public String getDetail() { 61 | return detail; 62 | } 63 | /** 64 | * @param detail the detail to set 65 | */ 66 | public void setDetail(String detail) { 67 | this.detail = detail; 68 | } 69 | /** 70 | * @return the paymentMethod 71 | */ 72 | public String getPaymentMethod() { 73 | return paymentMethod; 74 | } 75 | /** 76 | * @param paymentMethod the paymentMethod to set 77 | */ 78 | public void setPaymentMethod(String paymentMethod) { 79 | this.paymentMethod = paymentMethod; 80 | } 81 | @Override 82 | public String toString() { 83 | return "Order{" + 84 | "id='" + id + '\'' + 85 | ", name=" + name + 86 | ", detail=" + detail + 87 | ", paymentMethod=" + paymentMethod + 88 | '}'; 89 | } 90 | } -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Getting Started: Serving Web Content 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | error 15 | 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/resources/templates/fragments.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 25 |
26 | 27 |
28 | 1Strategy 2018 All Rights Reserved 29 |
30 | 31 | -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Getting Started: Serving Web Content 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/resources/templates/myorders.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Getting Started: Serving Web Content 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
NameDetailPayment Method
Onions
26 |
27 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/resources/templates/neworder.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Getting Started: Serving Web Content 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 |
20 |
21 |
22 | 23 |
24 | 25 |
26 |
27 |
28 | 29 |
30 | 31 |
32 |
33 | 34 | 35 |
36 |
37 |
38 | 39 | 40 | -------------------------------------------------------------------------------- /demo/billingweb_demo/src/main/resources/templates/orderdetail.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Getting Started: Serving Web Content 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /images/Encrypted-Signed-Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Strategy/credit-card-tokenization-using-ddb/2e305a3cf6b6b757640b2fd16cbd6809db0e8ac2/images/Encrypted-Signed-Item.png -------------------------------------------------------------------------------- /images/myorderdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Strategy/credit-card-tokenization-using-ddb/2e305a3cf6b6b757640b2fd16cbd6809db0e8ac2/images/myorderdemo.png -------------------------------------------------------------------------------- /images/myorders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Strategy/credit-card-tokenization-using-ddb/2e305a3cf6b6b757640b2fd16cbd6809db0e8ac2/images/myorders.png -------------------------------------------------------------------------------- /images/neworder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Strategy/credit-card-tokenization-using-ddb/2e305a3cf6b6b757640b2fd16cbd6809db0e8ac2/images/neworder.png --------------------------------------------------------------------------------