-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/os/5.0' into amiegrace12/DOC-4835/base-docs-review
- Loading branch information
Showing
266 changed files
with
3,567 additions
and
2,823 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
application/src/main/java/net/corda/v5/application/flows/FlowContextPropertyKeys.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package net.corda.v5.application.flows; | ||
|
||
public final class FlowContextPropertyKeys { | ||
|
||
private FlowContextPropertyKeys() { | ||
} | ||
|
||
public static final String CPI_NAME = "corda.cpiName"; | ||
public static final String CPI_VERSION = "corda.cpiVersion"; | ||
public static final String CPI_SIGNER_SUMMARY_HASH = "corda.cpiSignerSummaryHash"; | ||
public static final String CPI_FILE_CHECKSUM = "corda.cpiFileChecksum"; | ||
public static final String CPK_FILE_CHECKSUM = "corda.cpkFileChecksum"; | ||
public static final String INITIAL_PLATFORM_VERSION = "corda.initialPlatformVersion"; | ||
public static final String INITIAL_SOFTWARE_VERSION = "corda.initialSoftwareVersion"; | ||
} |
Oops, something went wrong.