-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ravikp/rename-uuid
feat(#444): [Bhargavi|Adityan] [Android] refactor tuvali gatt service to match the spec
- Loading branch information
Showing
11 changed files
with
71 additions
and
64 deletions.
There are no files selected for viewing
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
4 changes: 2 additions & 2 deletions
4
...ava/io/mosip/tuvali/transfer/Semaphore.kt → .../tuvali/transfer/TransferReportRequest.kt
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
2 changes: 1 addition & 1 deletion
2
...n/java/io/mosip/tuvali/verifier/transfer/message/ChunkReadByRemoteStatusUpdatedMessage.kt
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package io.mosip.tuvali.verifier.transfer.message | ||
|
||
class ChunkReadByRemoteStatusUpdatedMessage(val semaphoreCharValue: Int): IMessage(TransferMessageTypes.CHUNK_READ_BY_REMOTE_STATUS_UPDATED) {} | ||
class ChunkReadByRemoteStatusUpdatedMessage(val transferReportRequestCharValue: Int): IMessage(TransferMessageTypes.CHUNK_READ_BY_REMOTE_STATUS_UPDATED) {} |
2 changes: 1 addition & 1 deletion
2
...in/java/io/mosip/tuvali/verifier/transfer/message/RemoteRequestedTransferReportMessage.kt
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package io.mosip.tuvali.verifier.transfer.message | ||
|
||
class RemoteRequestedTransferReportMessage(val semaphoreCharValue: Int): IMessage(TransferMessageTypes.REMOTE_REQUESTED_TRANSFER_REPORT) {} | ||
class RemoteRequestedTransferReportMessage(val transferReportRequestCharValue: Int): IMessage(TransferMessageTypes.REMOTE_REQUESTED_TRANSFER_REPORT) {} |
2 changes: 1 addition & 1 deletion
2
...n/java/io/mosip/tuvali/verifier/transfer/message/UpdateChunkWroteStatusToRemoteMessage.kt
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package io.mosip.tuvali.verifier.transfer.message | ||
|
||
class UpdateChunkWroteStatusToRemoteMessage(val semaphoreCharValue: Int): IMessage(TransferMessageTypes.UPDATE_CHUNK_WROTE_STATUS_TO_REMOTE) {} | ||
class UpdateChunkWroteStatusToRemoteMessage(val transferReportRequestCharValue: Int): IMessage(TransferMessageTypes.UPDATE_CHUNK_WROTE_STATUS_TO_REMOTE) {} |
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
2 changes: 1 addition & 1 deletion
2
...in/java/io/mosip/tuvali/wallet/transfer/message/ChunkWriteToRemoteStatusUpdatedMessage.kt
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package io.mosip.tuvali.wallet.transfer.message | ||
|
||
class ChunkWriteToRemoteStatusUpdatedMessage(val semaphoreCharValue: Int): IMessage(TransferMessageTypes.CHUNK_WRITE_TO_REMOTE_STATUS_UPDATED) {} | ||
class ChunkWriteToRemoteStatusUpdatedMessage(val transferReportRequestCharValue: Int): IMessage(TransferMessageTypes.CHUNK_WRITE_TO_REMOTE_STATUS_UPDATED) {} |