-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b31b60e
commit 1c8298a
Showing
12 changed files
with
408 additions
and
148 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
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
41 changes: 41 additions & 0 deletions
41
...flows/src/main/java/com/r3/developers/samples/tokens/workflows/BurnGoldTokenFLowArgs.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,41 @@ | ||
package com.r3.developers.samples.tokens.workflows; | ||
|
||
public class BurnGoldTokenFLowArgs { | ||
|
||
public BurnGoldTokenFLowArgs() { | ||
} | ||
|
||
private String symbol; | ||
private String issuer; | ||
private String amount; | ||
|
||
public BurnGoldTokenFLowArgs(String symbol, String issuer, String amount) { | ||
this.symbol = symbol; | ||
this.issuer = issuer; | ||
this.amount = amount; | ||
} | ||
|
||
public String getSymbol() { | ||
return symbol; | ||
} | ||
|
||
public void setSymbol(String symbol) { | ||
this.symbol = symbol; | ||
} | ||
|
||
public String getIssuer() { | ||
return issuer; | ||
} | ||
|
||
public void setIssuer(String issuer) { | ||
this.issuer = issuer; | ||
} | ||
|
||
public String getAmount() { | ||
return amount; | ||
} | ||
|
||
public void setAmount(String amount) { | ||
this.amount = amount; | ||
} | ||
} |
Oops, something went wrong.