This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Complete asset transfers management (close #38)
- Loading branch information
1 parent
44ee9a0
commit 8145520
Showing
5 changed files
with
213 additions
and
75 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package storage; | ||
|
||
public class PropertyUpdateData { | ||
private final String propertyId; | ||
private final String contractInstanceId; | ||
private final String unlockScript; | ||
|
||
public PropertyUpdateData(String propertyId, String contractInstanceId, String unlockScript) { | ||
this.propertyId = propertyId; | ||
this.contractInstanceId = contractInstanceId; | ||
this.unlockScript = unlockScript; | ||
} | ||
|
||
public String getPropertyId() { | ||
return propertyId; | ||
} | ||
|
||
public String getContractInstanceId() { | ||
return contractInstanceId; | ||
} | ||
|
||
public String getUnlockScript() { | ||
return unlockScript; | ||
} | ||
} |
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
Oops, something went wrong.