Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

/**
* Signals that a problem occurred while performing an AML check
*
* @deprecated The AML check service has been discontinued and this class is no longer used.
* This API will be removed in the next major release.
*/
@Deprecated
public class AmlException extends Exception {

private static final long serialVersionUID = 3210133542178934016L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@ public ActivityDetails getActivityDetails(String encryptedYotiToken) throws Prof
*
* @throws AmlException
* aggregate exception signalling issues during the call
*
* @deprecated The AML check service has been discontinued and this call will no longer succeed.
* This API will be removed in the next major release.
*/
@Deprecated
public AmlResult performAmlCheck(AmlProfile amlProfile) throws AmlException {
LOG.debug("Performing aml check...");
return remoteAmlService.performCheck(amlProfile);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

import com.fasterxml.jackson.annotation.JsonProperty;

/**
* @deprecated The AML check service has been discontinued and this class is no longer used.
* This API will be removed in the next major release.
*/
@Deprecated
public class AmlAddress {

@JsonProperty("post_code")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

import com.fasterxml.jackson.annotation.JsonProperty;

/**
* @deprecated The AML check service has been discontinued and this class is no longer used.
* This API will be removed in the next major release.
*/
@Deprecated
public class AmlProfile {

@JsonProperty("given_names")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

/**
* The results of the aml check.
*
* @deprecated The AML check service has been discontinued and this class is no longer used.
* This API will be removed in the next major release.
*/
@Deprecated
public class AmlResult {

@JsonProperty("on_fraud_list")
Expand Down
Loading