-
Notifications
You must be signed in to change notification settings - Fork 948
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
f846a32
commit 625ea60
Showing
7 changed files
with
76 additions
and
38 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
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
25 changes: 25 additions & 0 deletions
25
.../chrisrichardson/eventstore/javaexamples/banking/common/accounts/GetAccountsResponse.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,25 @@ | ||
package net.chrisrichardson.eventstore.javaexamples.banking.common.accounts; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* Created by popikyardo on 9/1/16. | ||
*/ | ||
public class GetAccountsResponse { | ||
private List<GetAccountResponse> accounts; | ||
|
||
public GetAccountsResponse() { | ||
} | ||
|
||
public GetAccountsResponse(List<GetAccountResponse> accounts) { | ||
this.accounts = accounts; | ||
} | ||
|
||
public List<GetAccountResponse> getAccounts() { | ||
return accounts; | ||
} | ||
|
||
public void setAccounts(List<GetAccountResponse> accounts) { | ||
this.accounts = accounts; | ||
} | ||
} |
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