com.braintreegateway.AuthenticationInsight Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.braintree-java
Show all versions of org.apache.servicemix.bundles.braintree-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
package com.braintreegateway;
import com.braintreegateway.util.NodeWrapper;
import java.util.Map;
public class AuthenticationInsight {
private String regulationEnvironment;
private String scaIndicator;
private String message;
public AuthenticationInsight(NodeWrapper node) {
regulationEnvironment = node.findString("regulation-environment");
scaIndicator = node.findString("sca-indicator");
message = node.findString("message");
}
public AuthenticationInsight(Map map) {
regulationEnvironment = (String) map.get("regulationEnvironment");
scaIndicator = (String) map.get("scaIndicator");
message = (String) map.get("message");
}
public String getRegulationEnvironment() {
return regulationEnvironment;
}
public String getScaIndicator() {
return scaIndicator;
}
public String getMessage() {
return message;
}
}