Skip to content

Commit 4f2b6ed

Browse files
1.0.0-rc4
1 parent 0ddc257 commit 4f2b6ed

File tree

8 files changed

+115
-3
lines changed

8 files changed

+115
-3
lines changed

onixlabs-corda-core-integration/src/main/kotlin/io/onixlabs/corda/core/integration/MessageAcknowledgementService.kt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/**
2+
* Copyright 2020 Matthew Layton
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package io.onixlabs.corda.core.integration
218

319
import io.onixlabs.corda.core.workflow.MessageAcknowledgement

onixlabs-corda-core-integration/src/main/kotlin/io/onixlabs/corda/core/integration/MessageService.kt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/**
2+
* Copyright 2020 Matthew Layton
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package io.onixlabs.corda.core.integration
218

319
import io.onixlabs.corda.core.workflow.Message

onixlabs-corda-core-integration/src/main/kotlin/io/onixlabs/corda/core/integration/RPCService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ import net.corda.core.messaging.CordaRPCOps
2727
*/
2828
abstract class RPCService(val rpc: CordaRPCOps) {
2929
protected val ourIdentity: Party get() = rpc.nodeInfo().legalIdentities.first()
30-
}
30+
}

onixlabs-corda-core-integration/src/main/kotlin/io/onixlabs/corda/core/integration/TransactionNoteService.kt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/**
2+
* Copyright 2020 Matthew Layton
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package io.onixlabs.corda.core.integration
218

319
import io.onixlabs.corda.core.workflow.SendTransactionNoteFlow
@@ -22,4 +38,4 @@ class TransactionNoteService(rpc: CordaRPCOps) : RPCService(rpc) {
2238
)
2339
}
2440
}
25-
}
41+
}

onixlabs-corda-core-workflow/src/main/kotlin/io/onixlabs/corda/core/workflow/ReceiveMessageAcknowledgementFlow.kt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/**
2+
* Copyright 2020 Matthew Layton
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package io.onixlabs.corda.core.workflow
218

319
import co.paralleluniverse.fibers.Suspendable

onixlabs-corda-core-workflow/src/main/kotlin/io/onixlabs/corda/core/workflow/ReceiveTransactionNoteFlow.kt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/**
2+
* Copyright 2020 Matthew Layton
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package io.onixlabs.corda.core.workflow
218

319
import co.paralleluniverse.fibers.Suspendable

onixlabs-corda-core-workflow/src/main/kotlin/io/onixlabs/corda/core/workflow/SendTransactionNoteFlow.kt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/**
2+
* Copyright 2020 Matthew Layton
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package io.onixlabs.corda.core.workflow
218

319
import co.paralleluniverse.fibers.Suspendable

onixlabs-corda-core-workflow/src/main/kotlin/io/onixlabs/corda/core/workflow/TransactionNote.kt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/**
2+
* Copyright 2020 Matthew Layton
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package io.onixlabs.corda.core.workflow
218

319
import net.corda.core.crypto.SecureHash
@@ -10,4 +26,4 @@ import net.corda.core.serialization.CordaSerializable
1026
* @property text The transaction note text.
1127
*/
1228
@CordaSerializable
13-
data class TransactionNote(val transactionId: SecureHash, val text: String)
29+
data class TransactionNote(val transactionId: SecureHash, val text: String)

0 commit comments

Comments
 (0)