Skip to content

trobison/ccfd-api-java

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.60</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.
  • sample/Telv_Example.java - using the API with the Telephone Verification 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.

About

minFraud Java API

Resources

License

Stars

Watchers

Forks

Packages

No packages published