Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #1 from markusgeiss/develop
added MICR resolution for on us cheques
- Loading branch information
Showing
18 changed files
with
615 additions
and
16 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
@@ -0,0 +1,19 @@ | ||
/* | ||
* Copyright 2017 Kuelap, Inc. | ||
* | ||
* All Rights Reserved. | ||
* | ||
* NOTICE: All information contained herein is, and remains | ||
* the property of Kuelap, Inc and its suppliers, if any. | ||
* The intellectual and technical concepts contained herein | ||
* are proprietary to Kuelap, Inc and its suppliers and may | ||
* be covered by U.S. and Foreign Patents, patents in process, | ||
* and are protected by trade secret or copyright law. | ||
* Dissemination of this information or reproduction of this material | ||
* is strictly forbidden unless prior written permission is obtained | ||
* Kuelap, Inc. | ||
*/ | ||
package io.mifos.cheque.api.v1.client; | ||
|
||
public class DependingResourceNotValidException extends RuntimeException { | ||
} |
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
@@ -0,0 +1,19 @@ | ||
/* | ||
* Copyright 2017 Kuelap, Inc. | ||
* | ||
* All Rights Reserved. | ||
* | ||
* NOTICE: All information contained herein is, and remains | ||
* the property of Kuelap, Inc and its suppliers, if any. | ||
* The intellectual and technical concepts contained herein | ||
* are proprietary to Kuelap, Inc and its suppliers and may | ||
* be covered by U.S. and Foreign Patents, patents in process, | ||
* and are protected by trade secret or copyright law. | ||
* Dissemination of this information or reproduction of this material | ||
* is strictly forbidden unless prior written permission is obtained | ||
* Kuelap, Inc. | ||
*/ | ||
package io.mifos.cheque.api.v1.client; | ||
|
||
public class InvalidChequeNumberException extends RuntimeException { | ||
} |
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
@@ -0,0 +1,42 @@ | ||
/* | ||
* Copyright 2017 Kuelap, Inc. | ||
* | ||
* All Rights Reserved. | ||
* | ||
* NOTICE: All information contained herein is, and remains | ||
* the property of Kuelap, Inc and its suppliers, if any. | ||
* The intellectual and technical concepts contained herein | ||
* are proprietary to Kuelap, Inc and its suppliers and may | ||
* be covered by U.S. and Foreign Patents, patents in process, | ||
* and are protected by trade secret or copyright law. | ||
* Dissemination of this information or reproduction of this material | ||
* is strictly forbidden unless prior written permission is obtained | ||
* Kuelap, Inc. | ||
*/ | ||
package io.mifos.cheque.api.v1.domain; | ||
|
||
public class MICRResolution { | ||
|
||
private String office; | ||
private String customer; | ||
|
||
public MICRResolution() { | ||
super(); | ||
} | ||
|
||
public String getOffice() { | ||
return this.office; | ||
} | ||
|
||
public void setOffice(final String office) { | ||
this.office = office; | ||
} | ||
|
||
public String getCustomer() { | ||
return this.customer; | ||
} | ||
|
||
public void setCustomer(final String customer) { | ||
this.customer = customer; | ||
} | ||
} |
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
Oops, something went wrong.