Corda is an open source blockchain project, designed for business from the start. Only Corda allows you to build interoperable blockchain networks that transact in strict privacy. Corda's smart contract technology allows businesses to transact directly, with value.
Go to file
Anthony Keenan b24ec9f680 CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534)
* CORDA-939 Modify Api Scanner to check api for internal exposures (#2510)

* Update check api changes to look for internals

* Update several more uses of internal

* Make check-api-changes script filter out internal class usages

* Make CordaClock part of API

* Update api-current.txt

* Remove exclusion of nodeapi.internal

* Remove access to CordaPersistence from public api

* Don't expose DB Connection from StartedMockNode and remove unnecessary transaction from CustomVaultQueryTest

* Make internal tests that use need db access use InternalMockNetwork

* Make test certificates internal

* Address further review comments

* Revert some accidental changes to api-current.txt

* Address Shams' review comments

* Update Api Scanner to filter out CordaInternal attribute

* Update api-current.txt

* Remove superfluous brackets

* Add transaction to StartedMockNode

* More leaky transaction fixes

# Conflicts:
#	.ci/api-current.txt
#	node-api/src/test/kotlin/net/corda/nodeapi/internal/AttachmentsClassLoaderStaticContractTests.kt
#	node-api/src/test/kotlin/net/corda/nodeapi/internal/AttachmentsClassLoaderTests.kt
#	node/src/integration-test/kotlin/net/corda/node/services/AttachmentLoadingTests.kt
#	node/src/test/kotlin/net/corda/node/internal/cordapp/CordappProviderImplTests.kt
#	testing/node-driver/src/main/kotlin/net/corda/testing/node/internal/InternalMockNetwork.kt
#	testing/test-utils/src/main/kotlin/net/corda/testing/internal/MockCordappConfigProvider.kt
#	testing/test-utils/src/main/kotlin/net/corda/testing/internal/MockCordappProvider.kt

* Bump gradle plugins version

* One last internal exposure

* Update constants.properties

* Fix api-current

* Address mikes review comments
2018-02-16 15:22:13 +00:00
.ci CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
.github Adjustments to the PR checklist 2017-09-20 16:58:31 +02:00
.idea CORDA-995: r3corda wire compatibility (#2497) 2018-02-12 10:09:47 +00:00
buildSrc Reformat files in buildSrc 2017-10-09 15:26:39 +01:00
client Test driver default parameters removal (#2519) (#2525) 2018-02-14 10:24:16 +00:00
confidential-identities CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
config Removed useHTTPS from NodeConfiguration as it's not needed by the node. (#2375) 2018-01-17 17:47:40 +00:00
core CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
docs CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
experimental No IdentityServiceInternal as public param. Start nodes without params. Simpler MockServices ctors. (#2521) 2018-02-13 11:32:04 +00:00
finance CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
gradle/wrapper Upgrade gradle to 4.4.1 2018-01-24 16:15:43 +00:00
gradle-plugins CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
lib Restoring lib/quasar.jar from repo (#1389) 2017-09-05 12:58:23 +01:00
node CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
node-api CORDA-1032 - unnamed ctor param serialization issue (#2535) 2018-02-15 09:00:48 +00:00
samples Test driver default parameters removal (#2519) (#2525) 2018-02-14 10:24:16 +00:00
testing CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
tools CORDA-1011 Add powershell script to update testing package imports (#2528) (#2549) 2018-02-16 13:31:41 +00:00
verifier Test driver default parameters removal (#2519) (#2525) 2018-02-14 10:24:16 +00:00
webserver Exposed RPC SSL settings through Cordformation (#2419) 2018-01-25 14:32:58 +00:00
.gitignore CORDA-881: Signed network parameters has the network map cert attached to it instead of just the public key. (#2346) 2018-01-12 07:59:08 +00:00
build.gradle CORDA-966 - RELEASE - Rename current build version to reflect health check status (#2556) 2018-02-16 13:32:09 +00:00
constants.properties CORDA-939 - Modify Api Scanner to check api for internal exposures (#2534) 2018-02-16 15:22:13 +00:00
CONTRIBUTING.md Addressed some review comments about the license and readmes. 2016-11-22 11:56:46 +00:00
CONTRIBUTORS.md Some additional contributors recognised 2017-11-30 16:30:58 +01:00
gradle.properties CORDA-692 Don't include internal packages in API documentation (#2415) 2018-01-25 15:26:13 +00:00
gradlew Upgraded to gradle 4.1. 2017-08-23 15:36:08 +01:00
gradlew.bat Upgrade gradle to 4.4.1 2018-01-24 16:15:43 +00:00
LICENSE Update LICENSE 2017-03-06 15:33:29 +01:00
README.md Reflects tutorial changes and CorDapp build docs changes from release-V1. 2017-11-16 15:31:52 +00:00
settings.gradle CORDA-830 Introducing the network bootstrapper 2017-12-17 23:49:57 +00:00
TRADEMARK Updated URL link to R3 trademark policy 2017-07-13 11:43:41 +01:00

Corda

Corda

Corda is a decentralised database system in which nodes trust each other as little as possible.

Features

  • Smart contracts that can be written in Java and other JVM languages
  • Flow framework to manage communication and negotiation between participants
  • Peer-to-peer network of nodes
  • "Notary" infrastructure to validate uniqueness and sequencing of transactions without global broadcast
  • Enables the development and deployment of distributed apps called CorDapps
  • Written in Kotlin, targeting the JVM

Getting started

  1. Read the Getting Started documentation
  2. Run the Example CorDapp
  3. Read about Corda's Key Concepts
  4. Follow the Hello, World! tutorial

Contributing

Please read here.

License

Apache 2.0

Acknowledgements

YourKit

YourKit supports open source projects with its full-featured Java Profiler.

YourKit, LLC is the creator of YourKit Java Profiler and YourKit .NET Profiler, innovative and intelligent tools for profiling Java and .NET applications.