-
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.
Merge branch 'master' into mitch/add_user_route_verification_against_…
…session_user
- Loading branch information
Showing
40 changed files
with
1,169 additions
and
53 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "4.2.1" | ||
".": "4.7.3" | ||
} |
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
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
40 changes: 40 additions & 0 deletions
40
...dels/src/main/java/com/mx/path/model/mdx/accessor/account/AccountDetailsBaseAccessor.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,40 @@ | ||
package com.mx.path.model.mdx.accessor.account; | ||
|
||
import com.mx.path.core.common.accessor.API; | ||
import com.mx.path.core.common.accessor.AccessorMethodNotImplementedException; | ||
import com.mx.path.core.common.gateway.GatewayAPI; | ||
import com.mx.path.core.common.gateway.GatewayClass; | ||
import com.mx.path.gateway.accessor.Accessor; | ||
import com.mx.path.gateway.accessor.AccessorConfiguration; | ||
import com.mx.path.gateway.accessor.AccessorResponse; | ||
import com.mx.path.model.mdx.model.account.AccountDetails; | ||
|
||
/** | ||
* Accessor base for account details operations | ||
*/ | ||
@GatewayClass | ||
@API(specificationUrl = "https://developer.mx.com/drafts/mdx/accounts/index.html#accounts-account-details-additional") | ||
public abstract class AccountDetailsBaseAccessor extends Accessor { | ||
public AccountDetailsBaseAccessor() { | ||
} | ||
|
||
/** | ||
* @param configuration | ||
* @deprecated Use the default constructor, the configuration is set by the accessor construction context code | ||
*/ | ||
@Deprecated | ||
public AccountDetailsBaseAccessor(AccessorConfiguration configuration) { | ||
super(configuration); | ||
} | ||
|
||
/** | ||
* Gets additional details for a given account | ||
* @param id | ||
* @return | ||
*/ | ||
@GatewayAPI | ||
@API(description = "Get additional details about an account that aren't supported by the MX platform") | ||
public AccessorResponse<AccountDetails> get(String id) { | ||
throw new AccessorMethodNotImplementedException(); | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
...ls/src/main/java/com/mx/path/model/mdx/accessor/account/AccountOverdraftBaseAccessor.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,52 @@ | ||
package com.mx.path.model.mdx.accessor.account; | ||
|
||
import com.mx.path.core.common.accessor.API; | ||
import com.mx.path.core.common.accessor.AccessorMethodNotImplementedException; | ||
import com.mx.path.core.common.gateway.GatewayAPI; | ||
import com.mx.path.core.common.gateway.GatewayClass; | ||
import com.mx.path.gateway.accessor.Accessor; | ||
import com.mx.path.gateway.accessor.AccessorConfiguration; | ||
import com.mx.path.gateway.accessor.AccessorResponse; | ||
import com.mx.path.model.mdx.model.account.Overdraft; | ||
|
||
/** | ||
* Accessor base for account overdraft operations | ||
*/ | ||
@GatewayClass | ||
@API(specificationUrl = "https://developer.mx.com/drafts/mdx/accounts/index.html#accounts-overdraft") | ||
public abstract class AccountOverdraftBaseAccessor extends Accessor { | ||
public AccountOverdraftBaseAccessor() { | ||
} | ||
|
||
/** | ||
* @param configuration | ||
* @deprecated Use the default constructor, the configuration is set by the accessor construction context code | ||
*/ | ||
@Deprecated | ||
public AccountOverdraftBaseAccessor(AccessorConfiguration configuration) { | ||
super(configuration); | ||
} | ||
|
||
/** | ||
* Gets overdraft values for a given account | ||
* @param id | ||
* @return | ||
*/ | ||
@GatewayAPI | ||
@API(description = "Retrieves overdraft values for a given account") | ||
public AccessorResponse<Overdraft> get(String id) { | ||
throw new AccessorMethodNotImplementedException(); | ||
} | ||
|
||
/** | ||
* Updates overdraft values for a given account | ||
* @param id | ||
* @param overdraft | ||
* @return | ||
*/ | ||
@GatewayAPI | ||
@API(description = "Updates the overdraft values for a given account") | ||
public AccessorResponse<Overdraft> update(String id, Overdraft overdraft) { | ||
throw new AccessorMethodNotImplementedException(); | ||
} | ||
} |
Oops, something went wrong.