Skip to content

Commit fcc293a

Browse files
committedNov 24, 2021
Merge branch 'main' into release
2 parents 0e7fd94 + 53e47ae commit fcc293a

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![ONIX Labs](https://raw.githubusercontent.com/onix-labs/onix-labs.github.io/master/content/logo/master_full_md.png)
1+
![ONIX Labs](https://raw.githubusercontent.com/onix-labs/onixlabs-website/main/src/assets/images/logo/full/original/original-md.png)
22

33
# ONIXLabs Corda Identity Framework
44

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
junit_version = '5.3.1'
1515

1616
onixlabs_group = 'io.onixlabs'
17-
onixlabs_corda_core_release_version = '3.0.0'
17+
onixlabs_corda_core_release_version = '3.1.0'
1818

1919
cordapp_platform_version = 10
2020
cordapp_contract_name = 'ONIXLabs Corda Identity Framework Contract'

‎gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=onixlabs-corda-identity-framework
22
group=io.onixlabs
3-
version=3.0.0
3+
version=3.1.0
44
onixlabs.development.jarsign.keystore=../lib/onixlabs.development.pkcs12
55
onixlabs.development.jarsign.password=5891f47942424d2acbe108691fdb5ba258712fca7e4762be4327241ebf3dbfa3

‎onixlabs-corda-identity-framework-workflow/src/main/kotlin/io/onixlabs/corda/identityframework/workflow/accounts/GetAccountStateRefsByClaimFlow.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class GetAccountStateRefsByClaimFlow(
3737
private val property: String? = null,
3838
private val value: Any? = null,
3939
private val hash: SecureHash? = null
40-
) : FlowLogic<List<StateRef>>() {
40+
) : FlowLogic<List<StateRef>?>() {
4141

4242
private companion object {
4343

@@ -53,8 +53,8 @@ class GetAccountStateRefsByClaimFlow(
5353
}
5454

5555
@Suspendable
56-
override fun call(): List<StateRef> {
57-
return if (property == null && value == null && hash == null) emptyList() else executeQuery()
56+
override fun call(): List<StateRef>? {
57+
return if (property == null && value == null && hash == null) null else executeQuery()
5858
}
5959

6060
/**

‎onixlabs-corda-identity-framework-workflow/src/test/kotlin/io/onixlabs/corda/identityframework/workflow/accounts/VaultServiceAccountClaimQueryTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ class VaultServiceAccountClaimQueryTests : FlowTest() {
242242
property: String? = null,
243243
value: Any? = null,
244244
hash: SecureHash? = null
245-
): List<StateRef> {
245+
): List<StateRef>? {
246246
return Pipeline
247247
.create(network)
248248
.run(this) { GetAccountStateRefsByClaimFlow(property, value, hash) }

‎onixlabs-corda-identity-framework-workflow/src/test/kotlin/io/onixlabs/corda/identityframework/workflow/attestations/VaultServiceAttestationsQueryTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class VaultServiceAttestationsQueryTests : FlowTest() {
7878
listOf(nodeA, nodeB, nodeC).forEach {
7979
val results = it.services.vaultServiceFor<Attestation<CordaClaim<String>>>().filter {
8080
stateStatus(Vault.StateStatus.ALL)
81-
externalIds(attestation.state.data.linearId.externalId)
81+
externalIds(attestation.state.data.linearId.externalId!!)
8282
attestationType()
8383
}
8484

‎onixlabs-corda-identity-framework-workflow/src/test/kotlin/io/onixlabs/corda/identityframework/workflow/claims/VaultServiceClaimQueryTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class VaultServiceClaimQueryTests : FlowTest() {
6262
listOf(nodeA, nodeB, nodeC).forEach {
6363
val result = it.services.vaultServiceFor<CordaClaim<String>>().singleOrNull {
6464
stateStatus(Vault.StateStatus.UNCONSUMED)
65-
externalIds(claim.state.data.linearId.externalId)
65+
externalIds(claim.state.data.linearId.externalId!!)
6666
claimType()
6767
}
6868

‎onixlabs-corda-identity-framework-workflow/src/test/kotlin/io/onixlabs/corda/identityframework/workflow/claims/VaultServiceClaimsQueryTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class VaultServiceClaimsQueryTests : FlowTest() {
9898
listOf(nodeA, nodeB, nodeC).forEach {
9999
val results = it.services.vaultServiceFor<CordaClaim<*>>().filter {
100100
stateStatus(Vault.StateStatus.ALL)
101-
externalIds(CLAIM_1.linearId.externalId)
101+
externalIds(CLAIM_1.linearId.externalId!!)
102102
claimType()
103103
}
104104

‎onixlabs-test-cordapp-workflow/src/test/kotlin/io/onixlabs/test/cordapp/workflow/attestations/VaultServiceAttestationsQueryTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class VaultServiceAttestationsQueryTests : FlowTest() {
8181
listOf(nodeA, nodeB, nodeC).forEach {
8282
val results = it.services.vaultServiceFor<Attestation<*>>().filter {
8383
stateStatus(Vault.StateStatus.ALL)
84-
externalIds(attestation.state.data.linearId.externalId)
84+
externalIds(attestation.state.data.linearId.externalId!!)
8585
attestationType()
8686
}
8787

0 commit comments

Comments
 (0)