-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If applied, this commit will add new multi lb messages.
- Loading branch information
1 parent
e6f0dd1
commit 79dc5a8
Showing
4 changed files
with
47 additions
and
2 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
15 changes: 15 additions & 0 deletions
15
src/main/java/dlt/client/tangle/model/transactions/LBMultiRequest.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,15 @@ | ||
package dlt.client.tangle.model.transactions; | ||
|
||
import dlt.client.tangle.enums.TransactionType; | ||
|
||
/** | ||
* | ||
* @author Uellington Damasceno | ||
*/ | ||
public class LBMultiRequest extends TargetedTransaction { | ||
|
||
public LBMultiRequest(String source, String group, String target) { | ||
super(source, group, TransactionType.LB_MULTI_REQUEST, target); | ||
} | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/dlt/client/tangle/model/transactions/LBMultiResponse.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,15 @@ | ||
package dlt.client.tangle.model.transactions; | ||
|
||
import dlt.client.tangle.enums.TransactionType; | ||
|
||
/** | ||
* | ||
* @author Uellington Damasceno | ||
*/ | ||
public class LBMultiResponse extends TargetedTransaction { | ||
|
||
public LBMultiResponse(String source, String group, String target) { | ||
super(source, group, TransactionType.LB_MULTI_RESPONSE, target); | ||
} | ||
|
||
} |
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