Giter Site home page Giter Site logo

ccfd-api-java's Introduction

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.

ccfb = new CreditCardFraudDetection.Builder()

Additionally you can use the Builder object to create a CreditCardFraudDetection instance that either uses the JVM settings for proxies (useSystemProxies()) or a custom proxy (specified by hostname and port, e.g. useProxy("host", 3128)).

Here is a full example:

ccfs =  new CreditCardFraudDetection.Builder().
                useProxy("proxy-host", 6568).
                build();
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.

ccfd-api-java's People

Contributors

2shortplanks avatar autarch avatar borisz avatar oschwald avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.