/ccfd-api-java

minFraud Java API

Primary LanguageJavaGNU Lesser General Public License v2.1LGPL-2.1

Maxmind minFraud Java API

Installation

We recommend installing this package with Maven. To do this, add the dependency to your pom.xml:

    <dependency>
        <groupId>com.maxmind.ws</groupId>
        <artifactId>minfraud-api</artifactId>
        <version>1.70</version>
    </dependency>

If you install by hand, you will need Apache HttpComponents.

Example programs

  • sample/Example.java - how to use the API with minFraud service.

API Documentation for minFraud service

ccfs = new CreditCardFraudDetection(boolean s);

This creates a new CreditCardFraudDetection object and set isSecure to s if isSecure is false then it uses regular HTTP. if isSecure is true then it uses secure HTTPS.

ccfs.input(HashMap h);

Takes a Hashmap and uses it as input for the server See http://dev.maxmind.com/minfraud for details on input fields.

ccfs.query();

Queries the server with the fields passed to the input method and stores the output.

HashMap h = ccfs.output();

Returns the HashMap containing the output from the server. See http://dev.maxmind.com/minfraud for details on output fields.

Copyright and License

Copyright (c) 2007, MaxMind LLC

All rights reserved. This package is licensed under the GNU Lesser General Public License version 2.1 or later. For details see the LICENSE file.