├── .gitignore ├── .metadata ├── .lock ├── .log ├── .mylyn │ └── repositories.xml.zip ├── .plugins │ ├── org.eclipse.core.resources │ │ ├── .projects │ │ │ └── RemoteSystemsTempFiles │ │ │ │ ├── .indexes │ │ │ │ └── properties.index │ │ │ │ └── org.eclipse.egit.core │ │ │ │ └── GitProjectData.properties │ │ ├── .root │ │ │ ├── .indexes │ │ │ │ ├── history.version │ │ │ │ ├── properties.index │ │ │ │ └── properties.version │ │ │ └── 2.tree │ │ └── .safetable │ │ │ └── org.eclipse.core.resources │ ├── org.eclipse.e4.workbench │ │ └── workbench.xmi │ ├── org.eclipse.epp.logging.aeri.ide │ │ ├── com.genuitec.eclipse.aeri.server1 │ │ │ ├── http-cache │ │ │ │ ├── segments.gen │ │ │ │ └── segments_1 │ │ │ ├── local-history │ │ │ │ ├── _0.fdt │ │ │ │ ├── _0.fdx │ │ │ │ ├── _0.fnm │ │ │ │ ├── _0.frq │ │ │ │ ├── _0.nrm │ │ │ │ ├── _0.tii │ │ │ │ ├── _0.tis │ │ │ │ ├── segments.gen │ │ │ │ ├── segments_1 │ │ │ │ └── write.lock │ │ │ ├── remote-history │ │ │ │ ├── _0.fdt │ │ │ │ ├── _0.fdx │ │ │ │ ├── _0.fnm │ │ │ │ ├── _0.frq │ │ │ │ ├── _0.nrm │ │ │ │ ├── _0.tii │ │ │ │ ├── _0.tis │ │ │ │ ├── segments.gen │ │ │ │ └── segments_1 │ │ │ └── server-config.json │ │ └── org.eclipse.epp.logging.aeri.ide.server │ │ │ ├── http-cache │ │ │ ├── segments.gen │ │ │ └── segments_1 │ │ │ ├── local-history │ │ │ ├── _0.fdt │ │ │ ├── _0.fdx │ │ │ ├── _0.fnm │ │ │ ├── _0.frq │ │ │ ├── _0.nrm │ │ │ ├── _0.tii │ │ │ ├── _0.tis │ │ │ ├── segments.gen │ │ │ ├── segments_1 │ │ │ └── write.lock │ │ │ ├── remote-history │ │ │ ├── _0.fdt │ │ │ ├── _0.fdx │ │ │ ├── _0.fnm │ │ │ ├── _0.frq │ │ │ ├── _0.nrm │ │ │ ├── _0.tii │ │ │ ├── _0.tis │ │ │ ├── segments.gen │ │ │ └── segments_1 │ │ │ └── server-config.json │ ├── org.eclipse.jdt.core │ │ ├── assumedExternalFilesCache │ │ ├── externalFilesCache │ │ ├── javaLikeNames.txt │ │ ├── nonChainingJarsCache │ │ └── variablesAndContainers.dat │ ├── org.eclipse.jdt.ui │ │ ├── OpenTypeHistory.xml │ │ ├── QualifiedTypeNameHistory.xml │ │ └── dialog_settings.xml │ ├── org.eclipse.m2e.logback.configuration │ │ ├── 0.log │ │ └── logback.1.7.0.20160603-1933.xml │ ├── org.eclipse.mylyn.github.ui │ │ └── avatars.ser │ ├── org.eclipse.oomph.setup │ │ └── workspace.setup │ ├── org.eclipse.pde.core │ │ └── .cache │ │ │ └── clean-cache.properties │ ├── org.eclipse.rse.core │ │ ├── .log │ │ ├── initializerMarks │ │ │ └── org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark │ │ └── profiles │ │ │ └── PRF.davids-mbp_519 │ │ │ ├── FP.local.files_0 │ │ │ └── node.properties │ │ │ ├── H.local_16 │ │ │ └── node.properties │ │ │ └── node.properties │ ├── org.eclipse.rse.ui │ │ └── .log │ ├── org.eclipse.ui.ide │ │ └── dialog_settings.xml │ ├── org.eclipse.ui.workbench │ │ ├── dialog_settings.xml │ │ └── workingsets.xml │ ├── org.eclipse.ui │ │ └── dialog_settings.xml │ ├── org.springframework.ide.eclipse.aop.core │ │ └── .state │ ├── org.springframework.ide.eclipse.beans.core.metadata │ │ ├── metadata │ │ │ └── .state │ │ └── properties │ │ │ └── .state │ ├── org.springsource.ide.eclipse.commons.gettingstarted │ │ └── dashboard │ │ │ └── 1519142818134 │ │ │ ├── common │ │ │ ├── bootstrap-datetimepicker │ │ │ │ └── js │ │ │ │ │ └── bootstrap-datetimepicker.min.js │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.js │ │ │ │ └── js │ │ │ │ │ ├── bootstrap-datetimepicker │ │ │ │ │ └── js │ │ │ │ │ │ └── bootstrap-datetimepicker.min.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── css │ │ │ │ ├── application.css │ │ │ │ ├── blog.css │ │ │ │ ├── buttons.css │ │ │ │ ├── dashboard.css │ │ │ │ ├── docs.css │ │ │ │ ├── flexbox.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── fontcustom.css │ │ │ │ ├── highlight.css │ │ │ │ ├── homepage.css │ │ │ │ ├── icons.css │ │ │ │ ├── main.css │ │ │ │ ├── markdown-content.css │ │ │ │ ├── panes.css │ │ │ │ ├── projects.css │ │ │ │ ├── responsive.css │ │ │ │ ├── tools.css │ │ │ │ └── typography.css │ │ │ ├── font-awesome │ │ │ │ └── css │ │ │ │ │ └── font-awesome.css │ │ │ ├── font-custom │ │ │ │ └── fontcustom.woff │ │ │ ├── img │ │ │ │ ├── blog.png │ │ │ │ ├── blog_32.png │ │ │ │ ├── bug_32.png │ │ │ │ ├── comparison_32.png │ │ │ │ ├── compass.png │ │ │ │ ├── compass_32.png │ │ │ │ ├── extension.png │ │ │ │ ├── extension_32.png │ │ │ │ ├── favicon.png │ │ │ │ ├── forum.png │ │ │ │ ├── forum_32.png │ │ │ │ ├── guides.png │ │ │ │ ├── guides_32.png │ │ │ │ ├── loading.gif │ │ │ │ ├── logo_bigleaf.png │ │ │ │ ├── logo_spring.png │ │ │ │ ├── logo_sts.png │ │ │ │ ├── new_32.png │ │ │ │ ├── overlay-incoming.png │ │ │ │ ├── question.png │ │ │ │ ├── spring-logo.png │ │ │ │ ├── springdocs.png │ │ │ │ └── springdocs_32.png │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── filter.js │ │ │ │ ├── guide.js │ │ │ │ ├── jquery.js │ │ │ │ └── modernizer.flexbox.js │ │ │ └── index.html │ └── org.springsource.ide.eclipse.dashboard.ui │ │ └── feeds │ │ ├── dashboard.feeds.blogs │ │ └── -549550714.xml │ │ └── dashboard.feeds.update │ │ └── 623127801.xml └── version.ini ├── README.md ├── pom.xml └── src ├── main └── java │ ├── helpers │ └── SHA256.java │ └── simple │ └── chain │ ├── Block.java │ ├── Miner.java │ ├── SimpleBlockchain.java │ ├── Transaction.java │ └── Tx.java └── test └── java ├── helpers └── HashTest.java ├── nonce └── NonceTest.java └── simple └── chain └── SimpleChainTest.java /.gitignore: -------------------------------------------------------------------------------- 1 | /target/.idea/ 2 | *.iml 3 | .classpath 4 | .settings 5 | .project 6 | /build/ 7 | /target/ 8 | bin 9 | .DS_Store -------------------------------------------------------------------------------- /.metadata/.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.lock -------------------------------------------------------------------------------- /.metadata/.log: -------------------------------------------------------------------------------- 1 | !SESSION 2018-02-20 10:06:07.532 ----------------------------------------------- 2 | eclipse.buildId=3.8.3.201612191351-RELEASE-e46 3 | java.version=1.8.0_111 4 | java.vendor=Oracle Corporation 5 | BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US 6 | Framework arguments: -product org.springsource.sts.ide -keyring /Users/davidpitt/.eclipse_keyring 7 | Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.springsource.sts.ide -keyring /Users/davidpitt/.eclipse_keyring 8 | 9 | !ENTRY org.eclipse.core.net 1 0 2018-02-20 10:06:52.181 10 | !MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences 11 | 12 | !ENTRY org.eclipse.ui 2 2 2018-02-20 10:06:54.328 13 | !MESSAGE org.eclipse.jdt.junit.ResultView: Deprecated relationship "fast" should be converted to "stack". 14 | 15 | !ENTRY org.eclipse.ui 2 2 2018-02-20 10:06:54.335 16 | !MESSAGE org.springframework.ide.eclipse.aop.ui.navigator.aopReferenceModelNavigator: Deprecated relationship "fast" should be converted to "stack". 17 | 18 | !ENTRY org.eclipse.ui 2 2 2018-02-20 10:06:54.335 19 | !MESSAGE org.eclipse.contribution.xref.ui.views.XReferenceView: Deprecated relationship "fast" should be converted to "stack". 20 | 21 | !ENTRY org.eclipse.jface.text 2 0 2018-02-20 10:06:55.569 22 | !MESSAGE Duplicate template id: 'org.eclipse.wst.xslt.templates.xpath.number' 23 | 24 | !ENTRY org.eclipse.jface.text 2 0 2018-02-20 10:06:55.569 25 | !MESSAGE Duplicate template id: 'org.eclipse.wst.xslt.templates.xpath.round' 26 | !SESSION 2018-02-20 10:07:31.233 ----------------------------------------------- 27 | eclipse.buildId=3.8.3.201612191351-RELEASE-e46 28 | java.version=1.8.0_111 29 | java.vendor=Oracle Corporation 30 | BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US 31 | Framework arguments: -product org.springsource.sts.ide -keyring /Users/davidpitt/.eclipse_keyring 32 | Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.springsource.sts.ide -keyring /Users/davidpitt/.eclipse_keyring 33 | 34 | !ENTRY org.eclipse.core.net 1 0 2018-02-20 10:07:46.379 35 | !MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences 36 | -------------------------------------------------------------------------------- /.metadata/.mylyn/repositories.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.mylyn/repositories.xml.zip -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | org.eclipse.team.core 2 | repository!org.eclipse.egit.core.GitProvider -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/org.eclipse.egit.core/GitProjectData.properties: -------------------------------------------------------------------------------- 1 | #GitProjectData 2 | #Tue Feb 20 10:06:58 CST 2018 3 | .gitdir=../.git 4 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | /org.eclipse.core.resourcescontentCacheState1contentCacheTimestamp 1519142769696org.eclipse.jdt.corestateVersionNumber29 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/2.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache/segments.gen -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache/segments_1 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.fdt: -------------------------------------------------------------------------------- 1 | 0.6 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.fdx: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.fnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.fnm -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.frq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.frq -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.nrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.nrm -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.tii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.tii -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.tis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/_0.tis -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/segments.gen -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/segments_1 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history/write.lock -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.fdt: -------------------------------------------------------------------------------- 1 | 0.6 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.fdx: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.fnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.fnm -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.frq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.frq -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.nrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.nrm -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.tii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.tii -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.tis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/_0.tis -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/segments.gen -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/remote-history/segments_1 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/server-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v1", 3 | "title": "Spring IDE", 4 | "timestamp": 1519142814448, 5 | "ttl": 10080, 6 | "helpUrl": "https://aer.ctrlflow.com/spring-ide/help", 7 | "feedbackUrl": "https://www.codetrails.com/error-analytics/", 8 | "aboutUrl": "https://www.codetrails.com/error-analytics/", 9 | "submitUrl": "https://aer.ctrlflow.com/spring-ide/community/new", 10 | "maxReportSize": 524288, 11 | "problemsUrl": "https://aer.ctrlflow.com/downloads/spring-ide/problems.zip", 12 | "problemsTtl": 20160, 13 | "interestUrl": "https://aer.ctrlflow.com/spring-ide/community/interest", 14 | "connectTimeout": 5, 15 | "socketTimeout": 10, 16 | "acceptedProducts": [ 17 | "*" 18 | ], 19 | "acceptedPlugins": [ 20 | "*" 21 | ], 22 | "acceptedPackages": [ 23 | "ch.qos.*", 24 | "com.sun.*", 25 | "java.*", 26 | "javafx.*", 27 | "javax.*", 28 | "org.apache.*", 29 | "org.eclipse.*", 30 | "org.osgi.*", 31 | "org.slf4j.*", 32 | "org.springframework.*", 33 | "sun.*" 34 | ], 35 | "requiredPackages": [ 36 | "org.springframework.*" 37 | ], 38 | "acceptOtherPackages": true, 39 | "acceptUiFreezes": true, 40 | "ignoredStatuses": [ 41 | ":java.net.*:" 42 | ], 43 | "problemsZipLastDownloadTimestamp": 0 44 | } -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache/segments.gen -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache/segments_1 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.fdt: -------------------------------------------------------------------------------- 1 | 0.6 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.fdx: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.fnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.fnm -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.frq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.frq -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.nrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.nrm -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.tii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.tii -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.tis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/_0.tis -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/segments.gen -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/segments_1 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history/write.lock -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.fdt: -------------------------------------------------------------------------------- 1 | 0.6 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.fdx: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.fnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.fnm -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.frq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.frq -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.nrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.nrm -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.tii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.tii -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.tis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/_0.tis -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/segments.gen -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/remote-history/segments_1 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/server-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v1", 3 | "title": "Eclipse", 4 | "timestamp": 1519142814294, 5 | "ttl": 10080, 6 | "helpUrl": "https://dev.eclipse.org/recommenders/community/aeri/v2/help/", 7 | "feedbackUrl": "https://www.codetrails.com/error-analytics/", 8 | "aboutUrl": "https://wiki.eclipse.org/EPP/Logging", 9 | "submitUrl": "https://dev.eclipse.org/recommenders/community/confess/0.6/reports/", 10 | "maxReportSize": 262144, 11 | "problemsUrl": "https://www.eclipse.org/downloads/download.php?r\u003d1\u0026file\u003d/technology/epp/logging/problems.zip", 12 | "problemsTtl": 20160, 13 | "interestUrl": "https://dev.eclipse.org/recommenders/community/confess/v2/interest", 14 | "connectTimeout": 10, 15 | "socketTimeout": 10, 16 | "acceptedProducts": [ 17 | "org.eclipse.*", 18 | "org.fordiac.*" 19 | ], 20 | "acceptedPlugins": [ 21 | "org.apache.log4j.*", 22 | "org.eclipse.*", 23 | "org.fordiac.*" 24 | ], 25 | "acceptedPackages": [ 26 | "ch.qos.*", 27 | "com.cforcoding.*", 28 | "com.google.*", 29 | "com.gradleware.tooling.*", 30 | "com.mountainminds.eclemma.*", 31 | "com.naef.*", 32 | "com.sun.*", 33 | "java.*", 34 | "javafx.*", 35 | "javax.*", 36 | "org.apache.*", 37 | "org.eclipse.*", 38 | "org.fordiac.*", 39 | "org.gradle.*", 40 | "org.jacoco.*", 41 | "org.osgi.*", 42 | "org.slf4j.*", 43 | "sun.*" 44 | ], 45 | "requiredPackages": [ 46 | "com.cforcoding.*", 47 | "com.gradleware.tooling.*", 48 | "com.mountainminds.eclemma.*", 49 | "com.naef.*", 50 | "org.eclipse.*", 51 | "org.fordiac.*", 52 | "org.gradle.*", 53 | "org.jacoco.*" 54 | ], 55 | "acceptOtherPackages": false, 56 | "acceptUiFreezes": true, 57 | "ignoredStatuses": [ 58 | ":java.io.IOException:There is not enough space on the disk", 59 | ":java.net.*:", 60 | "org.eclipse.core.filesystem::Could not delete*", 61 | "org.eclipse.core.filesystem::Could not move*", 62 | "org.eclipse.core.resources:org.eclipse.core.internal.resources.ResourceException:Resource is out of sync with the file system*", 63 | "org.eclipse.core.runtime::Invalid input url*", 64 | "org.eclipse.epp.mpc.ui:java.io.IOException:", 65 | "org.eclipse.equinox.p2.*::", 66 | "org.eclipse.jface:java.io.IOException:Unable to resolve plug-in*", 67 | "org.eclipse.oomph.setup.core:$org.apache.http.ConnectionClosedException:", 68 | "org.eclipse.pde.core::The current target platform contains errors*", 69 | "org.eclipse.ui::Conflicting handlers for*" 70 | ], 71 | "problemsZipLastDownloadTimestamp": 0 72 | } -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/javaLikeNames.txt: -------------------------------------------------------------------------------- 1 | aj 2 | java -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 | JRE_LIBJRE_SRC ASPECTJRT_LIB JRE_SRCROOT 2 | JUNIT_HOME ECLIPSE_HOMEJUNIT_SRC_HOMEM2_REPO -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 | 9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.7.0.20160603-1933.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %date [%thread] %-5level %logger{35} - %msg%n 5 | 6 | 7 | OFF 8 | 9 | 10 | 11 | 12 | ${org.eclipse.m2e.log.dir}/0.log 13 | 14 | ${org.eclipse.m2e.log.dir}/%i.log 15 | 1 16 | 10 17 | 18 | 19 | 100MB 20 | 21 | 22 | %date [%thread] %-5level %logger{35} - %msg%n 23 | 24 | 25 | 26 | 27 | 28 | WARN 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.mylyn.github.ui/avatars.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.mylyn.github.ui/avatars.ser -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties: -------------------------------------------------------------------------------- 1 | #Cached timestamps 2 | #Tue Feb 20 10:09:44 CST 2018 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.rse.core/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.rse.core/.log -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.rse.core/initializerMarks/org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.rse.core/initializerMarks/org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.davids-mbp_519/FP.local.files_0/node.properties: -------------------------------------------------------------------------------- 1 | # RSE DOM Node 2 | 00-name=Davids-MBP\:local.files 3 | 01-type=FilterPool 4 | 03-attr.default=true 5 | 03-attr.deletable=true 6 | 03-attr.id=local.files 7 | 03-attr.nonRenamable=false 8 | 03-attr.owningParentName=null 9 | 03-attr.release=200 10 | 03-attr.singleFilterStringOnly=false 11 | 03-attr.singleFilterStringOnlyESet=false 12 | 03-attr.stringsCaseSensitive=true 13 | 03-attr.supportsDuplicateFilterStrings=false 14 | 03-attr.supportsNestedFilters=true 15 | 03-attr.type=default 16 | 06-child.00000.00-name=My Home 17 | 06-child.00000.01-type=Filter 18 | 06-child.00000.03-attr.default=false 19 | 06-child.00000.03-attr.filterType=default 20 | 06-child.00000.03-attr.id=My Home 21 | 06-child.00000.03-attr.nonChangable=false 22 | 06-child.00000.03-attr.nonDeletable=false 23 | 06-child.00000.03-attr.nonRenamable=false 24 | 06-child.00000.03-attr.promptable=false 25 | 06-child.00000.03-attr.relativeOrder=0 26 | 06-child.00000.03-attr.release=200 27 | 06-child.00000.03-attr.singleFilterStringOnly=false 28 | 06-child.00000.03-attr.stringsCaseSensitive=true 29 | 06-child.00000.03-attr.stringsNonChangable=false 30 | 06-child.00000.03-attr.supportsDuplicateFilterStrings=false 31 | 06-child.00000.03-attr.supportsNestedFilters=true 32 | 06-child.00000.06-child.00000.00-name=/Users/davidpitt/* 33 | 06-child.00000.06-child.00000.01-type=FilterString 34 | 06-child.00000.06-child.00000.03-attr.default=false 35 | 06-child.00000.06-child.00000.03-attr.string=/Users/davidpitt/* 36 | 06-child.00000.06-child.00000.03-attr.type=default 37 | 06-child.00001.00-name=Root 38 | 06-child.00001.01-type=Filter 39 | 06-child.00001.03-attr.default=false 40 | 06-child.00001.03-attr.filterType=default 41 | 06-child.00001.03-attr.id=Root 42 | 06-child.00001.03-attr.nonChangable=false 43 | 06-child.00001.03-attr.nonDeletable=false 44 | 06-child.00001.03-attr.nonRenamable=false 45 | 06-child.00001.03-attr.promptable=false 46 | 06-child.00001.03-attr.relativeOrder=0 47 | 06-child.00001.03-attr.release=200 48 | 06-child.00001.03-attr.singleFilterStringOnly=false 49 | 06-child.00001.03-attr.stringsCaseSensitive=true 50 | 06-child.00001.03-attr.stringsNonChangable=false 51 | 06-child.00001.03-attr.supportsDuplicateFilterStrings=false 52 | 06-child.00001.03-attr.supportsNestedFilters=true 53 | 06-child.00001.06-child.00000.00-name=/* 54 | 06-child.00001.06-child.00000.01-type=FilterString 55 | 06-child.00001.06-child.00000.03-attr.default=false 56 | 06-child.00001.06-child.00000.03-attr.string=/* 57 | 06-child.00001.06-child.00000.03-attr.type=default 58 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.davids-mbp_519/H.local_16/node.properties: -------------------------------------------------------------------------------- 1 | # RSE DOM Node 2 | 00-name=Local 3 | 01-type=Host 4 | 03-attr.description= 5 | 03-attr.hostname=LOCALHOST 6 | 03-attr.offline=false 7 | 03-attr.promptable=false 8 | 03-attr.systemType=org.eclipse.rse.systemtype.local 9 | 03-attr.type=Local 10 | 06-child.00000.00-name=Local Connector Service 11 | 06-child.00000.01-type=ConnectorService 12 | 06-child.00000.03-attr.group=Local Connector Service 13 | 06-child.00000.03-attr.port=0 14 | 06-child.00000.03-attr.useSSL=false 15 | 06-child.00000.06-child.00000.00-name=Local Files 16 | 06-child.00000.06-child.00000.01-type=SubSystem 17 | 06-child.00000.06-child.00000.03-attr.hidden=false 18 | 06-child.00000.06-child.00000.03-attr.type=local.files 19 | 06-child.00000.06-child.00000.06-child.00000.00-name=Davids-MBP___Davids-MBP\:local.files 20 | 06-child.00000.06-child.00000.06-child.00000.01-type=FilterPoolReference 21 | 06-child.00000.06-child.00000.06-child.00000.03-attr.refID=local.files 22 | 06-child.00000.06-child.00001.00-name=Local Shells 23 | 06-child.00000.06-child.00001.01-type=SubSystem 24 | 06-child.00000.06-child.00001.03-attr.hidden=false 25 | 06-child.00000.06-child.00001.03-attr.type=local.shells 26 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.davids-mbp_519/node.properties: -------------------------------------------------------------------------------- 1 | # RSE DOM Node 2 | 00-name=Davids-MBP 3 | 01-type=Profile 4 | 03-attr.defaultPrivate=true 5 | 03-attr.isActive=true 6 | 05-ref.00000=FP.local.files_0 7 | 05-ref.00001=H.local_16 8 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.rse.ui/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.eclipse.rse.ui/.log -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 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 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 |
114 | 115 | 116 |
117 |
118 | 119 | 120 |
121 |
122 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.springframework.ide.eclipse.aop.core/.state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.springframework.ide.eclipse.beans.core.metadata/metadata/.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.springframework.ide.eclipse.beans.core.metadata/metadata/.state -------------------------------------------------------------------------------- /.metadata/.plugins/org.springframework.ide.eclipse.beans.core.metadata/properties/.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-the-keyhole/khs-blockchain-java-example/78656c515ed33b4d9b28005dc87cf862d29c399e/.metadata/.plugins/org.springframework.ide.eclipse.beans.core.metadata/properties/.state -------------------------------------------------------------------------------- /.metadata/.plugins/org.springsource.ide.eclipse.commons.gettingstarted/dashboard/1519142818134/common/bootstrap/css/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap.js by @fat & @mdo 3 | * Copyright 2012 Twitter, Inc. 4 | * http://www.apache.org/licenses/LICENSE-2.0.txt 5 | */ 6 | !function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return e.fn.alert=r,this},e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")};var n=e.fn.button;e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return e.fn.button=n,this},e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},getActiveIndex:function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},to:function(t){var n=this.getActiveIndex(),r=this;if(t>this.$items.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){r.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",e(this.$items[t]))},pause:function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(t,n){var r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0],direction:o});if(i.hasClass("active"))return;this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var t=e(a.$indicators.children()[a.getActiveIndex()]);t&&t.addClass("active")}));if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$element.one(e.support.transition.end,function(){i.removeClass([t,o].join(" ")).addClass("active"),r.removeClass(["active",o].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger("slid")},0)})}else{this.$element.trigger(f);if(f.isDefaultPrevented())return;r.removeClass("active"),i.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return s&&this.cycle(),this}};var n=e.fn.carousel;e.fn.carousel=function(n){return this.each(function(){var r=e(this),i=r.data("carousel"),s=e.extend({},e.fn.carousel.defaults,typeof n=="object"&&n),o=typeof n=="string"?n:s.slide;i||r.data("carousel",i=new t(this,s)),typeof n=="number"?i.to(n):o?i[o]():s.interval&&i.pause().cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e.fn.carousel.noConflict=function(){return e.fn.carousel=n,this},e(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(t){var n=e(this),r,i=e(n.attr("data-target")||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,"")),s=e.extend({},i.data(),n.data()),o;i.carousel(s),(o=n.attr("data-slide-to"))&&i.data("carousel").pause().to(o).cycle(),t.preventDefault()})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.collapse.defaults,n),this.options.parent&&(this.$parent=e(this.options.parent)),this.options.toggle&&this.toggle()};t.prototype={constructor:t,dimension:function(){var e=this.$element.hasClass("width");return e?"width":"height"},show:function(){var t,n,r,i;if(this.transitioning||this.$element.hasClass("in"))return;t=this.dimension(),n=e.camelCase(["scroll",t].join("-")),r=this.$parent&&this.$parent.find("> .accordion-group > .in");if(r&&r.length){i=r.data("collapse");if(i&&i.transitioning)return;r.collapse("hide"),i||r.data("collapse",null)}this.$element[t](0),this.transition("addClass",e.Event("show"),"shown"),e.support.transition&&this.$element[t](this.$element[0][n])},hide:function(){var t;if(this.transitioning||!this.$element.hasClass("in"))return;t=this.dimension(),this.reset(this.$element[t]()),this.transition("removeClass",e.Event("hide"),"hidden"),this.$element[t](0)},reset:function(e){var t=this.dimension();return this.$element.removeClass("collapse")[t](e||"auto")[0].offsetWidth,this.$element[e!==null?"addClass":"removeClass"]("collapse"),this},transition:function(t,n,r){var i=this,s=function(){n.type=="show"&&i.reset(),i.transitioning=0,i.$element.trigger(r)};this.$element.trigger(n);if(n.isDefaultPrevented())return;this.transitioning=1,this.$element[t]("in"),e.support.transition&&this.$element.hasClass("collapse")?this.$element.one(e.support.transition.end,s):s()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var n=e.fn.collapse;e.fn.collapse=function(n){return this.each(function(){var r=e(this),i=r.data("collapse"),s=e.extend({},e.fn.collapse.defaults,r.data(),typeof n=="object"&&n);i||r.data("collapse",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.collapse.defaults={toggle:!0},e.fn.collapse.Constructor=t,e.fn.collapse.noConflict=function(){return e.fn.collapse=n,this},e(document).on("click.collapse.data-api","[data-toggle=collapse]",function(t){var n=e(this),r,i=n.attr("data-target")||t.preventDefault()||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,""),s=e(i).data("collapse")?"toggle":n.data();n[e(i).hasClass("in")?"addClass":"removeClass"]("collapsed"),e(i).collapse(s)})}(window.jQuery),!function(e){"use strict";function r(){e(".dropdown-backdrop").remove(),e(t).each(function(){i(e(this)).removeClass("open")})}function i(t){var n=t.attr("data-target"),r;n||(n=t.attr("href"),n=n&&/#/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,"")),r=n&&e(n);if(!r||!r.length)r=t.parent();return r}var t="[data-toggle=dropdown]",n=function(t){var n=e(t).on("click.dropdown.data-api",this.toggle);e("html").on("click.dropdown.data-api",function(){n.parent().removeClass("open")})};n.prototype={constructor:n,toggle:function(t){var n=e(this),s,o;if(n.is(".disabled, :disabled"))return;return s=i(n),o=s.hasClass("open"),r(),o||("ontouchstart"in document.documentElement&&e('